diff options
| author | Cody Tapscott <topolarity@tapscott.me> | 2022-10-08 11:29:49 -0700 |
|---|---|---|
| committer | Cody Tapscott <topolarity@tapscott.me> | 2022-10-13 12:53:20 -0700 |
| commit | 83e2d3fb3701d77c8177f7b2b164cbd7c790a3ed (patch) | |
| tree | f6e16b6d0405bd9760857435f3c162b464554927 /test/behavior/eval.zig | |
| parent | f5f28e0d2c49d5c62914edf0bff8f1941eef721f (diff) | |
| download | zig-83e2d3fb3701d77c8177f7b2b164cbd7c790a3ed.tar.gz zig-83e2d3fb3701d77c8177f7b2b164cbd7c790a3ed.zip | |
stage1: Skip new tests that never passed in stage1
This gets the behavior tests passing for stage1 again.
Diffstat (limited to 'test/behavior/eval.zig')
| -rw-r--r-- | test/behavior/eval.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/eval.zig b/test/behavior/eval.zig index da93ebc831..c2d3162919 100644 --- a/test/behavior/eval.zig +++ b/test/behavior/eval.zig @@ -1339,6 +1339,8 @@ test "lazy value is resolved as slice operand" { } test "break from inline loop depends on runtime condition" { + if (builtin.zig_backend == .stage1) return error.SkipZigTest; + const S = struct { fn foo(a: u8) bool { return a == 4; |
