diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-03-07 22:40:53 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-03-15 10:48:14 -0700 |
| commit | 15c4fae1c93d970d02a9eede96371fb7c053837f (patch) | |
| tree | f55fcd70efa87474d51c9d81bd3eec06a2bee911 /build.zig | |
| parent | 1142e0534351a57b81bd4a127f29745c62cc59c9 (diff) | |
| download | zig-15c4fae1c93d970d02a9eede96371fb7c053837f.tar.gz zig-15c4fae1c93d970d02a9eede96371fb7c053837f.zip | |
re-enable the simple standalone tests
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -443,16 +443,15 @@ pub fn build(b: *std.Build) !void { })); test_step.dependOn(tests.addCompareOutputTests(b, test_filter, optimization_modes)); - //test_step.dependOn(tests.addStandaloneTests( - // b, - // test_filter, - // optimization_modes, - // skip_non_native, - // enable_macos_sdk, - // target, - // skip_stage2_tests, - // enable_symlinks_windows, - //)); + test_step.dependOn(tests.addStandaloneTests( + b, + test_filter, + optimization_modes, + skip_non_native, + enable_macos_sdk, + skip_stage2_tests, + enable_symlinks_windows, + )); test_step.dependOn(tests.addCAbiTests(b, skip_non_native, skip_release)); test_step.dependOn(tests.addLinkTests(b, enable_macos_sdk, skip_stage2_tests, enable_symlinks_windows)); test_step.dependOn(tests.addStackTraceTests(b, test_filter, optimization_modes)); |
