diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 21:52:50 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 21:52:50 +0100 |
| commit | 7aeed8b205fd3c8f5a0e3014beccaff8a50bb6d2 (patch) | |
| tree | 007f7cde16c677c358d90ec38ab0e681b345baa4 /tests/internal | |
| parent | 171a8d1589f90a6e3d249e52ce45718049374e42 (diff) | |
skip pow -25 for linux arm64 too
Diffstat (limited to 'tests/internal')
| -rw-r--r-- | tests/internal/test_pow.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/internal/test_pow.odin b/tests/internal/test_pow.odin index d1939ace5..db1f33ffd 100644 --- a/tests/internal/test_pow.odin +++ b/tests/internal/test_pow.odin @@ -33,9 +33,9 @@ pow_test :: proc(t: ^testing.T) { _v2 := transmute(u16)v2 _v1 := transmute(u16)v1 - when ODIN_OS == .Darwin && ODIN_ARCH == .arm64 { + when ODIN_ARCH == .arm64 { if exp == -25 { - log.info("skipping known test failure on darwin+arm64, Expected math.pow2_f16(-25) == math.pow(2, -25) (= 0000), got 0001") + log.info("skipping known test failure on arm64, Expected math.pow2_f16(-25) == math.pow(2, -25) (= 0000), got 0001") _v2 = 0 } } |