diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-12-04 21:55:50 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-12-04 21:55:50 -0700 |
| commit | f7cbd92e6ca531fc19dce1f233b5c8ca0479eeb5 (patch) | |
| tree | 345e9325e58e5992b32a7bc6b5aeeb08ade3e2ae /ci | |
| parent | 117c0460d3f5ff05d5e2c51c2aa376b56be13096 (diff) | |
| download | zig-f7cbd92e6ca531fc19dce1f233b5c8ca0479eeb5.tar.gz zig-f7cbd92e6ca531fc19dce1f233b5c8ca0479eeb5.zip | |
Revert "Merge pull request #10270 from Luukdegram/behaviour-tests"
This reverts commit 725267f7c20f0ba588b472048a8c1fe1a328c714, reversing
changes made to 2dae860de3494f97c9477af9282fe0131ff5c4cb.
This test is failing:
```zig
pub fn main() u8 {
var e = foo();
const i = e catch 69;
return i;
}
fn foo() anyerror!u8 {
return 5;
}
```
It's returning 69 instead of the expected value 5.
Diffstat (limited to 'ci')
| -rwxr-xr-x | ci/zinc/linux_test.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ci/zinc/linux_test.sh b/ci/zinc/linux_test.sh index 886fbdaf81..fa30bd5cdf 100755 --- a/ci/zinc/linux_test.sh +++ b/ci/zinc/linux_test.sh @@ -6,7 +6,6 @@ ZIG=$DEBUG_STAGING/bin/zig $ZIG test test/behavior.zig -fno-stage1 -fLLVM -I test $ZIG test test/behavior.zig -fno-stage1 -ofmt=c -I test -$ZIG test test/behavior.zig -fno-stage1 -target wasm32-wasi --test-cmd wasmtime --test-cmd-bin $ZIG build test-behavior -fqemu -fwasmtime $ZIG build test-compiler-rt -fqemu -fwasmtime |
