1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/test.sh
2022-04-04 21:02:05 +02:00

12 lines
No EOL
312 B
Bash
Executable file

#!/bin/bash
# Exit if any subcommand fails
set -e
if [ -n "$WITH_LIBSNARK" ]; then
# run specifically the libsnark tests inside zokrates_core
cargo test -j 1 --release --package zokrates_core --features="libsnark" libsnark -- --test-threads=1
fi
# run all tests without libsnark on
cargo test -j 1 --release