diff options
Diffstat (limited to 'tools/regtest')
-rwxr-xr-x | tools/regtest | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/regtest b/tools/regtest deleted file mode 100755 index b42b4981..00000000 --- a/tools/regtest +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -errors=0 - -for test in \ - "-O \$cmd 0ecbb1b15e2cf3e515cc0f8533e5bb0fb2326728" \ - "-B \$cmd c56a21d23a6535184e7152ee138c28974f14280c" \ - "-V \$cmd c56a21d23a6535184e7152ee138c28974f14280c" \ - "-G \$cmd c56a21d23a6535184e7152ee138c28974f14280c" \ - "-B \$cmd c0226fafdf9e6711ac9121cf263e2d50791859cb" \ - "-V \$cmd c0226fafdf9e6711ac9121cf263e2d50791859cb" \ - "-G \$cmd c0226fafdf9e6711ac9121cf263e2d50791859cb" -do - echo testing: $test - python tools/confirm.py "ledger -f tools/standard.dat --args-only --columns=80 $test" - errors=`expr $errors + $?` -done - -if [ $errors = 0 ]; then - echo All tests completed successfully. -fi -exit $errors |