Skip to content

Commit dfb55c2

Browse files
committed
Gets build scripts ready for Jenkins to ADO switch
1 parent 0f7e500 commit dfb55c2

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

test/Intl/rlexe.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<test>
2424
<default>
2525
<files>NumberFormat.js</files>
26-
<tags>Intl,exclude_drt</tags>
26+
<tags>Intl,exclude_drt,exclude_icu62AndAboveTestFailures</tags>
2727
</default>
2828
</test>
2929
<test>
@@ -37,7 +37,7 @@
3737
<default>
3838
<files>GetCanonicalLocales.js</files>
3939
<compile-flags>-args summary -endargs</compile-flags>
40-
<tags>Intl</tags>
40+
<tags>Intl,exclude_icu62AndAboveTestFailures</tags>
4141
</default>
4242
</test>
4343
<test>

test/runcitests.cmd

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,22 @@ set _HadFailures=0
129129
:: ============================================================================
130130
:runTests
131131

132-
call :do %_TestDir%\runtests.cmd -%1%2 %3 -quiet -cleanupall -binDir %_StagingDir%\bin
132+
:: save the architecture and build values, then obtain the rest of the arguments
133+
set arch=%1
134+
set build=%2
135+
shift
136+
shift
137+
138+
set rest=
139+
:rest_loop
140+
if "%1"=="" goto after_rest_loop
141+
set rest=%rest% %1
142+
shift
143+
goto rest_loop
144+
145+
:after_rest_loop
146+
147+
call :do %_TestDir%\runtests.cmd -%arch%%build% %rest% -quiet -cleanupall -binDir %_StagingDir%\bin
133148

134149
if "%_error%" NEQ "0" (
135150
echo -- runcitests.cmd ^>^> runtests.cmd failed

0 commit comments

Comments
 (0)