Skip to content
Snippets Groups Projects
Commit b357513c authored by tpylak's avatar tpylak
Browse files

SE-133 YeastX - integration tests: more verbose messages

SVN: 12743
parent 095efcac
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
function print_result {
local result=$1
if [ $result -ne 0 ]; then
echo ERROR: Test has failed.
fi
}
echo Testing Screening Workflow
./test-3v.sh $@
result_3v=$?
print_result $result_3v
echo Testing YeastX Workflow
./test-yeastx.sh $@
result_yeastx=$?
print_result $result_yeastx
if [ $result_3v -ne 0 -o $result_yeastx -ne 0 ]; then
exit 1;
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment