30 lines
1.5 KiB
Bash
Executable File
30 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
case "$1" in
|
|
-- | cargo)
|
|
if [[ "$RUN_ALL_TESTS" -eq "1" ]]; then
|
|
exec cargo "test" "--locked" "--release" "--features" "enable-sentry" "--workspace" "--" "--include-ignored"
|
|
elif [[ "$TEST_FULL_SYNC" -eq "1" ]]; then
|
|
exec cargo "test" "--locked" "--release" "--features" "enable-sentry" "--test" "acceptance" "--" "--nocapture" "--ignored" "full_sync_mainnet"
|
|
elif [[ "$TEST_DISK_REBUILD" -eq "1" ]]; then
|
|
exec cargo "test" "--locked" "--release" "--features" "enable-sentry,test_sync_to_mandatory_checkpoint_${NETWORK,,}" "--manifest-path" "zebrad/Cargo.toml" "sync_to_mandatory_checkpoint_${NETWORK,,}"
|
|
elif [[ "$TEST_CHECKPOINT_SYNC" -eq "1" ]]; then
|
|
exec cargo "test" "--locked" "--release" "--features" "enable-sentry,test_sync_past_mandatory_checkpoint_${NETWORK,,}" "--manifest-path" "zebrad/Cargo.toml" "sync_past_mandatory_checkpoint_${NETWORK,,}"
|
|
elif [[ "$TEST_LWD_RPC_CALL" -eq "1" ]]; then
|
|
exec cargo "test" "--locked" "--release" "--features" "enable-sentry" "--test" "acceptance" "--" "--nocapture" "--ignored" "fully_synced_rpc_test"
|
|
elif [[ "$TEST_LWD_TRANSACTIONS" -eq "1" ]]; then
|
|
exec cargo "test" "--locked" "--release" "--features" "enable-sentry" "--test" "acceptance" "--" "--nocapture" "--ignored" "sending_transactions_using_lightwalletd"
|
|
else
|
|
exec "$@"
|
|
fi
|
|
;;
|
|
zebrad)
|
|
exec zebrad "$@"
|
|
;;
|
|
*)
|
|
exec "$@"
|
|
esac
|
|
|
|
exit 1 |