Skip to content

Commit c3e4df6

Browse files
committed
chore: ignore more tests that use f64 simplex
1 parent b1309c8 commit c3e4df6

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

tests/intrinsics.rs

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
21
use simdnoise::intrinsics::{avx2, scalar, sse2, sse41};
32
use simdnoise::{
43
Cell2ReturnType, CellDistanceFunction, CellReturnType, Cellular2Settings, CellularSettings,
5-
FbmSettings, GradientSettings, NoiseDimensions, RidgeSettings, Settings,
6-
SimplexSettings, TurbulenceSettings,
4+
FbmSettings, GradientSettings, NoiseDimensions, RidgeSettings, Settings, SimplexSettings,
5+
TurbulenceSettings,
76
};
87

98
mod helpers;
@@ -6250,7 +6249,7 @@ unsafe fn do_intrinsic_ridge_3_avx2_64_normal() -> Vec<f64> {
62506249
}
62516250

62526251
#[test]
6253-
#[ignore]
6252+
#[should_panic(expected = "not implemented")]
62546253
fn test_intrinsic_ridge_3_avx2_64_normal() {
62556254
let file_name = format!(
62566255
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -6315,7 +6314,7 @@ unsafe fn do_intrinsic_ridge_3_scalar_64_normal() -> Vec<f64> {
63156314
}
63166315

63176316
#[test]
6318-
#[ignore]
6317+
#[should_panic(expected = "not implemented")]
63196318
fn test_intrinsic_ridge_3_scalar_64_normal() {
63206319
let file_name = format!(
63216320
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -6382,7 +6381,7 @@ unsafe fn do_intrinsic_ridge_3_sse2_64_normal() -> Vec<f64> {
63826381
}
63836382

63846383
#[test]
6385-
#[ignore]
6384+
#[should_panic(expected = "not implemented")]
63866385
fn test_intrinsic_ridge_3_sse2_64_normal() {
63876386
let file_name = format!(
63886387
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -6449,7 +6448,7 @@ unsafe fn do_intrinsic_ridge_3_sse41_64_normal() -> Vec<f64> {
64496448
}
64506449

64516450
#[test]
6452-
#[ignore]
6451+
#[should_panic(expected = "not implemented")]
64536452
fn test_intrinsic_ridge_3_sse41_64_normal() {
64546453
let file_name = format!(
64556454
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -7286,7 +7285,7 @@ unsafe fn do_intrinsic_fbm_3_avx2_64_normal() -> Vec<f64> {
72867285
}
72877286

72887287
#[test]
7289-
#[ignore]
7288+
#[should_panic(expected = "not implemented")]
72907289
fn test_intrinsic_fbm_3_avx2_64_normal() {
72917290
let file_name = format!(
72927291
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -7351,7 +7350,7 @@ unsafe fn do_intrinsic_fbm_3_scalar_64_normal() -> Vec<f64> {
73517350
}
73527351

73537352
#[test]
7354-
#[ignore]
7353+
#[should_panic(expected = "not implemented")]
73557354
fn test_intrinsic_fbm_3_scalar_64_normal() {
73567355
let file_name = format!(
73577356
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -7418,7 +7417,7 @@ unsafe fn do_intrinsic_fbm_3_sse2_64_normal() -> Vec<f64> {
74187417
}
74197418

74207419
#[test]
7421-
#[ignore]
7420+
#[should_panic(expected = "not implemented")]
74227421
fn test_intrinsic_fbm_3_sse2_64_normal() {
74237422
let file_name = format!(
74247423
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -7485,7 +7484,7 @@ unsafe fn do_intrinsic_fbm_3_sse41_64_normal() -> Vec<f64> {
74857484
}
74867485

74877486
#[test]
7488-
#[ignore]
7487+
#[should_panic(expected = "not implemented")]
74897488
fn test_intrinsic_fbm_3_sse41_64_normal() {
74907489
let file_name = format!(
74917490
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -9270,7 +9269,7 @@ unsafe fn do_intrinsic_gradient_3_avx2_64_normal() -> Vec<f64> {
92709269
}
92719270

92729271
#[test]
9273-
#[ignore]
9272+
#[should_panic(expected = "not implemented")]
92749273
fn test_intrinsic_gradient_3_avx2_64_normal() {
92759274
let file_name = format!(
92769275
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -9325,7 +9324,7 @@ unsafe fn do_intrinsic_gradient_3_scalar_64_normal() -> Vec<f64> {
93259324
}
93269325

93279326
#[test]
9328-
#[ignore]
9327+
#[should_panic(expected = "not implemented")]
93299328
fn test_intrinsic_gradient_3_scalar_64_normal() {
93309329
let file_name = format!(
93319330
"{}/{}_{}_{}_{}_{}_{}.bin",
@@ -9382,7 +9381,7 @@ unsafe fn do_intrinsic_gradient_3_sse2_64_normal() -> Vec<f64> {
93829381
}
93839382

93849383
#[test]
9385-
#[ignore]
9384+
#[should_panic(expected = "not implemented")]
93869385
fn test_intrinsic_gradient_3_sse2_64_normal() {
93879386
let file_name = format!(
93889387
"{}/{}_{}_{}_{}_{}_{}.bin",

0 commit comments

Comments
 (0)