aboutsummaryrefslogtreecommitdiff
path: root/test/s3/versioning/enable_stress_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/s3/versioning/enable_stress_tests.sh')
-rwxr-xr-xtest/s3/versioning/enable_stress_tests.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/s3/versioning/enable_stress_tests.sh b/test/s3/versioning/enable_stress_tests.sh
new file mode 100755
index 000000000..5fa169ee0
--- /dev/null
+++ b/test/s3/versioning/enable_stress_tests.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+# Enable S3 Versioning Stress Tests
+
+set -e
+
+# Colors
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+NC='\033[0m'
+
+echo -e "${YELLOW}๐Ÿ“š Enabling S3 Versioning Stress Tests${NC}"
+
+# Disable short mode to enable stress tests
+export ENABLE_STRESS_TESTS=true
+
+# Run versioning stress tests
+echo -e "${YELLOW}๐Ÿงช Running versioning stress tests...${NC}"
+make test-versioning-stress
+
+echo -e "${GREEN}โœ… Versioning stress tests completed${NC}"