From 405b10cc8aeb812994ac8d86e76350afbec2fcaa Mon Sep 17 00:00:00 2001 From: Kotresh HR Date: Fri, 24 Apr 2015 19:10:11 +0530 Subject: tests : Skip geo-rep regression for now As geo-rep regression is causing cores, it is being disabled for now and will be re-enabled once the issues are fixed. Change-Id: Ie846b599369acb4a8fd814d1e889cffb4610a2c8 BUG: 1163543 Signed-off-by: Kotresh HR Reviewed-on: http://review.gluster.org/10369 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur Tested-by: Vijay Bellur --- run-tests.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index 62d86e94b8f..3474ce956da 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -164,7 +164,8 @@ function run_tests() return $match } RES=0 - for t in $(find ${regression_testsdir}/tests | LC_COLLATE=C sort) ; do + for t in $(find ${regression_testsdir}/tests | grep -v geo-rep \ + | LC_COLLATE=C sort) ; do if match $t "$@" ; then if [ -d $t ] ; then echo "Running tests in directory $t" @@ -205,6 +206,7 @@ function is_bad_test () function run_all () { find ${regression_testsdir}/tests -name '*.t' \ + | grep -v geo-rep \ | LC_COLLATE=C sort \ | while read t; do old_cores=$(ls /core.* 2> /dev/null | wc -l) -- cgit