Skip to content

Commit 5d68310

Browse files
authored
Merge pull request #698 from tgross35/skip-asm-checks-fixme
Ungate tests that were skipped due to a broken implementation
2 parents d5ca981 + 03f0916 commit 5d68310

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

testcrate/src/bench.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,9 @@ pub fn skip_sys_checks(test_name: &str) -> bool {
8282

8383
/// Still run benchmarks/tests but don't check correctness between compiler-builtins and
8484
/// assembly functions
85-
pub fn skip_asm_checks(test_name: &str) -> bool {
86-
// FIXME(f16_f128): rounding error
87-
// <https://github.com/rust-lang/compiler-builtins/issues/616>
88-
const SKIPPED: &[&str] = &["mul_f32", "mul_f64"];
89-
90-
SKIPPED.contains(&test_name)
85+
pub fn skip_asm_checks(_test_name: &str) -> bool {
86+
// Nothing to skip at this time
87+
false
9188
}
9289

9390
/// Create a comparison of the system symbol, compiler_builtins, and optionally handwritten

0 commit comments

Comments
 (0)