-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_harness.sh
More file actions
executable file
·31 lines (25 loc) · 958 Bytes
/
test_harness.sh
File metadata and controls
executable file
·31 lines (25 loc) · 958 Bytes
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
#!/bin/bash
set -x
echo "=================================================="
echo " Starting BIP110 Test Harness "
echo "=================================================="
# Run test_bip110_output_limit_pkA.sh
echo "
--- Running: test_bip110_output_limit_pkA.sh ---"
./test_bip110_output_limit_pkA.sh
# Run test_bip110_witness_stack_limit_sha256.sh
echo "
--- Running: test_bip110_witness_stack_limit_sha256.sh ---"
./test_bip110_witness_stack_limit_sha256.sh
# Run test_bip110_complex_scriptpubkey_limit.sh
echo "
--- Running: test_bip110_complex_scriptpubkey_limit.sh ---"
./test_bip110_complex_scriptpubkey_limit.sh
# Run test_bip110_op_return_data_limit.sh
echo "
--- Running: test_bip110_op_return_data_limit.sh ---"
./test_bip110_op_return_data_limit.sh
echo "
=================================================="
echo " BIP110 Test Harness Complete "
echo "=================================================="