12345678910111213141516171819202122232425262728293031323334353637 |
- #!/usr/bin/env bash
- # Executes cleanup function at script exit.
- trap cleanup EXIT
- cleanup() {
- # Kill the testrpc instance that we started (if we started one and if it's still running).
- if [ -n "$testrpc_pid" ] && ps -p $testrpc_pid > /dev/null; then
- kill -9 $testrpc_pid
- fi
- }
- testrpc_running() {
- nc -z localhost 8545
- }
- if testrpc_running; then
- echo "Using existing testrpc instance"
- else
- echo "Starting our own testrpc instance"
- # We define 10 accounts with balance 1M ether, needed for high-value tests.
- testrpc \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501200,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501201,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501202,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501203,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501204,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501205,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501206,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501207,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501208,1000000000000000000000000" \
- --account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501209,1000000000000000000000000" \
- > /dev/null &
- testrpc_pid=$!
- fi
- node_modules/.bin/truffle test "$@"
|