summaryrefslogtreecommitdiffstats
path: root/run-tests.sh
diff options
context:
space:
mode:
authorRavishankar N <ravishankar@redhat.com>2015-05-27 16:40:52 +0530
committerVijay Bellur <vbellur@redhat.com>2015-05-27 19:32:05 -0700
commit9a96489e21702bbe7146c9cf6da672917e88864c (patch)
tree1030381c4caa365ecfe57dc1588a7223f4681756 /run-tests.sh
parentf7bc35358c27d6260d5d1c4e22f1708d7ab60a98 (diff)
tests: Remove tests from bad tests
All known ec eio issues we know are solved with http://review.gluster.com/10852 So removing these ec tests from bad tests: ./tests/basic/ec/ec-5-1.t ./tests/basic/ec/ec.t Removing the following tests because they are one-off failures and the logs do not show anything significant. ./tests/bugs/replicate/bug-1015990.t ./tests/bugs/glusterfs/bug-867253.t ./tests/basic/afr/sparse-file-self-heal.t Removing the following tests as they are fixed by 10918: ./tests/basic/ec/quota.t ./tests/basic/quota-nfs.t ./tests/bugs/quota/bug-1035576.t BUG: 1165041 Change-Id: Ie3701d376ef383375f3e9853df26baa617628cdd Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> Signed-off-by: Ravishankar N <ravishankar@redhat.com> Reviewed-on: http://review.gluster.org/10930 Tested-by: NetBSD Build System Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-xrun-tests.sh13
1 files changed, 2 insertions, 11 deletions
diff --git a/run-tests.sh b/run-tests.sh
index 9596fef96a7..8f404876302 100755
--- a/run-tests.sh
+++ b/run-tests.sh
@@ -194,17 +194,8 @@ function run_tests()
function is_bad_test ()
{
local name=$1
- for bt in ./tests/bugs/replicate/bug-1015990.t \
- ./tests/basic/ec/quota.t \
- ./tests/basic/quota-nfs.t \
- ./tests/bugs/quota/bug-1035576.t \
- ./tests/bugs/glusterfs/bug-867253.t \
- ./tests/basic/quota-anon-fd-nfs.t \
- ./tests/bugs/disperse/bug-1187474.t \
- ./tests/basic/afr/sparse-file-self-heal.t \
- ./tests/basic/mount-nfs-auth.t \
- ./tests/basic/ec/ec-5-1.t \
- ./tests/basic/ec/ec.t \
+ for bt in ./tests/basic/quota-anon-fd-nfs.t \
+ ./tests/basic/mount-nfs-auth.t\
; do
[ x"$name" = x"$bt" ] && return 0 # bash: zero means true/success
done