mirror of
https://github.com/gluster/glusterfs.git
synced 2026-02-06 00:49:30 +01:00
The feature is not supported and is moved out of the codebase from glusterfs-5.x release. Doesn't make sense to keep the code to support it. For those who want to upgrade from an version supporting it to higher version, please do a 'gluster volume reset $VOL encryption reset' and then continue with the upgrade process. updates: bz#1648169 Change-Id: I8cf822c0d7195940bd37f6af2432a3cac68d44d1 Signed-off-by: Amar Tumballi <amarts@redhat.com>
49 lines
1.4 KiB
Bash
49 lines
1.4 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/fdl-overflow.t\
|
|
tests/features/fdl.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/jbr/jbr-volgen.t\
|
|
tests/basic/jbr/jbr.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 ' ' ' ')
|