diff options
author | Sonic <sonic@dexon.org> | 2019-04-05 10:45:05 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:06 +0800 |
commit | 4e9059fc9d0e2949880359bdd4b1be21317050dd (patch) | |
tree | 606f9d2400108515a5203add3181fb041847c2d8 /test | |
parent | af1fd2506d151483244737ff6ffd5f2be9027c35 (diff) | |
download | dexon-4e9059fc9d0e2949880359bdd4b1be21317050dd.tar dexon-4e9059fc9d0e2949880359bdd4b1be21317050dd.tar.gz dexon-4e9059fc9d0e2949880359bdd4b1be21317050dd.tar.bz2 dexon-4e9059fc9d0e2949880359bdd4b1be21317050dd.tar.lz dexon-4e9059fc9d0e2949880359bdd4b1be21317050dd.tar.xz dexon-4e9059fc9d0e2949880359bdd4b1be21317050dd.tar.zst dexon-4e9059fc9d0e2949880359bdd4b1be21317050dd.zip |
build: add end to end integration test for recovery mechanism (#336)
Diffstat (limited to 'test')
-rwxr-xr-x | test/run_test.sh | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index b6db1ba09..1f19caa6a 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -6,6 +6,22 @@ GENESIS="genesis.json" GDEX="../build/bin/gdex" BOOTNODE="../build/bin/bootnode" + +CONTINUE=false +IGNORELOG=false +while [[ $# -gt 0 ]]; do + case "$1" in + --continue) + CONTINUE=true + ;; + --ignore-log) + IGNORELOG=true + ;; + esac + shift +done + + if [ ! -e "$BOOTNODE" ]; then echo "Building bootnode for the first time ..." go build -o $BOOTNODE ../cmd/bootnode @@ -42,7 +58,7 @@ __FILE__ # A standalone RPC server for accepting RPC requests. datadir=$PWD/Dexon.rpc -if [ "$1" != "--continue" ]; then +if ! $CONTINUE; then rm -rf $datadir $GDEX --datadir=$datadir init ${GENESIS} fi @@ -64,7 +80,7 @@ NUM_NODES=$(cat ${GENESIS} | grep 'DEXON Test Node' | wc -l) for i in $(seq 0 $(($NUM_NODES - 1))); do datadir=$PWD/Dexon.$i - if [ "$1" != "--continue" ]; then + if ! $CONTINUE; then rm -rf $datadir $GDEX --datadir=$datadir init ${GENESIS} fi @@ -85,6 +101,6 @@ for i in $(seq 0 $(($NUM_NODES - 1))); do > $logsdir/gdex.$i.log 2>&1 & done -if [ "$1" != "--ignore-log" ]; then +if ! $IGNORELOG; then tail -f $logsdir/gdex.*.log fi |