Test core::simd works
These tests just verify some basic APIs of core::simd function, and guarantees that attempting to access the wrong things doesn't work. The majority of tests are stochastic, and so remain upstream, but a few deterministic tests arrive in the subtree as doc tests.
This commit is contained in:
parent
39cb863253
commit
7c3d72d069
6 changed files with 99 additions and 0 deletions
|
@ -62,6 +62,7 @@
|
|||
#![feature(unwrap_infallible)]
|
||||
#![feature(option_result_unwrap_unchecked)]
|
||||
#![feature(result_into_ok_or_err)]
|
||||
#![cfg_attr(not(bootstrap), feature(portable_simd))]
|
||||
#![feature(ptr_metadata)]
|
||||
#![feature(once_cell)]
|
||||
#![feature(unsized_tuple_coercion)]
|
||||
|
@ -104,6 +105,8 @@ mod pattern;
|
|||
mod pin;
|
||||
mod ptr;
|
||||
mod result;
|
||||
#[cfg(not(bootstrap))]
|
||||
mod simd;
|
||||
mod slice;
|
||||
mod str;
|
||||
mod str_lossy;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue