File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -209,13 +209,15 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
209
209
210
210
PORTABLE_SIMD . clean ( & runner. dirs ) ;
211
211
212
- let mut build_cmd = PORTABLE_SIMD . build ( & runner. target_compiler , & runner. dirs ) ;
213
- build_cmd. arg ( "--all-targets" ) ;
212
+ let build_cmd = PORTABLE_SIMD . build ( & runner. target_compiler , & runner. dirs ) ;
213
+ // FIXME uncomment once examples work: https://github.com/rust-lang/portable-simd/issues/470
214
+ //build_cmd.arg("--all-targets");
214
215
spawn_and_wait ( build_cmd) ;
215
216
216
217
if runner. is_native {
217
218
let mut test_cmd = PORTABLE_SIMD . test ( & runner. target_compiler , & runner. dirs ) ;
218
- test_cmd. arg ( "-q" ) ;
219
+ // FIXME remove --tests once examples work: https://github.com/rust-lang/portable-simd/issues/470
220
+ test_cmd. arg ( "-q" ) . arg ( "--tests" ) ;
219
221
spawn_and_wait ( test_cmd) ;
220
222
}
221
223
} ) ,
You can’t perform that action at this time.
0 commit comments