summaryrefslogtreecommitdiffstats
path: root/tests/geo-rep/georep-tarssh-hybrid.t
diff options
context:
space:
mode:
authorKotresh HR <khiremat@redhat.com>2015-05-28 19:26:00 +0530
committerVenky Shankar <vshankar@redhat.com>2015-08-11 23:38:06 -0700
commitdace4bbd0fdce567703a1a8d2d74a0a3f166f334 (patch)
tree73a44cc2987f0397f3ceb0c176cec5225ddc22e9 /tests/geo-rep/georep-tarssh-hybrid.t
parent64e6836ac8fb96f38a859eea0d8525cd9bd2693f (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 'tests/geo-rep/georep-tarssh-hybrid.t')
-rw-r--r--tests/geo-rep/georep-tarssh-hybrid.t65
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/geo-rep/georep-tarssh-hybrid.t b/tests/geo-rep/georep-tarssh-hybrid.t
deleted file mode 100644
index af23a526ffb..00000000000
--- a/tests/geo-rep/georep-tarssh-hybrid.t
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/bin/bash
-
-# Following tests involves geo-rep tests with hybrid crawl
-# as change detector, and rsync as sync mode on both fuse and nfs mount
-
-. $(dirname $0)/../include.rc
-. $(dirname $0)/../volume.rc
-. $(dirname $0)/geo-rep-helper.rc
-. $(dirname $0)/geo-rep-config.rc
-
-cleanup;
-
-AREQUAL_PATH=$(dirname $0)/../utils
-CFLAGS=""
-test "`uname -s`" != "Linux" && {
- CFLAGS="$CFLAGS -I$(dirname $0)/../../../contrib/argp-standalone ";
- CFLAGS="$CFLAGS -L$(dirname $0)/../../../contrib/argp-standalone -largp ";
- CFLAGS="$CFLAGS -lintl";
-}
-build_tester $AREQUAL_PATH/arequal-checksum.c $CFLAGS
-
-TEST glusterd
-TEST pidof glusterd
-
-setup_georep ;
-
-# start of tests on fuse mount
-
-TEST glusterfs -s $H0 --volfile-id $GMV0 $M0
-
-TEST hybrid_mode_test "create" $M0
-
-TEST hybrid_mode_test "chmod" $M0
-
-TEST hybrid_mode_test "chown" $M0
-
-TEST hybrid_mode_test "chgrp" $M0
-
-TEST hybrid_mode_test "truncate" $M0
-
-TEST hybrid_mode_test "symlink" $M0
-
-#TEST hybrid_mode_test "hardlink" $M0
-
-# start of tests on nfs mount
-
-TEST mount -t nfs -o vers=3,nolock $H0:$GMV0 $N0
-
-TEST hybrid_mode_test "create" $N0
-
-TEST hybrid_mode_test "chmod" $N0
-
-TEST hybrid_mode_test "chown" $N0
-
-TEST hybrid_mode_test "chgrp" $N0
-
-TEST hybrid_mode_test "truncate" $N0
-
-TEST hybrid_mode_test "symlink" $N0
-
-#TEST hybrid_mode_test "hardlink" $N0
-
-TEST rm -rf $AREQUAL_PATH/arequal-checksum
-
-cleanup_georep;