@@ -133,6 +133,8 @@ static LIBCORE_TESTS: CargoProject = CargoProject::new(&LIBCORE_TESTS_SRC, "core
133
133
134
134
const EXTENDED_SYSROOT_SUITE : & [ TestCase ] = & [
135
135
TestCase :: custom ( "test.rust-random/rand" , & |runner| {
136
+ RAND_REPO . patch ( & runner. dirs ) ;
137
+
136
138
RAND . clean ( & runner. dirs ) ;
137
139
138
140
if runner. is_native {
@@ -168,6 +170,8 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
168
170
}
169
171
} ) ,
170
172
TestCase :: custom ( "test.regex-shootout-regex-dna" , & |runner| {
173
+ REGEX_REPO . patch ( & runner. dirs ) ;
174
+
171
175
REGEX . clean ( & runner. dirs ) ;
172
176
173
177
let mut build_cmd = REGEX . build ( & runner. target_compiler , & runner. dirs ) ;
@@ -200,6 +204,8 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
200
204
}
201
205
} ) ,
202
206
TestCase :: custom ( "test.regex" , & |runner| {
207
+ REGEX_REPO . patch ( & runner. dirs ) ;
208
+
203
209
REGEX . clean ( & runner. dirs ) ;
204
210
205
211
if runner. is_native {
@@ -216,6 +222,8 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
216
222
}
217
223
} ) ,
218
224
TestCase :: custom ( "test.portable-simd" , & |runner| {
225
+ PORTABLE_SIMD_REPO . patch ( & runner. dirs ) ;
226
+
219
227
PORTABLE_SIMD . clean ( & runner. dirs ) ;
220
228
221
229
let mut build_cmd = PORTABLE_SIMD . build ( & runner. target_compiler , & runner. dirs ) ;
0 commit comments