diff options
author | Kotresh HR <khiremat@redhat.com> | 2015-05-28 19:26:00 +0530 |
---|---|---|
committer | Venky Shankar <vshankar@redhat.com> | 2015-08-11 23:38:06 -0700 |
commit | dace4bbd0fdce567703a1a8d2d74a0a3f166f334 (patch) | |
tree | 73a44cc2987f0397f3ceb0c176cec5225ddc22e9 /run-tests.sh | |
parent | 64e6836ac8fb96f38a859eea0d8525cd9bd2693f (diff) |
tests: New simple geo-rep regression test suite
This is a new simple regression test suite for
geo-replication. This is written keeping in mind
the run time for regression test. The existing
regression test suite is rigorous one and could
be run nightly. Hence the existing geo-rep tests
are being removed as part of this.
Also re-enable geo-rep regression with this patch.
Thanks Aravinda for initial template and plan.
Change-Id: If544ac295eaf67ac66e0b071903cc1096e71d437
BUG: 1227624
Signed-off-by: Kotresh HR <khiremat@redhat.com>
Reviewed-on: http://review.gluster.org/11058
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Aravinda VK <avishwan@redhat.com>
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-x | run-tests.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/run-tests.sh b/run-tests.sh index 6763fa2f028..50fe080c2ac 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -164,8 +164,7 @@ function run_tests() return $match } RES=0 - for t in $(find ${regression_testsdir}/tests | grep -v geo-rep \ - | LC_COLLATE=C sort) ; do + for t in $(find ${regression_testsdir}/tests | LC_COLLATE=C sort) ; do if match $t "$@" ; then if [ -d $t ] ; then echo "Running tests in directory $t" @@ -208,7 +207,6 @@ 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) |