diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-05-26 19:38:28 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-05-26 21:58:19 -0700 |
| commit | 4751356d7f1da157665d37e29216628e61ddf079 (patch) | |
| tree | 4d703caff2eec93161d5f37737b24fa87073053b /test/behavior/floatop.zig | |
| parent | f2e8c79763723e394f57af84af977d91652568b5 (diff) | |
| download | zig-4751356d7f1da157665d37e29216628e61ddf079.tar.gz zig-4751356d7f1da157665d37e29216628e61ddf079.zip | |
clean up some behavior tests
* improve names
* properly categorize a couple of bug cases
* mark one as already passing
Diffstat (limited to 'test/behavior/floatop.zig')
| -rw-r--r-- | test/behavior/floatop.zig | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig index 536c365655..ac35834928 100644 --- a/test/behavior/floatop.zig +++ b/test/behavior/floatop.zig @@ -651,11 +651,7 @@ test "negation f128" { } test "eval @setFloatMode at compile-time" { - if (builtin.zig_backend != .stage1) { - // let's delay solving this one; I want to re-evaluate this language feature, and - // we don't rely on it for self-hosted. - return error.SkipZigTest; // TODO - } + if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO const result = comptime fnWithFloatMode(); try expect(result == 1234.0); |
