diff options
author | Atin Mukherjee <amukherj@redhat.com> | 2015-09-01 10:53:19 +0530 |
---|---|---|
committer | Raghavendra Talur <rtalur@redhat.com> | 2015-09-01 05:50:46 -0700 |
commit | 9c6f316389fe97db2a870a4d8cbee8430c33227d (patch) | |
tree | 80c73d6927d1a70bbc3abdf6d4d581eeba216174 /run-tests.sh | |
parent | 4386c7a504273663ca47126673454a74c5ad97a6 (diff) |
tests: add bug-948686.t to bad_tests
backport of http://review.gluster.org/#/c/12070/
bug-948686.t intermittely ends up in a race in GlusterD where one thread deletes
a stale volume and on a volume start request a start is attempted on the same
object which might be freed up by the other thread. We are considering to use
refcounting mechanism while accessing volinfo objects to get rid of this problem
but that needs a significant amount of time in development. Till then adding
this test in bad_tests ()
Change-Id: I3ddc025b07c47b17ea75554d5cc809a839365f10
BUG: 1258798
Signed-off-by: Atin Mukherjee <amukherj@redhat.com>
Reviewed-on: http://review.gluster.org/12070
Reviewed-by: Raghavendra Talur <rtalur@redhat.com>
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
(cherry picked from commit 99cd07c596f74b1ee8a88c4a43b37eb0921e5fe2)
Reviewed-on: http://review.gluster.org/12077
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-x | run-tests.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run-tests.sh b/run-tests.sh index 4247d63d5eb..2b5aa33252a 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -203,6 +203,7 @@ function is_bad_test () ./tests/geo-rep/georep-basic-dr-tarssh.t \ ./tests/basic/tier/tier.t \ ./tests/bugs/glusterd/bug-1238706-daemons-stop-on-peer-cleanup.t \ + ./tests/bugs/glusterd/bug-948686.t \ ; do [ x"$name" = x"$bt" ] && return 0 # bash: zero means true/success done |