File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ NINJA ?= ninja
66DESTDIR ?=
77SIGN ?=
88PREFIX ?= /usr/local
9+ FLAKY_TESTS ?= run
910
1011NODE ?= ./node
1112
@@ -128,7 +129,7 @@ test-all-valgrind: test-build
128129 $(PYTHON ) tools/test.py --mode=debug,release --valgrind
129130
130131test-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
132133
133134test-release : test-build
134135 $(PYTHON ) tools/test.py --mode=release
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ set noperfctr_msi_arg=
3838set i18n_arg =
3939set download_arg =
4040set build_release =
41+ set flaky_tests_arg =
4142
4243:next-arg
4344if " %1 " == " " goto args-done
@@ -72,6 +73,7 @@ if /i "%1"=="full-icu" set i18n_arg=%1&goto arg-ok
7273if /i " %1 " == " intl-none" set i18n_arg = %1 & goto arg-ok
7374if /i " %1 " == " download-all" set download_arg = " --download=all" & goto arg-ok
7475if /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
7577
7678echo Warning: ignoring invalid command line option `%1 `.
7779
@@ -205,7 +207,7 @@ if "%config%"=="Release" set test_args=--mode=release
205207set test_args = %test_args% --arch=%target_arch%
206208
207209if " %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
209211if " %test% " == " test-internet" set test_args = %test_args% internet
210212if " %test% " == " test-pummel" set test_args = %test_args% pummel
211213if " %test% " == " test-simple" set test_args = %test_args% simple
You can’t perform that action at this time.
0 commit comments