aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorbojie <bojie@dexon.org>2019-03-07 17:35:31 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:57 +0800
commit670829960df41b0a65ae6f179c7e717fa028f542 (patch)
treed4d97c2beffaf3bbe0c54872ed561e7545dbf041 /build
parent1835ee6f172f2e4e15132425e4fe6060f02a9537 (diff)
downloaddexon-670829960df41b0a65ae6f179c7e717fa028f542.tar.gz
dexon-670829960df41b0a65ae6f179c7e717fa028f542.tar.zst
dexon-670829960df41b0a65ae6f179c7e717fa028f542.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=$?