summaryrefslogtreecommitdiffstats
path: root/run-tests.sh
diff options
context:
space:
mode:
authorKotresh HR <khiremat@redhat.com>2015-05-28 19:26:00 +0530
committerVenky Shankar <vshankar@redhat.com>2015-11-27 01:32:08 -0800
commit9cbe0fa66c264b6afe295c32d2bae29411d01756 (patch)
tree12659a5d4f67a0985f4a046654672e8c19736480 /run-tests.sh
parent391e78cbaa727bdd274cf84d1d9683613c8cab6c (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. BUG: 1284746 Change-Id: I9eea88c267d9e838022b7c9201e2ba4bb04f612e 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> Signed-off-by: Kotresh HR <khiremat@redhat.com> Reviewed-on: http://review.gluster.org/12726 Reviewed-by: Venky Shankar <vshankar@redhat.com>
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-xrun-tests.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/run-tests.sh b/run-tests.sh
index fa924dc916a..bc5b8a0da15 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"
@@ -216,7 +215,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)