#! /bin/bash # Make sure the tmsp cli can connect to the dummy echo "Dummy test ..." dummy &> /dev/null & PID=`echo $!` sleep 1 RESULT_HASH=`tmsp get_hash` if [[ "$RESULT_HASH" != "" ]]; then echo "Expected nothing but got: $RESULT_HASH" exit 1 fi echo "... Pass!" echo "" # Add a tx, get hash, commit, get hash # hashes should be non-empty and identical echo "Dummy batch test ..." OUTPUT=`(tmsp batch) < /dev/null & PID=`echo $!` sleep 1 OUTPUT=`(tmsp batch) <