File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -112,15 +112,14 @@ mkdir c:\tests_tmp
112
112
set TEST_PHP_JUNIT = c:\junit.out.xml
113
113
114
114
cd " %APPVEYOR_BUILD_FOLDER% "
115
- nmake test TESTS=" %OPCACHE_OPTS% -q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp %PARALLEL% "
115
+ nmake test TESTS=" %OPCACHE_OPTS% -q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp --bless %PARALLEL% "
116
116
117
117
set EXIT_CODE = %errorlevel%
118
118
119
119
appveyor PushArtifact %TEST_PHP_JUNIT%
120
120
121
121
if %EXIT_CODE% GEQ 1 (
122
122
git checkout .
123
- nmake run ARGS=" scripts\dev\bless_tests.php ."
124
123
git diff > bless_tests.patch
125
124
appveyor PushArtifact bless_tests.patch
126
125
)
Original file line number Diff line number Diff line change 21
21
$ phpt = file_get_contents ($ path );
22
22
$ out = file_get_contents ($ outPath );
23
23
24
- if (false !== strpos ($ phpt , '--XFAIL-- ' ) || preg_match ( ' /die\([ \' "]xfail/ ' , $ phpt ) ) {
24
+ if (false !== strpos ($ phpt , '--XFAIL-- ' )) {
25
25
// Don't modify expected output of XFAIL tests
26
26
continue ;
27
27
}
You can’t perform that action at this time.
0 commit comments