diff options
-rwxr-xr-x | tests/encryption/crypt.t | 4 | ||||
-rwxr-xr-x | tests/features/glupy.t | 3 | ||||
-rwxr-xr-x | tests/features/readdir-ahead.t | 3 |
3 files changed, 6 insertions, 4 deletions
diff --git a/tests/encryption/crypt.t b/tests/encryption/crypt.t index aa46bd42985..ecfe005202d 100755 --- a/tests/encryption/crypt.t +++ b/tests/encryption/crypt.t @@ -55,7 +55,7 @@ TEST ln -s $M0/testfile-link $M0/testfile-symlink TEST rm -f $M0/testfile-renamed ## Remount the volume -TEST umount $M0 +EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0 TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $M0; TEST diff -u $M0/testfile-symlink /tmp/$V0-goodfile @@ -69,7 +69,7 @@ TEST rm -f $M0/testfile-link TEST rm -f /tmp/$V0-master-key TEST rm -f /tmp/$V0-goodfile -TEST umount $M0 +EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0 ## Reset crypt options TEST $CLI volume reset $V0 encryption.block-size diff --git a/tests/features/glupy.t b/tests/features/glupy.t index 49bf11df516..a34e48ffec0 100755 --- a/tests/features/glupy.t +++ b/tests/features/glupy.t @@ -1,6 +1,7 @@ #!/bin/bash . $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc cleanup; @@ -24,6 +25,6 @@ TEST touch $M0/filename; EXPECT "filename" ls $M0 TEST rm -f $M0/filename; -TEST umount -l $M0; +EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0; cleanup; diff --git a/tests/features/readdir-ahead.t b/tests/features/readdir-ahead.t index c7ee637f0b2..2b2a2fb5644 100755 --- a/tests/features/readdir-ahead.t +++ b/tests/features/readdir-ahead.t @@ -6,6 +6,7 @@ ### . $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc cleanup; @@ -37,7 +38,7 @@ TEST [ $count -eq 0 ] TEST rmdir $M0/test -TEST umount -l $M0; +EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0; TEST $CLI volume stop $V0 TEST $CLI volume delete $V0 |