diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-07-13 16:47:55 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-07-20 12:27:03 -0700 |
| commit | 1ec50613bf2c492839fe798aeaaae789344eedf4 (patch) | |
| tree | bdae5a4c6b1c5939f0fc1332e9cc8ad13d7b089d /test/cli.zig | |
| parent | de62bd06472e5603fd2afb6f50d688d54f4098b4 (diff) | |
| download | zig-1ec50613bf2c492839fe798aeaaae789344eedf4.tar.gz zig-1ec50613bf2c492839fe798aeaaae789344eedf4.zip | |
CI: increase stage3 test coverage
* Use a debug build of stage3 instead of a debug build of stage2 for
our self-hosted compiler test coverage.
* Move coverage from stage1 to stage3 for:
- building self-hosted without LLVM
- building self-hosted for 32-bit arm
- test-compiler-rt
- test-behavior
- test-std
- test-compare-output
- test-asm-link
- test-fmt
Diffstat (limited to 'test/cli.zig')
| -rw-r--r-- | test/cli.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cli.zig b/test/cli.zig index 5df5696919..9acbce0b19 100644 --- a/test/cli.zig +++ b/test/cli.zig @@ -38,7 +38,7 @@ pub fn main() !void { testMissingOutputPath, testZigFmt, }; - for (test_fns) |testFn| { + inline for (test_fns) |testFn| { try fs.cwd().deleteTree(dir_path); try fs.cwd().makeDir(dir_path); try testFn(zig_exe, dir_path); |
