diff options
author | Kotresh HR <khiremat@redhat.com> | 2016-07-20 11:36:31 +0530 |
---|---|---|
committer | Raghavendra Talur <rtalur@redhat.com> | 2016-07-27 03:38:24 -0700 |
commit | 0d52723332d06ec886273c7a9f01e058712b008c (patch) | |
tree | feb8eafc551d5461f29e42381bf1c50aaf6bb9f9 /tests | |
parent | 197bbc9d150554b333504cc9616aaa19b937a8a6 (diff) |
tests: Fix spurious failure of br-stub.t
Backport of http://review.gluster.org/14960/
The nfs mount fails occasionally in ./tests/bitrot/br-stub.t.
The reason being nfs mount is attempted before the gluster
nfs has come up. It is a race and hence happens occasionally.
The patch fixes it by waiting for nfs server to come up
before mount.
Thanks skoduri@redhat.com for root causing it.
Change-Id: I3adbf2363514635785c02b1478733095ad0b74cf
BUG: 1360579
Signed-off-by: Kotresh HR <khiremat@redhat.com>
(cherry picked from commit f4bbe515097e0149c78c1fc1bae9fb90928e7cd8)
Reviewed-on: http://review.gluster.org/15021
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: Raghavendra Talur <rtalur@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bitrot/br-stub.t | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/bitrot/br-stub.t b/tests/bitrot/br-stub.t index 56b0960e074..8ce170d44b7 100644 --- a/tests/bitrot/br-stub.t +++ b/tests/bitrot/br-stub.t @@ -27,6 +27,9 @@ TEST $CLI volume set $V0 performance.write-behind off TEST $CLI volume start $V0; EXPECT 'Started' volinfo_field $V0 'Status'; +## Wait for gluster nfs to come up +EXPECT_WITHIN $NFS_EXPORT_TIMEOUT "1" is_nfs_export_available + ## Mount the volume TEST $GFS --volfile-server=$H0 --volfile-id=$V0 $M0; TEST mount_nfs $H0:/$V0 $N0 nolock; |