diff options
author | Atin Mukherjee <amukherj@redhat.com> | 2015-09-01 10:53:19 +0530 |
---|---|---|
committer | Raghavendra Talur <rtalur@redhat.com> | 2015-09-01 01:42:32 -0700 |
commit | 99cd07c596f74b1ee8a88c4a43b37eb0921e5fe2 (patch) | |
tree | b00243620a5a3e1323e500c4f6f787d18f015e16 /run-tests.sh | |
parent | 4b5aec8da9be69da077e1fcc7e852d224517ecc0 (diff) |
tests: add bug-948686.t to bad_tests
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: 1258714
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>
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 d0804d0767c..5d657945850 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -203,6 +203,7 @@ function is_bad_test () ./tests/basic/afr/arbiter-statfs.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 |