File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ NINJA ?= ninja
6
6
DESTDIR ?=
7
7
SIGN ?=
8
8
PREFIX ?= /usr/local
9
+ FLAKY_TESTS ?= run
9
10
10
11
NODE ?= ./node
11
12
@@ -128,7 +129,7 @@ test-all-valgrind: test-build
128
129
$(PYTHON ) tools/test.py --mode=debug,release --valgrind
129
130
130
131
test-ci :
131
- $(PYTHON ) tools/test.py -p tap --logfile test.tap --mode=release --arch=$(DESTCPU ) simple message internet
132
+ $(PYTHON ) tools/test.py -p tap --logfile test.tap --mode=release --arch=$(DESTCPU ) --flaky-tests= $( FLAKY_TESTS ) simple message internet
132
133
133
134
test-release : test-build
134
135
$(PYTHON ) tools/test.py --mode=release
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ set noperfctr_msi_arg=
38
38
set i18n_arg =
39
39
set download_arg =
40
40
set build_release =
41
+ set flaky_tests_arg =
41
42
42
43
:next-arg
43
44
if " %1 " == " " goto args-done
@@ -72,6 +73,7 @@ if /i "%1"=="full-icu" set i18n_arg=%1&goto arg-ok
72
73
if /i " %1 " == " intl-none" set i18n_arg = %1 & goto arg-ok
73
74
if /i " %1 " == " download-all" set download_arg = " --download=all" & goto arg-ok
74
75
if /i " %1 " == " build-release" set build_release = 1& goto arg-ok
76
+ if /i " %1 " == " ignore-flaky" set flaky_tests_arg = --flaky-tests=dontcare& goto arg-ok
75
77
76
78
echo Warning: ignoring invalid command line option `%1 `.
77
79
@@ -205,7 +207,7 @@ if "%config%"=="Release" set test_args=--mode=release
205
207
set test_args = %test_args% --arch=%target_arch%
206
208
207
209
if " %test% " == " test" set test_args = %test_args% simple message
208
- if " %test% " == " test-ci" set test_args = %test_args% -p tap --logfile test.tap simple message internet
210
+ if " %test% " == " test-ci" set test_args = %test_args% -p tap --logfile test.tap %flaky_tests_arg% simple message internet
209
211
if " %test% " == " test-internet" set test_args = %test_args% internet
210
212
if " %test% " == " test-pummel" set test_args = %test_args% pummel
211
213
if " %test% " == " test-simple" set test_args = %test_args% simple
You can’t perform that action at this time.
0 commit comments