Skip to content

Commit

Permalink
Fix nightly feature bound on ARM tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HadrienG2 committed May 12, 2024
1 parent d5dd057 commit 1d375ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arch/arm_family.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ mod tests {
test_simd::<f64, 4, TestableF64x2x2>(f64::MIN, f64::MAX);
test_simd::<f64, 6, TestableF64x2x3>(f64::MIN, f64::MAX);
test_simd::<f64, 8, TestableF64x2x4>(f64::MIN, f64::MAX);
#[cfg(target_feature = "nightly")]
#[cfg(feature = "nightly")]
{
test_simd::<f64, 1, Simd<f64, 1>>(f64::MIN, f64::MAX);

Check failure on line 114 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --no-default-features, -C target-feature=+neon)

cannot find type `Simd` in this scope

Check failure on line 114 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --features=safe_arch, -C target-feature=+neon)

cannot find type `Simd` in this scope
test_simd::<f64, 2, Simd<f64, 2>>(f64::MIN, f64::MAX);

Check failure on line 115 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --no-default-features, -C target-feature=+neon)

cannot find type `Simd` in this scope

Check failure on line 115 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --features=safe_arch, -C target-feature=+neon)

cannot find type `Simd` in this scope
Expand All @@ -127,7 +127,7 @@ mod tests {
test_unoptimized_value_type::<TestableF64x2x2>();
test_unoptimized_value_type::<TestableF64x2x3>();
test_unoptimized_value_type::<TestableF64x2x4>();
#[cfg(target_feature = "nightly")]
#[cfg(feature = "nightly")]
{
test_unoptimized_value_type::<Simd<f64, 1>>();

Check failure on line 132 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --no-default-features, -C target-feature=+neon)

cannot find type `Simd` in this scope

Check failure on line 132 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --features=safe_arch, -C target-feature=+neon)

cannot find type `Simd` in this scope
test_unoptimized_value_type::<Simd<f64, 2>>();

Check failure on line 133 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --no-default-features, -C target-feature=+neon)

cannot find type `Simd` in this scope

Check failure on line 133 in src/arch/arm_family.rs

View workflow job for this annotation

GitHub Actions / lints-aarch64 (nightly, --features=safe_arch, -C target-feature=+neon)

cannot find type `Simd` in this scope
Expand Down

0 comments on commit 1d375ba

Please sign in to comment.