1
Fork 0

Merge commit '3a9bf72932' into sync_cg_clif-2023-12-19

This commit is contained in:
bjorn3 2023-12-19 12:46:39 +00:00
commit d5c38ded26
13 changed files with 223 additions and 115 deletions

View file

@ -232,6 +232,13 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
if runner.is_native {
let mut test_cmd = PORTABLE_SIMD.test(&runner.target_compiler, &runner.dirs);
test_cmd.arg("-q");
// FIXME remove after portable-simd update
test_cmd
.arg("--")
.arg("--skip")
.arg("core_simd::swizzle::simd_swizzle")
.arg("--skip")
.arg("core_simd::vector::Simd<T,N>::lanes");
spawn_and_wait(test_cmd);
}
}),