diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-07 12:59:49 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:03 +0800 |
commit | 94c42603b546c44334b947793b2542279946beac (patch) | |
tree | 272376725f92ddf9a94028738f0a8ab5ace2d720 /build | |
parent | 79f2549b20a528cad399ff3c63c4d23f1c09bad7 (diff) | |
download | dexon-94c42603b546c44334b947793b2542279946beac.tar dexon-94c42603b546c44334b947793b2542279946beac.tar.gz dexon-94c42603b546c44334b947793b2542279946beac.tar.bz2 dexon-94c42603b546c44334b947793b2542279946beac.tar.lz dexon-94c42603b546c44334b947793b2542279946beac.tar.xz dexon-94c42603b546c44334b947793b2542279946beac.tar.zst dexon-94c42603b546c44334b947793b2542279946beac.zip |
test: update test parameters (#229)
* test: update test parameters
* update smoke test parameter
Diffstat (limited to 'build')
-rwxr-xr-x | build/fullnode-test.sh | 8 | ||||
-rw-r--r-- | build/testtool/testtool.go | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/build/fullnode-test.sh b/build/fullnode-test.sh index 589e707bf..24e555787 100755 --- a/build/fullnode-test.sh +++ b/build/fullnode-test.sh @@ -1,6 +1,6 @@ #!/bin/bash -sleep 20 +sleep 10 tarAndUpload() { @@ -49,7 +49,7 @@ if [ $round -lt 2 ]; then exit 1 fi - echo "Sleep 30 sec wait for next round" - sleep 30 + echo "Sleep 15 sec wait for next round" + sleep 15 fi -done
\ No newline at end of file +done diff --git a/build/testtool/testtool.go b/build/testtool/testtool.go index 09e94fe16..3f880b3bd 100644 --- a/build/testtool/testtool.go +++ b/build/testtool/testtool.go @@ -189,7 +189,7 @@ func doMonkeyTest(args []string) { Endpoint: args[0], N: 30, Sleep: 3000, - Timeout: 60, + Timeout: 30, }) m, nonce := monkey.Exec() |