diff options
author | bojie <bojie@dexon.org> | 2019-03-07 17:35:31 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | d9481e33c513ea628bce8c822fc0c605ac78d383 (patch) | |
tree | f456772ef20a68ea63794eb92398bee5215ed05e /build | |
parent | d6557f080c206ba0ff322d39005af642eb58b12f (diff) | |
download | dexon-d9481e33c513ea628bce8c822fc0c605ac78d383.tar dexon-d9481e33c513ea628bce8c822fc0c605ac78d383.tar.gz dexon-d9481e33c513ea628bce8c822fc0c605ac78d383.tar.bz2 dexon-d9481e33c513ea628bce8c822fc0c605ac78d383.tar.lz dexon-d9481e33c513ea628bce8c822fc0c605ac78d383.tar.xz dexon-d9481e33c513ea628bce8c822fc0c605ac78d383.tar.zst dexon-d9481e33c513ea628bce8c822fc0c605ac78d383.zip |
app: refactor app run as single chain (#226)
Diffstat (limited to 'build')
-rwxr-xr-x | build/fullnode-test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/fullnode-test.sh b/build/fullnode-test.sh index 24e555787..982e877a5 100755 --- a/build/fullnode-test.sh +++ b/build/fullnode-test.sh @@ -12,7 +12,7 @@ tarAndUpload() endpoint=http://127.0.0.1:8545 -for round in 0 1 2 +for round in 0 1 2 3 4 do echo "Start verify round $round" @@ -39,7 +39,7 @@ if [ $code == 1 ]; then exit 1 fi -if [ $round -lt 2 ]; then +if [ $round -lt 4 ]; then cmd="PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig go run build/testtool/testtool.go monkeyTest $endpoint" eval $cmd code=$? |