summaryrefslogtreecommitdiff
path: root/mysql-test/include/have_s3.inc
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/include/have_s3.inc')
-rw-r--r--mysql-test/include/have_s3.inc10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/include/have_s3.inc b/mysql-test/include/have_s3.inc
new file mode 100644
index 00000000000..d81778cd157
--- /dev/null
+++ b/mysql-test/include/have_s3.inc
@@ -0,0 +1,10 @@
+if (!`SELECT count(*) FROM information_schema.engines WHERE
+ (support = 'YES' OR support = 'DEFAULT') AND
+ engine = 's3'`)
+{
+ skip Need s3 engine;
+}
+if (`select @@global.s3_secret_key = "" or @@global.s3_access_key = ""`)
+{
+ skip S3 engine not configured;
+}