Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 7bcc6d7

Browse files
committed
Override for fmodf128
1 parent 076d7f7 commit 7bcc6d7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/libm-test/src/run_cfg.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ static EXTENSIVE_ITER_OVERRIDE: LazyLock<Option<u64>> = LazyLock::new(|| {
2121
/// Specific tests that need to have a reduced amount of iterations to complete in a reasonable
2222
/// amount of time. Contains the itentifier+generator combo to match on, plus the factor to
2323
/// reduce by.
24-
const EXTEMELY_SLOW_TESTS: &[(Identifier, Option<GeneratorKind>)] = &[];
24+
const EXTEMELY_SLOW_TESTS: &[(Identifier, GeneratorKind, u64)] = &[
25+
(Identifier::Fmodf128, GeneratorKind::QuickSpaced, 40),
26+
(Identifier::Fmodf128, GeneratorKind::Extensive, 40),
27+
];
2528

2629
/// Maximum number of iterations to run for a single routine.
2730
///

0 commit comments

Comments
 (0)