mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
parent
c9a788c851
commit
3f2cf1c002
@ -97,6 +97,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
const skip_darwin = b.option(bool, "skip-darwin", "Main test suite skips targets with darwin OSs") orelse false;
|
const skip_darwin = b.option(bool, "skip-darwin", "Main test suite skips targets with darwin OSs") orelse false;
|
||||||
const skip_linux = b.option(bool, "skip-linux", "Main test suite skips targets with linux OS") orelse false;
|
const skip_linux = b.option(bool, "skip-linux", "Main test suite skips targets with linux OS") orelse false;
|
||||||
const skip_llvm = b.option(bool, "skip-llvm", "Main test suite skips targets that use LLVM backend") orelse false;
|
const skip_llvm = b.option(bool, "skip-llvm", "Main test suite skips targets that use LLVM backend") orelse false;
|
||||||
|
const skip_test_incremental = b.option(bool, "skip-test-incremental", "Main test step omits dependency on test-incremental step") orelse false;
|
||||||
|
|
||||||
const only_install_lib_files = b.option(bool, "lib-files-only", "Only install library files") orelse false;
|
const only_install_lib_files = b.option(bool, "lib-files-only", "Only install library files") orelse false;
|
||||||
|
|
||||||
@ -609,7 +610,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
|
|
||||||
const test_incremental_step = b.step("test-incremental", "Run the incremental compilation test cases");
|
const test_incremental_step = b.step("test-incremental", "Run the incremental compilation test cases");
|
||||||
try tests.addIncrementalTests(b, test_incremental_step);
|
try tests.addIncrementalTests(b, test_incremental_step);
|
||||||
test_step.dependOn(test_incremental_step);
|
if (!skip_test_incremental) test_step.dependOn(test_incremental_step);
|
||||||
|
|
||||||
if (tests.addLibcTests(b, .{
|
if (tests.addLibcTests(b, .{
|
||||||
.optimize_modes = optimization_modes,
|
.optimize_modes = optimization_modes,
|
||||||
|
|||||||
@ -59,6 +59,7 @@ Write-Output "Main test suite..."
|
|||||||
-Dstatic-llvm `
|
-Dstatic-llvm `
|
||||||
-Dskip-non-native `
|
-Dskip-non-native `
|
||||||
-Dskip-release `
|
-Dskip-release `
|
||||||
|
-Dskip-test-incremental `
|
||||||
-Denable-symlinks-windows `
|
-Denable-symlinks-windows `
|
||||||
--test-timeout 30m
|
--test-timeout 30m
|
||||||
CheckLastExitCode
|
CheckLastExitCode
|
||||||
|
|||||||
@ -58,6 +58,7 @@ Write-Output "Main test suite..."
|
|||||||
--search-prefix "$PREFIX_PATH" `
|
--search-prefix "$PREFIX_PATH" `
|
||||||
-Dstatic-llvm `
|
-Dstatic-llvm `
|
||||||
-Dskip-non-native `
|
-Dskip-non-native `
|
||||||
|
-Dskip-test-incremental `
|
||||||
-Denable-symlinks-windows `
|
-Denable-symlinks-windows `
|
||||||
--test-timeout 30m
|
--test-timeout 30m
|
||||||
CheckLastExitCode
|
CheckLastExitCode
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user