Skip to content
Snippets Groups Projects
run.sh 487 B
Newer Older
tpylak's avatar
tpylak committed

function print_result {
	local result=$1
	if [ $result -ne 0 ]; then
		echo ERROR: Test has failed.
	fi
}

echo Testing Screening Workflow
felmer's avatar
felmer committed
./test-screening.sh $@
result_hcs=$?
print_result $result_hcs
echo Testing 3V Screening Workflow
./test-3v.sh $@
result_3v=$?
print_result $result_3v

felmer's avatar
felmer committed
echo Testing YeastX Workflow
./test-yeastx.sh $@
result_yeastx=$?
print_result $result_yeastx

if [ $result_3v -ne 0 -o $result_yeastx -ne 0 -o $result_hcs -ne 0 ]; then
tpylak's avatar
tpylak committed