forked from LedgerHQ/app-stellar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·43 lines (32 loc) · 1.33 KB
/
test.sh
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
43
#!/bin/bash
mkdir -p obj
gcc test/parsertest.c src/stellar_utils.c src/stellar_parser.c src/stellar_format_blue.c test/test_utils.c -o obj/parsertest -I src/ -I test/ -D TEST
./obj/parsertest test/txSimple.hex
./obj/parsertest test/txMemoId.hex
./obj/parsertest test/txMemoText.hex
./obj/parsertest test/txMemoHash.hex
./obj/parsertest test/txCustomAsset4.hex
./obj/parsertest test/txCustomAsset12.hex
./obj/parsertest test/txTimeBounds.hex
./obj/parsertest test/txOpSource.hex
./obj/parsertest test/txCreateAccount.hex
./obj/parsertest test/txAccountMerge.hex
./obj/parsertest test/txPathPayment.hex
./obj/parsertest test/txSetData.hex
./obj/parsertest test/txRemoveData.hex
./obj/parsertest test/txChangeTrust.hex
./obj/parsertest test/txRemoveTrust.hex
./obj/parsertest test/txAllowTrust.hex
./obj/parsertest test/txRevokeTrust.hex
./obj/parsertest test/txCreateOffer.hex
./obj/parsertest test/txCreateOffer2.hex
./obj/parsertest test/txChangeOffer.hex
./obj/parsertest test/txRemoveOffer.hex
./obj/parsertest test/txPassiveOffer.hex
./obj/parsertest test/txSetAllOptions.hex
./obj/parsertest test/txSetSomeOptions.hex
./obj/parsertest test/txInflation.hex
./obj/parsertest test/txMultiOp.hex
./obj/parsertest test/txBumpSequence.hex
gcc test/utilstest.c src/stellar_utils.c test/test_utils.c -o obj/utilstest -I src/ -I test/ -D TEST
./obj/utilstest