-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrun_all_tests
executable file
·42 lines (39 loc) · 1.01 KB
/
run_all_tests
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
if [ -z "$1" ];then
echo "Please supply a name for the directory to hold the execuatables"
exit
fi
if [ -f $1 ]; then
echo "File $1 exist"
exit
fi
echo Running Spark Tests
./$1/spark_tests
echo Running Address Tests
./$1/address_tests
echo Running Ownership Tests
./$1/ownership_tests
echo Running Aead Tests
./$1/spark_aead_tests
echo Challenge Bpplus Tests
./$1/spark_bpplus_tests
echo Running Coin Tests
./$1/spark_coin_tests
echo Running Chaum Tests
./$1/spark_chaum_tests
echo Running Encrypt Tests
./$1/spark_encrypt_tests
echo Running f4grumble Tests
./$1/spark_f4grumble_tests
echo Running Schnorr Tests
./$1/spark_schnoor_tests
echo Running Grootle Tests
./$1/spark_grootle_tests
echo Running Mint Transaction Tests
./$1/spark_mint_transaction_tests
echo Running Spend Transaction Tests
./$1/spark_spend_transaction_tests
echo Running Transcript Tests
./$1/spark_transcript_tests
echo Running Full Tests
./$1/full_test