aboutsummaryrefslogtreecommitdiffstats
path: root/eth/test/tests/common.sh
blob: f66cfb43e25af7b465b585f2156b1deed465f562 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

# launched by run.sh
function test_node {
  rm -rf $DIR/$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 args $ARGS ${@:3}"
  $ETH $ARGS  ${@:3} &
  PID=$!
  PIDS="$PIDS $PID"
}

function peer {
  test_node $@ -loglevel 5 -logfile debug.log -maxpeer 1 -dial=false
}