summaryrefslogtreecommitdiffstats
path: root/.functests
diff options
context:
space:
mode:
Diffstat (limited to '.functests')
-rwxr-xr-x.functests6
1 files changed, 6 insertions, 0 deletions
diff --git a/.functests b/.functests
index c129712..0090015 100755
--- a/.functests
+++ b/.functests
@@ -26,4 +26,10 @@ bash tools/tempauth_functional_tests.sh || EXIT_STATUS=$?
# Run functional tests with gswauth as auth middleware
bash tools/gswauth_functional_tests.sh || EXIT_STATUS=$?
+# Run object expirer functional tests if gsexpiring volume is found.
+if mount | grep "gsexpiring on /mnt/gluster-object/gsexpiring type fuse.glusterfs"; then
+ echo "Running object expirer functional tests"
+ bash tools/object_expirer_functional.sh || EXIT_STATUS=$?
+fi
+
exit $EXIT_STATUS