@@ -90,6 +90,7 @@ pub fn build(b: *std.Build) !void {
90
90
const skip_non_native = b .option (bool , "skip-non-native" , "Main test suite skips non-native builds" ) orelse false ;
91
91
const skip_libc = b .option (bool , "skip-libc" , "Main test suite skips tests that link libc" ) orelse false ;
92
92
const skip_single_threaded = b .option (bool , "skip-single-threaded" , "Main test suite skips tests that are single-threaded" ) orelse false ;
93
+ const skip_compile_errors = b .option (bool , "skip-compile-errors" , "Main test suite skips compile error tests" ) orelse false ;
93
94
const skip_translate_c = b .option (bool , "skip-translate-c" , "Main test suite skips translate-c tests" ) orelse false ;
94
95
const skip_run_translated_c = b .option (bool , "skip-run-translated-c" , "Main test suite skips run-translated-c tests" ) orelse false ;
95
96
const skip_freebsd = b .option (bool , "skip-freebsd" , "Main test suite skips targets with freebsd OS" ) orelse false ;
@@ -418,6 +419,7 @@ pub fn build(b: *std.Build) !void {
418
419
try tests .addCases (b , test_cases_step , target , .{
419
420
.test_filters = test_filters ,
420
421
.test_target_filters = test_target_filters ,
422
+ .skip_compile_errors = skip_compile_errors ,
421
423
.skip_non_native = skip_non_native ,
422
424
.skip_freebsd = skip_freebsd ,
423
425
.skip_netbsd = skip_netbsd ,
0 commit comments