From 487f2b33454d946a8c4bd135157aad53d75bc700 Mon Sep 17 00:00:00 2001
From: tpylak <tpylak>
Date: Mon, 5 Jul 2010 13:32:56 +0000
Subject: [PATCH] include screening integration tests into integration tests
 suite

SVN: 16846
---
 integration-tests/run.sh | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/integration-tests/run.sh b/integration-tests/run.sh
index bf9a08029bf..9f714c58146 100755
--- a/integration-tests/run.sh
+++ b/integration-tests/run.sh
@@ -8,16 +8,21 @@ function print_result {
 }
 
 echo Testing Screening Workflow
-./test-3v.sh $@
-result_3v=$?
-print_result $result_3v
+./test-screening.sh $@
+result_hcs=$?
+print_result $result_hcs
 
 echo Testing YeastX Workflow
 ./test-yeastx.sh $@
 result_yeastx=$?
 print_result $result_yeastx
 
-if [ $result_3v -ne 0 -o $result_yeastx -ne 0 ]; then
+echo Testing 3V Screening Workflow
+./test-3v.sh $@
+result_3v=$?
+print_result $result_3v
+
+if [ $result_3v -ne 0 -o $result_yeastx -ne 0 -o $result_hcs -ne 0 ]; then
 	exit 1;
 fi
 
-- 
GitLab