summaryrefslogtreecommitdiffstats
path: root/tests/bugs/core
diff options
context:
space:
mode:
authorAtin Mukherjee <amukherj@redhat.com>2015-04-06 12:30:42 +0530
committerVijay Bellur <vbellur@redhat.com>2015-04-06 10:42:22 -0700
commit97cfe210c73bcdab653a0da884627009f5c5808b (patch)
tree762f6eccd216b5d3297834aa16dc2572c09ecb7d /tests/bugs/core
parente5f59739b210672480115177cbd4dbd391fabb92 (diff)
tests: move bug-1168875.t to tests/bugs/snapshot folder
Change-Id: Ie4e960002b8de7e31f91365785c44df3ac04c88d BUG: 1178685 Signed-off-by: Atin Mukherjee <amukherj@redhat.com> Reviewed-on: http://review.gluster.org/10131 Reviewed-by: Niels de Vos <ndevos@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'tests/bugs/core')
-rw-r--r--tests/bugs/core/bug-1168875.t96
1 files changed, 0 insertions, 96 deletions
diff --git a/tests/bugs/core/bug-1168875.t b/tests/bugs/core/bug-1168875.t
deleted file mode 100644
index 9737784fd84..00000000000
--- a/tests/bugs/core/bug-1168875.t
+++ /dev/null
@@ -1,96 +0,0 @@
-#!/bin/bash
-
-. $(dirname $0)/../../include.rc
-. $(dirname $0)/../../volume.rc
-. $(dirname $0)/../../snapshot.rc
-. $(dirname $0)/../../fileio.rc
-. $(dirname $0)/../../nfs.rc
-
-cleanup;
-
-function check_entry_point_exists ()
-{
- local entry_point=$1;
- local _path=$2;
-
- ls -a $_path | grep $entry_point;
-
- if [ $? -eq 0 ]; then
- echo 'Y';
- else
- echo 'N';
- fi
-}
-
-TEST init_n_bricks 3;
-TEST setup_lvm 3;
-
-TEST glusterd;
-
-TEST pidof glusterd;
-
-TEST $CLI volume create $V0 $H0:$L1 $H0:$L2 $H0:$L3;
-
-TEST $CLI volume start $V0;
-
-TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 --xlator-option *-snapview-client.snapdir-entry-path=/dir $M0;
-
-TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $N0;
-for i in {1..10} ; do echo "file" > $M0/file$i ; done
-
-
-for i in {11..20} ; do echo "file" > $M0/file$i ; done
-
-mkdir $M0/dir;
-
-for i in {1..10} ; do echo "file" > $M0/dir/file$i ; done
-
-mkdir $M0/dir1;
-mkdir $M0/dir2;
-
-for i in {1..10} ; do echo "foo" > $M0/dir1/foo$i ; done
-for i in {1..10} ; do echo "foo" > $M0/dir2/foo$i ; done
-
-for i in {11..20} ; do echo "foo" > $M0/dir1/foo$i ; done
-for i in {11..20} ; do echo "foo" > $M0/dir2/foo$i ; done
-
-TEST $CLI snapshot create snap1 $V0 no-timestamp;
-TEST $CLI snapshot activate snap1;
-
-TEST $CLI volume set $V0 features.uss enable;
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'Y' check_if_snapd_exist
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $M0/dir
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $N0/dir
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $M0/dir1
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists .snaps $N0/dir1
-
-TEST $CLI volume set $V0 features.show-snapshot-directory enable;
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir1
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir1
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'Y' check_entry_point_exists ".snaps" $M0/dir
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $M0/dir1
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir1
-
-TEST $CLI volume set $V0 features.show-snapshot-directory disable;
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $M0/dir1
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT "0" STAT $N0/dir1
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $M0/dir
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir
-
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $M0/dir1
-EXPECT_WITHIN $PROCESS_UP_TIMEOUT 'N' check_entry_point_exists ".snaps" $N0/dir1
-
-cleanup;