#!/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="\ tests/bugs/ec/bug-1161621.t\ tests/bugs/glusterd/bug-916549.t\ tests/bugs/posix/bug-1034716.t\ tests/bugs/core/bug-924075.t\ tests/bugs/replicate/bug-853680.t\ tests/basic/geo-replication/marker-xattrs.t\ tests/features/nuke.t\ tests/bugs/distribute-bug-1247563.t\ tests/basic/gfproxy.t\ tests/bugs/distribute/bug-1066798.t\ tests/bugs/bug-1110262.t\ " BROKEN_TESTS="\ tests/basic/read-size.t\ tests/bugs/glusterd/bug-857330/normal.t\ tests/bugs/tier/bug-1279376-rename-demoted-file.t\ tests/bugs/tier/bug-1286974.t\ tests/features/ipc.t\ tests/bugs/tier/bug-1205545-CTR-and-trash-integration.t\ tests/features/ssl-authz.t\ tests/bugs/shard/zero-flag.t\ tests/bugs/snapshot/bug-1140162-file-snapshot-features-encrypt-opts-validation.t\ tests/bugs/snapshot/bug-1227646.t\ tests/bugs/bitrot/1207029-bitrot-daemon-should-start-on-valid-node.t\ tests/bugs/glusterd/bug-948729/bug-948729-mode-script.t\ tests/bugs/transport/bug-873367.t\ tests/bugs/write-behind/bug-1279730.t\ tests/bugs/posix/bug-990028.t\ tests/bugs/glusterd/bug-857330/xml.t\ tests/bugs/glusterd/bug-948729/bug-948729.t\ tests/bugs/bitrot/1209752-volume-status-should-show-bitrot-scrub-info.t\ tests/bugs/snapshot/bug-1399598-uss-with-ssl.t\ tests/bugs/glusterd/bug-857330/normal.t\ tests/bugs/replicate/bug-859581.t\ tests/bugs/glusterd/bug-1260185-donot-allow-detach-commit-unnecessarily.t\ tests/bugs/glusterd/bug-1245045-remove-brick-validation.t\ tests/bugs/glusterd/bug-948729/bug-948729-force.t\ tests/bugs/glusterd/859927/repl.t\ tests/bugs/glusterd/bug-1238706-daemons-stop-on-peer-cleanup.t\ tests/bugs/quota/afr-quota-xattr-mdata-heal.t\ tests/bugs/cli/bug-1320388.t\ tests/bugs/replicate/886998/strict-readdir.t\ tests/basic/tier/tierd_check.t tests/bugs/glusterfs-server/bug-904300.t\ tests/basic/cache.t tests/bugs/quota/bug-1288474.t\ tests/bugs/replicate/bug-1290965-detect-bitrotten-objects.t\ tests/geo-rep/georep-basic-dr-tarssh.t\ tests/bugs/nfs/bug-904065.t\ tests/bugs/nfs/bug-1116503.t\ tests/bugs/rpc/bug-847624.t\ tests/basic/tier/fops-during-migration.t\ tests/bugs/nfs/bug-1166862.t\ tests/bugs/glusterd/bug-1303028-Rebalance-glusterd-rpc-connection-issue.t\ tests/basic/tier/tier.t\ tests/bugs/glusterd/bug-948686.t\ tests/bugs/glusterd/bug-913555.t\ tests/bugs/quota/bug-1287996.t\ tests/geo-rep/georep-basic-dr-rsync.t\ tests/bitrot/bug-1294786.t\ tests/basic/tier/tier-snapshot.t\ tests/bugs/fb4482137.t\ tests/basic/tier/unlink-during-migration.t\ tests/basic/tier/fops-during-migration-pause.t\ tests/basic/tier/tier-file-create.t\ tests/bugs/glusterd/bug-1231437-rebalance-test-in-cluster.t\ tests/basic/tier/legacy-many.t\ tests/basic/tier/new-tier-cmds.t\ tests/basic/tier/file_with_spaces.t\ tests/basic/tier/locked_file_migration.t\ tests/basic/tier/frequency-counters.t\ tests/basic/tier/tier_lookup_heal.t\ tests/basic/tier/bug-1214222-directories_missing_after_attach_tier.t\ tests/basic/tier/record-metadata-heat.t\ tests/basic/tier/readdir-during-migration.t\ tests/basic/gfapi/gfapi-ssl-test.t\ tests/basic/tier/ctr-rename-overwrite.t\ tests/basic/volume-snapshot-clone.t\ tests/basic/gfapi/bug1291259.t\ tests/bugs/bitrot/1207029-bitrot-daemon-should-start-on-valid-node.t\ tests/basic/afr/granular-esh/granular-esh.t\ tests/basic/afr/granular-esh/granular-indices-but-non-granular-heal.t\ tests/basic/bd.t\ tests/basic/afr/granular-esh/replace-brick.t\ tests/basic/afr/granular-esh/conservative-merge.t\ tests/basic/meta.t\ tests/bugs/tier/bug-1279376-rename-demoted-file.t\ tests/bugs/tier/bug-1205545-CTR-and-trash-integration.t\ tests/bugs/bitrot/1209752-volume-status-should-show-bitrot-scrub-info.t\ tests/basic/rpm.t\ tests/features/ipc.t\ tests/features/ssl-authz.t\ tests/basic/afr/granular-esh/add-brick.t\ tests/basic/accept-v6v4.t\ tests/bugs/shard/zero-flag.t\ tests/basic/afr/granular-esh/cli.t\ tests/basic/uss.t\ tests/bugs/tier/bug-1286974.t\ tests/bugs/snapshot/bug-1399598-uss-with-ssl.t\ tests/bugs/snapshot/bug-1140162-file-snapshot-features-encrypt-opts-validation.t\ tests/bugs/write-behind/bug-1279730.t\ tests/basic/volume-snapshot.t\ tests/bugs/glusterd/bug-913555.t\ tests/bugs/cli/bug-1320388.t\ tests/bugs/posix/bug-990028.t\ tests/bugs/transport/bug-873367.t\ tests/basic/glusterd/volfile_server_switch.t\ tests/bugs/glusterd/bug-948686.t\ tests/bugs/fb4482137.t\ tests/bugs/glusterd/bug-1231437-rebalance-test-in-cluster.t \ tests/bugs/quota/bug-1287996.t\ " SMOKE_TESTS=$(echo $SMOKE_TESTS | tr -s ' ' ' ') KNOWN_FLAKY_TESTS=$(echo $KNOWN_FLAKY_TESTS | tr -s ' ' ' ') BROKEN_TESTS=$(echo $BROKEN_TESTS | tr -s ' ' ' ')