zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit d12aed5f148c61ab7db043e9a357b7d9a427d0f0 (tree)
parent a5bb7108a945cbc12fcba3d3bfe5eb3e2c9e9286
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Tue, 16 Sep 2025 16:35:53 +0200

build: -Dskip-translate-c now implies -Dskip-run-translated-c

Diffstat:
Mbuild.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.zig b/build.zig @@ -91,7 +91,7 @@ pub fn build(b: *std.Build) !void { const skip_single_threaded = b.option(bool, "skip-single-threaded", "Main test suite skips tests that are single-threaded") orelse false; const skip_compile_errors = b.option(bool, "skip-compile-errors", "Main test suite skips compile error tests") orelse false; const skip_translate_c = b.option(bool, "skip-translate-c", "Main test suite skips translate-c tests") orelse false; - const skip_run_translated_c = b.option(bool, "skip-run-translated-c", "Main test suite skips run-translated-c tests") orelse false; + const skip_run_translated_c = b.option(bool, "skip-run-translated-c", "Main test suite skips run-translated-c tests") orelse skip_translate_c; const skip_freebsd = b.option(bool, "skip-freebsd", "Main test suite skips targets with freebsd OS") orelse false; const skip_netbsd = b.option(bool, "skip-netbsd", "Main test suite skips targets with netbsd OS") orelse false; const skip_windows = b.option(bool, "skip-windows", "Main test suite skips targets with windows OS") orelse false;