summary refs log tree commit diff
path: root/pkgs/development/libraries/xapian/skip-flaky-darwin-test.patch
blob: cce96a2762bf989b8641b37365597e2fb76aa564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
diff -Naur xapian-core.old/tests/api_db.cc xapian-core.new/tests/api_db.cc
--- xapian-core.old/tests/api_db.cc
+++ xapian-core.new/tests/api_db.cc
@@ -1020,6 +1020,7 @@
 
 // test for keepalives
 DEFINE_TESTCASE(keepalive1, remote) {
+    SKIP_TEST("Fails in darwin nix build environment");
     XFAIL_FOR_BACKEND("multi_glass_remoteprog_glass",
 		      "Multi remote databases are currently buggy");
 
diff -Naur xapian-core.old/tests/api_scalability.cc xapian-core.new/tests/api_scalability.cc
--- xapian-core.old/tests/api_scalability.cc
+++ xapian-core.new/tests/api_scalability.cc
@@ -53,6 +53,7 @@
 }
 
 DEFINE_TESTCASE(bigoaddvalue1, writable) {
+    SKIP_TEST("Fails in darwin nix build environment");
     // O(n*n) is bad, but O(n*log(n)) is acceptable.
     test_scalability(bigoaddvalue1_helper, 5000, O_N_LOG_N);
     return true;
diff -Naur xapian-core.old/tests/api_serialise.cc xapian-core.new/tests/api_serialise.cc
--- xapian-core.old/tests/api_serialise.cc
+++ xapian-core.new/tests/api_serialise.cc
@@ -110,6 +110,7 @@
 
 // Test for serialising a document obtained from a database.
 DEFINE_TESTCASE(serialise_document2, writable) {
+    SKIP_TEST("Fails in darwin nix build environment");
     Xapian::Document origdoc;
     origdoc.add_term("foo", 2);
     origdoc.add_posting("foo", 10);