summaryrefslogtreecommitdiffstats
path: root/mysql-test/include/have_crypt.inc
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/include/have_crypt.inc')
-rw-r--r--mysql-test/include/have_crypt.inc7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/include/have_crypt.inc b/mysql-test/include/have_crypt.inc
new file mode 100644
index 00000000..ae941219
--- /dev/null
+++ b/mysql-test/include/have_crypt.inc
@@ -0,0 +1,7 @@
+# MDEV-27964 The function ENCRYPT() causes SIGSEGV in WITH_MSAN builds
+-- source include/not_msan.inc
+# encrypt('a') is NULL if crypt(3) is not available
+# encrypt('a') is "*0" in fips mode
+if (`select length(encrypt('a')) > 3 IS NOT TRUE`) {
+ skip No crypt(3);
+}