aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/genesis.json2
-rwxr-xr-xtest/run_test.sh8
2 files changed, 6 insertions, 4 deletions
diff --git a/test/genesis.json b/test/genesis.json
index efa2727ad..7ab90e48b 100644
--- a/test/genesis.json
+++ b/test/genesis.json
@@ -27,7 +27,7 @@
"phiRatio": 0.667,
"notarySetSize": 4,
"dkgSetSize": 4,
- "roundInterval": 600000,
+ "roundInterval": 90000,
"minBlockInterval": 1000,
"fineValues": [
"0x21e19e0c9bab2400000",
diff --git a/test/run_test.sh b/test/run_test.sh
index 5455dee2b..60f7cad82 100755
--- a/test/run_test.sh
+++ b/test/run_test.sh
@@ -29,7 +29,7 @@ with open('$GENESIS', 'r') as f:
data = f.read()
with open('$GENESIS', 'w') as f:
- dMoment = int(time.time()) + 7
+ dMoment = int(time.time()) + 15
f.write(re.sub('"dMoment": [0-9]+,', '"dMoment": %d,' % dMoment, data))
__FILE__
@@ -57,7 +57,7 @@ for i in $(seq 0 3); do
$GDEX \
${NETWORK} \
--bp \
- --verbosity=3 \
+ --verbosity=4 \
--gcmode=archive \
--datadir=$datadir --nodekey=keystore/test$i.key \
--port=$((30305 + $i)) \
@@ -70,4 +70,6 @@ for i in $(seq 0 3); do
> $logsdir/gdex.$i.log 2>&1 &
done
-tail -f $logsdir/gdex.*.log
+if [ "$1" != "--ignore-log" ]; then
+ tail -f $logsdir/gdex.*.log
+fi