mirror of
https://github.com/gluster/glusterfs.git
synced 2026-02-06 18:48:16 +01:00
fixes: #2159 Change-Id: Ibaaebc48b803ca6ad4335c11818c0c71a13e9f07 Signed-off-by: Pranith Kumar K <pranith.karampuri@phonepe.com>
45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
SMOKE_TESTS="\
|
|
tests/basic/*.t\
|
|
tests/basic/afr/*.t\
|
|
tests/basic/distribute/*.t\
|
|
tests/bugs/fb*.t\
|
|
tests/features/brick-min-free-space.t\
|
|
"
|
|
|
|
KNOWN_FLAKY_TESTS="\
|
|
"
|
|
|
|
BROKEN_TESTS="\
|
|
tests/features/lock_revocation.t\
|
|
tests/features/recon.t\
|
|
tests/features/ipc.t\
|
|
tests/bugs/distribute/bug-1247563.t\
|
|
tests/bugs/distribute/bug-1543279.t\
|
|
tests/bugs/distribute/bug-1066798.t\
|
|
tests/bugs/ec/bug-1304988.t\
|
|
tests/bugs/unclassified/bug-1357397.t\
|
|
tests/bugs/quota/bug-1235182.t\
|
|
tests/bugs/fuse/bug-1309462.t\
|
|
tests/bugs/glusterd/bug-1238706-daemons-stop-on-peer-cleanup.t\
|
|
tests/bugs/stripe/bug-1002207.t\
|
|
tests/bugs/stripe/bug-1111454.t\
|
|
tests/bugs/snapshot/bug-1140162-file-snapshot-features-encrypt-opts-validation.t\
|
|
tests/bugs/write-behind/bug-1279730.t\
|
|
tests/bugs/gfapi/bug-1093594.t\
|
|
tests/bugs/replicate/bug-1473026.t\
|
|
tests/bugs/replicate/bug-802417.t\
|
|
tests/basic/inode-leak.t\
|
|
tests/basic/distribute/force-migration.t\
|
|
tests/basic/ec/heal-info.t\
|
|
tests/basic/ec/ec-seek.t\
|
|
tests/basic/afr/tarissue.t\
|
|
tests/basic/tier/tierd_check.t\
|
|
tests/basic/gfapi/bug1291259.t\
|
|
"
|
|
|
|
SMOKE_TESTS=$(echo $SMOKE_TESTS | tr -s ' ' ' ')
|
|
KNOWN_FLAKY_TESTS=$(echo $KNOWN_FLAKY_TESTS | tr -s ' ' ' ')
|
|
BROKEN_TESTS=$(echo $BROKEN_TESTS | tr -s ' ' ' ')
|