5 lines
256 B
Bash
Executable file
5 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
# I'm using a bash script because if i set the target in .cargo/config.toml
|
|
# i can't build for x86_64 anymore, which means I can't run the unit tests.
|
|
TARGET="x86_64-unknown-linux-gnu"
|
|
cargo test --target $TARGET -p crc --no-default-features
|