Skip to content

Commit 03f0916

Browse files
committed
Ungate tests that were skipped due to a broken implementation
The upstream issue [1] has been resolved so we can enable these tests again. [1]: rust-lang#616
1 parent d5ca981 commit 03f0916

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)