aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorbojie <bojie@dexon.org>2019-03-07 17:35:31 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:22 +0800
commit70a3d62d99f09b04f28c2f3542f90b502f4c2779 (patch)
treece27dc002a158b75c2d49ee0313ef5ef358902a5 /build
parentdd570bf6d35cdfcbfe4df3aa52755cf2735bb63e (diff)
downloadgo-tangerine-70a3d62d99f09b04f28c2f3542f90b502f4c2779.tar
go-tangerine-70a3d62d99f09b04f28c2f3542f90b502f4c2779.tar.gz
go-tangerine-70a3d62d99f09b04f28c2f3542f90b502f4c2779.tar.bz2
go-tangerine-70a3d62d99f09b04f28c2f3542f90b502f4c2779.tar.lz
go-tangerine-70a3d62d99f09b04f28c2f3542f90b502f4c2779.tar.xz
go-tangerine-70a3d62d99f09b04f28c2f3542f90b502f4c2779.tar.zst
go-tangerine-70a3d62d99f09b04f28c2f3542f90b502f4c2779.zip
app: refactor app run as single chain (#226)
Diffstat (limited to 'build')
-rwxr-xr-xbuild/fullnode-test.sh4
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=$?