aboutsummaryrefslogtreecommitdiffstats
path: root/main/kea/disable-db-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/kea/disable-db-tests.patch')
-rw-r--r--main/kea/disable-db-tests.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/main/kea/disable-db-tests.patch b/main/kea/disable-db-tests.patch
new file mode 100644
index 00000000000..6d254d17833
--- /dev/null
+++ b/main/kea/disable-db-tests.patch
@@ -0,0 +1,18 @@
+Tests for MySQL/PostgreSQL integration are kinda broken, they expect
+already initialized databases prepared for Kea tests.
+
+--- a/src/bin/admin/tests/Makefile.am
++++ b/src/bin/admin/tests/Makefile.am
+@@ -10,10 +10,10 @@
+ SHTESTS += admin_tests.sh
+ SHTESTS += memfile_tests.sh
+ if HAVE_MYSQL
+-SHTESTS += mysql_tests.sh
++#SHTESTS += mysql_tests.sh
+ endif
+ if HAVE_PGSQL
+-SHTESTS += pgsql_tests.sh
++#SHTESTS += pgsql_tests.sh
+ endif
+
+ # Run tests on "make check".