tendermint/tests/test.sh

18 lines
339 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 python counter
cd example/python
COUNTER_APP="python app.py" bash $ROOT/tests/test_counter.sh
2015-12-18 17:44:48 -08:00
# test js counter
cd ../js
COUNTER_APP="node app.js" bash $ROOT/tests/test_counter.sh