File: disable_flaky_tests.patch

package info (click to toggle)
wiredtiger 3.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 25,476 kB
  • sloc: ansic: 102,922; python: 52,573; sh: 6,915; java: 6,130; javascript: 5,051; cpp: 2,311; makefile: 1,021; xml: 176
file content (62 lines) | stat: -rw-r--r-- 2,347 bytes parent folder | download | duplicates (2)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Description: some tests fail from time to time
 These can be flaky and/or too resource hungry. Eating hundreds of gigabytes and cause 140+ load sometimes with an M2 disk on my box. Not for buildds.
Author: Laszlo Boszormenyi (GCS) <gcs@debian.org>
Bug-Debian: https://bugs.debian.org/949776
Last-Update: 2020-01-25

---

--- wiredtiger-3.2.1.orig/test/csuite/Makefile.am
+++ wiredtiger-3.2.1/test/csuite/Makefile.am
@@ -8,15 +8,15 @@ all_TESTS=
 noinst_PROGRAMS=
 
 # The import test is only a shell script
-all_TESTS += import/smoke.sh
+#all_TESTS += import/smoke.sh
 
 test_random_abort_SOURCES = random_abort/main.c
 noinst_PROGRAMS += test_random_abort
-all_TESTS += random_abort/smoke.sh
+#all_TESTS += random_abort/smoke.sh
 
 test_random_directio_SOURCES = random_directio/main.c random_directio/util.c
 noinst_PROGRAMS += test_random_directio
-all_TESTS += random_directio/smoke.sh
+#all_TESTS += random_directio/smoke.sh
 
 test_rwlock_SOURCES = rwlock/main.c
 noinst_PROGRAMS += test_rwlock
@@ -32,7 +32,7 @@ all_TESTS += test_scope
 
 test_timestamp_abort_SOURCES = timestamp_abort/main.c
 noinst_PROGRAMS += test_timestamp_abort
-all_TESTS += timestamp_abort/smoke.sh
+#all_TESTS += timestamp_abort/smoke.sh
 
 test_truncated_log_SOURCES = truncated_log/main.c
 noinst_PROGRAMS += test_truncated_log
--- wiredtiger-3.2.1.orig/test/csuite/Makefile.in
+++ wiredtiger-3.2.1/test/csuite/Makefile.in
@@ -694,7 +694,7 @@ am__set_TESTS_bases = \
   bases=`echo $$bases`
 RECHECK_LOGS = $(TEST_LOGS)
 AM_RECURSIVE_TARGETS = check recheck
-am__EXEEXT_1 = import/smoke.sh random_abort/smoke.sh \
+am__EXEEXT_1 = random_abort/smoke.sh \
 	random_directio/smoke.sh test_rwlock$(EXEEXT) \
 	schema_abort/smoke.sh test_scope$(EXEEXT) \
 	timestamp_abort/smoke.sh test_truncated_log$(EXEEXT) \
@@ -921,9 +921,9 @@ LDADD = $(top_builddir)/test/utility/lib
 AM_LDFLAGS = -static
 
 # The import test is only a shell script
-all_TESTS = import/smoke.sh random_abort/smoke.sh \
-	random_directio/smoke.sh test_rwlock schema_abort/smoke.sh \
-	test_scope timestamp_abort/smoke.sh test_truncated_log \
+all_TESTS = \
+	test_rwlock schema_abort/smoke.sh \
+	test_scope test_truncated_log \
 	test_wt1965_col_efficiency test_wt2403_lsm_workload \
 	test_wt2246_col_append test_wt2323_join_visibility \
 	test_wt2535_insert_race test_wt2447_join_main_table \