Skip to content

Commit 714ad63

Browse files
committed
Fix MulAssign typo in tests, move panic tests
1 parent 0ec3ecf commit 714ad63

34 files changed

+129
-592
lines changed

crates/core_simd/tests/f32_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_float_tests! { SimdF32, f32, i32 }

crates/core_simd/tests/f64_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_float_tests! { SimdF64, f64, i64 }

crates/core_simd/tests/i128_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_signed_tests! { SimdI128, i128 }

crates/core_simd/tests/i16_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_signed_tests! { SimdI16, i16 }

crates/core_simd/tests/i32_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_signed_tests! { SimdI32, i32 }

crates/core_simd/tests/i64_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_signed_tests! { SimdI64, i64 }

crates/core_simd/tests/i8_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_signed_tests! { SimdI8, i8 }

crates/core_simd/tests/isize_ops.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#[macro_use]
2-
#[path = "ops_macros.rs"]
3-
mod macros;
2+
mod ops_macros;
43
impl_signed_tests! { SimdIsize, isize }

crates/core_simd/tests/mask_ops.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mod mask_ops_impl;

0 commit comments

Comments
 (0)