File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 23
23
<test >
24
24
<default >
25
25
<files >NumberFormat.js</files >
26
- <tags >Intl,exclude_drt</tags >
26
+ <tags >Intl,exclude_drt,exclude_icu62AndAboveTestFailures </tags >
27
27
</default >
28
28
</test >
29
29
<test >
37
37
<default >
38
38
<files >GetCanonicalLocales.js</files >
39
39
<compile-flags >-args summary -endargs</compile-flags >
40
- <tags >Intl</tags >
40
+ <tags >Intl,exclude_icu62AndAboveTestFailures </tags >
41
41
</default >
42
42
</test >
43
43
<test >
Original file line number Diff line number Diff line change @@ -129,7 +129,22 @@ set _HadFailures=0
129
129
:: ============================================================================
130
130
:runTests
131
131
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
133
148
134
149
if " %_error% " NEQ " 0" (
135
150
echo -- runcitests.cmd ^ > ^ > runtests.cmd failed
You can’t perform that action at this time.
0 commit comments