c-ipfs/test/scripts/run_test.sh

18 lines
147 B
Bash
Raw Permalink Normal View History

2017-09-27 10:52:53 +00:00
#!/bin/bash
TEST_FILE=test_$1.sh
test_success=0
2017-09-27 10:52:53 +00:00
source ./$TEST_FILE
function do_it() {
pre
body
post
return $?
}
2017-09-27 10:52:53 +00:00
do_it
exit $test_success