This commit alters the test suite to unconditionally compile and run all tests, regardless of the ambient target features enabled. This then uses a new convenience macro, `#[simd_test]`, to guard all tests with the appropriate `cfg_feature_enabled!` and also enable the `#[target_feature]` appropriately.
12 lines
290 B
TOML
12 lines
290 B
TOML
[package]
|
|
name = "stdsimd-test"
|
|
version = "0.1.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
|
|
[dependencies]
|
|
assert-instr-macro = { path = "assert-instr-macro" }
|
|
simd-test-macro = { path = "simd-test-macro" }
|
|
backtrace = "0.3"
|
|
cc = "1.0"
|
|
lazy_static = "0.2"
|
|
rustc-demangle = "0.1"
|