| ... | @@ -97,6 +97,7 @@ pub fn build(b: *std.Build) !void { | ... | @@ -97,6 +97,7 @@ pub fn build(b: *std.Build) !void { |
| 97 | const skip_darwin = b.option(bool, "skip-darwin", "Main test suite skips targets with darwin OSs") orelse false; | 97 | const skip_darwin = b.option(bool, "skip-darwin", "Main test suite skips targets with darwin OSs") orelse false; |
| 98 | const skip_linux = b.option(bool, "skip-linux", "Main test suite skips targets with linux OS") orelse false; | 98 | const skip_linux = b.option(bool, "skip-linux", "Main test suite skips targets with linux OS") orelse false; |
| 99 | const skip_llvm = b.option(bool, "skip-llvm", "Main test suite skips targets that use LLVM backend") orelse false; | 99 | const skip_llvm = b.option(bool, "skip-llvm", "Main test suite skips targets that use LLVM backend") orelse false; |
| | 100 | const skip_test_incremental = b.option(bool, "skip-test-incremental", "Main test step omits dependency on test-incremental step") orelse false; |
| 100 | | 101 | |
| 101 | const only_install_lib_files = b.option(bool, "lib-files-only", "Only install library files") orelse false; | 102 | const only_install_lib_files = b.option(bool, "lib-files-only", "Only install library files") orelse false; |
| 102 | | 103 | |
| ... | @@ -609,7 +610,7 @@ pub fn build(b: *std.Build) !void { | ... | @@ -609,7 +610,7 @@ pub fn build(b: *std.Build) !void { |
| 609 | | 610 | |
| 610 | const test_incremental_step = b.step("test-incremental", "Run the incremental compilation test cases"); | 611 | const test_incremental_step = b.step("test-incremental", "Run the incremental compilation test cases"); |
| 611 | try tests.addIncrementalTests(b, test_incremental_step); | 612 | try tests.addIncrementalTests(b, test_incremental_step); |
| 612 | test_step.dependOn(test_incremental_step); | 613 | if (!skip_test_incremental) test_step.dependOn(test_incremental_step); |
| 613 | | 614 | |
| 614 | if (tests.addLibcTests(b, .{ | 615 | if (tests.addLibcTests(b, .{ |
| 615 | .optimize_modes = optimization_modes, | 616 | .optimize_modes = optimization_modes, |