File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 116
116
117
117
test : | build-addons cctest # Both targets depend on 'all'.
118
118
$(PYTHON ) tools/test.py --mode=release -J \
119
- addon doctool message parallel sequential
119
+ addon doctool known_issues message parallel sequential
120
120
$(MAKE ) lint
121
121
122
122
test-parallel : all
@@ -176,7 +176,7 @@ test-all-valgrind: test-build
176
176
test-ci : | build-addons
177
177
$(PYTHON ) tools/test.py $(PARALLEL_ARGS ) -p tap --logfile test.tap \
178
178
--mode=release --flaky-tests=$(FLAKY_TESTS ) \
179
- $(TEST_CI_ARGS ) addons doctool message parallel sequential
179
+ $(TEST_CI_ARGS ) addons doctool known_issues message parallel sequential
180
180
181
181
test-release : test-build
182
182
$(PYTHON ) tools/test.py --mode=release
@@ -200,7 +200,7 @@ test-debugger: all
200
200
$(PYTHON ) tools/test.py debugger
201
201
202
202
test-known-issues : all
203
- $(PYTHON ) tools/test.py known_issues --expect-fail
203
+ $(PYTHON ) tools/test.py known_issues
204
204
205
205
test-npm : $(NODE_EXE )
206
206
NODE=$(NODE ) tools/test-npm.sh
Original file line number Diff line number Diff line change 1
1
import sys , os
2
+ import copy
2
3
sys .path .append (os .path .join (os .path .dirname (__file__ ), '..' ))
3
4
import testpy
4
5
5
6
def GetConfiguration (context , root ):
6
- return testpy .SimpleTestConfiguration (context , root , 'known_issues' )
7
+ myContext = copy .copy (context )
8
+ myContext .expect_fail = 1
9
+ return testpy .SimpleTestConfiguration (myContext , root , 'known_issues' )
Original file line number Diff line number Diff line change @@ -55,16 +55,16 @@ if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
55
55
if /i " %1 " == " noetw" set noetw = 1& goto arg-ok
56
56
if /i " %1 " == " noperfctr" set noperfctr = 1& goto arg-ok
57
57
if /i " %1 " == " licensertf" set licensertf = 1& goto arg-ok
58
- if /i " %1 " == " test" set test_args = %test_args% addons doctool sequential parallel message -J& set jslint=1& set build_addons=1& goto arg-ok
59
- if /i " %1 " == " test-ci" set test_args = %test_args% %test_ci_args% -p tap --logfile test.tap addons doctool message sequential parallel& set build_addons=1& goto arg-ok
58
+ if /i " %1 " == " test" set test_args = %test_args% addons doctool known_issues message parallel sequential -J& set jslint=1& set build_addons=1& goto arg-ok
59
+ if /i " %1 " == " test-ci" set test_args = %test_args% %test_ci_args% -p tap --logfile test.tap addons doctool known_issues message sequential parallel& set build_addons=1& goto arg-ok
60
60
if /i " %1 " == " test-addons" set test_args = %test_args% addons& set build_addons=1& goto arg-ok
61
61
if /i " %1 " == " test-simple" set test_args = %test_args% sequential parallel -J& goto arg-ok
62
62
if /i " %1 " == " test-message" set test_args = %test_args% message& goto arg-ok
63
63
if /i " %1 " == " test-gc" set test_args = %test_args% gc& set buildnodeweak=1& goto arg-ok
64
64
if /i " %1 " == " test-internet" set test_args = %test_args% internet& goto arg-ok
65
65
if /i " %1 " == " test-pummel" set test_args = %test_args% pummel& goto arg-ok
66
66
if /i " %1 " == " test-all" set test_args = %test_args% sequential parallel message gc internet pummel& set buildnodeweak=1& set jslint=1& goto arg-ok
67
- if /i " %1 " == " test-known-issues" set test_args = %test_args% known_issues --expect-fail & goto arg-ok
67
+ if /i " %1 " == " test-known-issues" set test_args = %test_args% known_issues& goto arg-ok
68
68
if /i " %1 " == " jslint" set jslint = 1& goto arg-ok
69
69
if /i " %1 " == " jslint-ci" set jslint_ci = 1& goto arg-ok
70
70
if /i " %1 " == " msi" set msi = 1& set licensertf=1& set download_arg=" --download=all" & set i18n_arg=small-icu& goto arg-ok
You can’t perform that action at this time.
0 commit comments