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>
This commit is contained in:
Ravishankar N 2015-05-27 16:40:52 +05:30 committed by Vijay Bellur
parent f7bc35358c
commit 9a96489e21

View File

@ -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