diff options
author | zelig <viktor.tron@gmail.com> | 2015-01-09 13:04:32 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-01-09 13:04:32 +0800 |
commit | 69dfca2feb5c94f7a28a0b24c28181b6da4b9da3 (patch) | |
tree | c60525de6badb0306814e7393b263645eeaab332 /eth/test/tests/common.sh | |
parent | 3bdf28c1fef6644f17bf66a9240af5168465ad5a (diff) | |
download | go-tangerine-69dfca2feb5c94f7a28a0b24c28181b6da4b9da3.tar go-tangerine-69dfca2feb5c94f7a28a0b24c28181b6da4b9da3.tar.gz go-tangerine-69dfca2feb5c94f7a28a0b24c28181b6da4b9da3.tar.bz2 go-tangerine-69dfca2feb5c94f7a28a0b24c28181b6da4b9da3.tar.lz go-tangerine-69dfca2feb5c94f7a28a0b24c28181b6da4b9da3.tar.xz go-tangerine-69dfca2feb5c94f7a28a0b24c28181b6da4b9da3.tar.zst go-tangerine-69dfca2feb5c94f7a28a0b24c28181b6da4b9da3.zip |
minor changes in integration tests
Diffstat (limited to 'eth/test/tests/common.sh')
-rw-r--r-- | eth/test/tests/common.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eth/test/tests/common.sh b/eth/test/tests/common.sh index 74db073f7..f66cfb43e 100644 --- a/eth/test/tests/common.sh +++ b/eth/test/tests/common.sh @@ -3,14 +3,14 @@ # launched by run.sh function test_node { rm -rf $DIR/$1 - ARGS="-datadir $DIR/$1 -debug debug -seed=false -shh=false -id test$1" + ARGS="-datadir $DIR/$1 -debug debug -seed=false -shh=false -id test$1 -port 303$1" if [ "" != "$2" ]; then chain="chains/$2.chain" echo "import chain $chain" $ETH $ARGS -loglevel 3 -chain $chain | grep CLI |grep import fi - echo "starting test node $1 with extra args ${@:3}" - $ETH $ARGS -port 303$1 ${@:3} & + echo "starting test node $1 with args $ARGS ${@:3}" + $ETH $ARGS ${@:3} & PID=$! PIDS="$PIDS $PID" } |