tendermint/tests/test.sh

19 lines
340 B
Bash
Raw Normal View History

2015-12-14 15:00:18 -08:00
ROOT=$GOPATH/src/github.com/tendermint/tmsp
cd $ROOT
# test golang dummy
bash tests/test_dummy.sh
# test golang counter
bash tests/test_counter.sh
# test js counter
cd example/js
COUNTER_APP="node app.js" bash $ROOT/tests/test_counter.sh
2015-12-14 15:00:18 -08:00
# test python counter
cd ../python
2015-12-14 15:00:18 -08:00
COUNTER_APP="python app.py" bash $ROOT/tests/test_counter.sh
2015-12-18 17:44:48 -08:00