aboutsummaryrefslogtreecommitdiffstats
path: root/main/ldb/disable-compile-error-test.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/ldb/disable-compile-error-test.patch')
-rw-r--r--main/ldb/disable-compile-error-test.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/main/ldb/disable-compile-error-test.patch b/main/ldb/disable-compile-error-test.patch
new file mode 100644
index 0000000000..16849ee549
--- /dev/null
+++ b/main/ldb/disable-compile-error-test.patch
@@ -0,0 +1,21 @@
+--- a/tests/ldb_match_test.c
++++ b/tests/ldb_match_test.c
+@@ -32,6 +32,8 @@
+ * This allows test applications to use custom definitions of C standard
+ * library functions and types.
+ */
++// disabled on alpine
++#if 0
+ #include <stdarg.h>
+ #include <stddef.h>
+ #include <stdint.h>
+@@ -189,3 +191,9 @@
+
+ return cmocka_run_group_tests(tests, NULL, NULL);
+ }
++#else
++int main(int argc, const char **argv)
++{
++ return 0;
++}
++#endif