Skip to content

Commit

Permalink
Ignore result of f16 on x86-64 Linux as CI GCC is too old
Browse files Browse the repository at this point in the history
  • Loading branch information
beetrees committed Jul 7, 2024
1 parent ab3d836 commit f357dc7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ pub fn get_test_rules(test: &TestKey, caller: &dyn Toolchain, callee: &dyn Toolc
result.check = Random;
}

// CI GCC is too old to support `_Float16`.
if cfg!(all(target_arch = "x86_64", target_os = "linux")) && is_c && test.test == "f16" {
result.check = Random;
}

// FIXME: investigate why this is failing to build
if cfg!(windows) && is_c && (test.test == "EmptyStruct" || test.test == "EmptyStructInside") {
result.check = Busted(Build);
Expand Down

0 comments on commit f357dc7

Please sign in to comment.