diff options
author | Raghavendra Bhat <raghavendra@redhat.com> | 2016-12-02 15:24:46 -0500 |
---|---|---|
committer | Jeff Darcy <jdarcy@redhat.com> | 2017-01-30 15:17:51 -0500 |
commit | 2e0dceb6165d0a93581284fa2e0d74abe4ee615b (patch) | |
tree | b8f00397445def0441a79e15259e2f58bc8bc2f8 /tests/bitrot/bug-1294786.t | |
parent | faf43235e0b3308388d0146e65b3982c11661db0 (diff) |
features/bit-rot-stub: use the correct spelling of quarantine for bad objects
container
The directory for containing the list of bad objects was named "quanrantine"
instead of "quarantine"
Change-Id: I8c20381ac637201d9d1a224f5223e8dfbed53f1e
BUG: 1401571
Signed-off-by: Raghavendra Bhat <raghavendra@redhat.com>
Reviewed-on: https://review.gluster.org/16027
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Kotresh HR <khiremat@redhat.com>
Diffstat (limited to 'tests/bitrot/bug-1294786.t')
-rw-r--r-- | tests/bitrot/bug-1294786.t | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/bitrot/bug-1294786.t b/tests/bitrot/bug-1294786.t index d395d76b7ed..b177574f756 100644 --- a/tests/bitrot/bug-1294786.t +++ b/tests/bitrot/bug-1294786.t @@ -56,10 +56,10 @@ echo "Corrupted data" >> $B1/FILE2 #Manually set bad-file xattr since we can't wait for an hour for scrubber. TEST setfattr -n trusted.bit-rot.bad-file -v 0x3100 $B1/FILE1 TEST setfattr -n trusted.bit-rot.bad-file -v 0x3100 $B1/FILE2 -TEST touch "$B1/.glusterfs/quanrantine/$gfid1" -TEST chmod 000 "$B1/.glusterfs/quanrantine/$gfid1" -TEST touch "$B1/.glusterfs/quanrantine/$gfid2" -TEST chmod 000 "$B1/.glusterfs/quanrantine/$gfid2" +TEST touch "$B1/.glusterfs/quarantine/$gfid1" +TEST chmod 000 "$B1/.glusterfs/quarantine/$gfid1" +TEST touch "$B1/.glusterfs/quarantine/$gfid2" +TEST chmod 000 "$B1/.glusterfs/quarantine/$gfid2" EXPECT "4" get_quarantine_count "$B1"; TEST $CLI_1 volume stop $V0 @@ -80,7 +80,7 @@ EXPECT "$uuid2" get_node_uuid; #BUG 1308961 #Remove bad files from mount, it should be removed from quarantine directory. TEST rm -f $M0/FILE1 -TEST ! stat "$B1/.glusterfs/quanrantine/$gfid1" +TEST ! stat "$B1/.glusterfs/quarantine/$gfid1" #BUG 1308961 #Set network.inode-lru-limit to 5 and exceed the limit by creating 10 other files. @@ -90,6 +90,6 @@ for i in {1..10} do echo "1234" > $M0/file_$i done -TEST stat "$B1/.glusterfs/quanrantine/$gfid2" +TEST stat "$B1/.glusterfs/quarantine/$gfid2" cleanup; |