@@ -376,7 +376,7 @@ pub fn build(b: *std.Build) !void {
376
376
377
377
const test_filters = b .option ([]const []const u8 , "test-filter" , "Skip tests that do not match any filter" ) orelse &[0 ][]const u8 {};
378
378
const test_target_filters = b .option ([]const []const u8 , "test-target-filter" , "Skip tests whose target triple do not match any filter" ) orelse &[0 ][]const u8 {};
379
- const test_slow_targets = b .option (bool , "test-slow -targets" , "Enable running module tests for targets that have a slow compiler backend " ) orelse false ;
379
+ const test_extra_targets = b .option (bool , "test-extra -targets" , "Enable running module tests for additional targets " ) orelse false ;
380
380
381
381
var chosen_opt_modes_buf : [4 ]builtin.OptimizeMode = undefined ;
382
382
var chosen_mode_index : usize = 0 ;
@@ -433,7 +433,7 @@ pub fn build(b: *std.Build) !void {
433
433
test_modules_step .dependOn (tests .addModuleTests (b , .{
434
434
.test_filters = test_filters ,
435
435
.test_target_filters = test_target_filters ,
436
- .test_slow_targets = test_slow_targets ,
436
+ .test_extra_targets = test_extra_targets ,
437
437
.root_src = "test/behavior.zig" ,
438
438
.name = "behavior" ,
439
439
.desc = "Run the behavior tests" ,
@@ -449,7 +449,7 @@ pub fn build(b: *std.Build) !void {
449
449
test_modules_step .dependOn (tests .addModuleTests (b , .{
450
450
.test_filters = test_filters ,
451
451
.test_target_filters = test_target_filters ,
452
- .test_slow_targets = test_slow_targets ,
452
+ .test_extra_targets = test_extra_targets ,
453
453
.root_src = "test/c_import.zig" ,
454
454
.name = "c-import" ,
455
455
.desc = "Run the @cImport tests" ,
@@ -464,7 +464,7 @@ pub fn build(b: *std.Build) !void {
464
464
test_modules_step .dependOn (tests .addModuleTests (b , .{
465
465
.test_filters = test_filters ,
466
466
.test_target_filters = test_target_filters ,
467
- .test_slow_targets = test_slow_targets ,
467
+ .test_extra_targets = test_extra_targets ,
468
468
.root_src = "lib/compiler_rt.zig" ,
469
469
.name = "compiler-rt" ,
470
470
.desc = "Run the compiler_rt tests" ,
@@ -480,7 +480,7 @@ pub fn build(b: *std.Build) !void {
480
480
test_modules_step .dependOn (tests .addModuleTests (b , .{
481
481
.test_filters = test_filters ,
482
482
.test_target_filters = test_target_filters ,
483
- .test_slow_targets = test_slow_targets ,
483
+ .test_extra_targets = test_extra_targets ,
484
484
.root_src = "lib/c.zig" ,
485
485
.name = "universal-libc" ,
486
486
.desc = "Run the universal libc tests" ,
@@ -496,7 +496,7 @@ pub fn build(b: *std.Build) !void {
496
496
test_modules_step .dependOn (tests .addModuleTests (b , .{
497
497
.test_filters = test_filters ,
498
498
.test_target_filters = test_target_filters ,
499
- .test_slow_targets = test_slow_targets ,
499
+ .test_extra_targets = test_extra_targets ,
500
500
.root_src = "lib/std/std.zig" ,
501
501
.name = "std" ,
502
502
.desc = "Run the standard library tests" ,
@@ -1166,10 +1166,10 @@ const llvm_libs = [_][]const u8{
1166
1166
"LLVMXRay" ,
1167
1167
"LLVMLibDriver" ,
1168
1168
"LLVMDlltoolDriver" ,
1169
+ "LLVMTelemetry" ,
1169
1170
"LLVMTextAPIBinaryReader" ,
1170
1171
"LLVMCoverage" ,
1171
1172
"LLVMLineEditor" ,
1172
- "LLVMSandboxIR" ,
1173
1173
"LLVMXCoreDisassembler" ,
1174
1174
"LLVMXCoreCodeGen" ,
1175
1175
"LLVMXCoreDesc" ,
@@ -1196,6 +1196,10 @@ const llvm_libs = [_][]const u8{
1196
1196
"LLVMSystemZCodeGen" ,
1197
1197
"LLVMSystemZDesc" ,
1198
1198
"LLVMSystemZInfo" ,
1199
+ "LLVMSPIRVCodeGen" ,
1200
+ "LLVMSPIRVDesc" ,
1201
+ "LLVMSPIRVInfo" ,
1202
+ "LLVMSPIRVAnalysis" ,
1199
1203
"LLVMSparcDisassembler" ,
1200
1204
"LLVMSparcAsmParser" ,
1201
1205
"LLVMSparcCodeGen" ,
@@ -1294,18 +1298,19 @@ const llvm_libs = [_][]const u8{
1294
1298
"LLVMCoroutines" ,
1295
1299
"LLVMipo" ,
1296
1300
"LLVMVectorize" ,
1301
+ "LLVMSandboxIR" ,
1297
1302
"LLVMLinker" ,
1298
1303
"LLVMInstrumentation" ,
1299
1304
"LLVMFrontendOpenMP" ,
1300
1305
"LLVMFrontendOffloading" ,
1301
1306
"LLVMFrontendOpenACC" ,
1302
1307
"LLVMFrontendHLSL" ,
1303
1308
"LLVMFrontendDriver" ,
1309
+ "LLVMFrontendAtomic" ,
1304
1310
"LLVMExtensions" ,
1305
1311
"LLVMDWARFLinkerParallel" ,
1306
1312
"LLVMDWARFLinkerClassic" ,
1307
1313
"LLVMDWARFLinker" ,
1308
- "LLVMCodeGenData" ,
1309
1314
"LLVMGlobalISel" ,
1310
1315
"LLVMMIRParser" ,
1311
1316
"LLVMAsmPrinter" ,
@@ -1314,6 +1319,7 @@ const llvm_libs = [_][]const u8{
1314
1319
"LLVMTarget" ,
1315
1320
"LLVMObjCARCOpts" ,
1316
1321
"LLVMCodeGenTypes" ,
1322
+ "LLVMCGData" ,
1317
1323
"LLVMIRPrinter" ,
1318
1324
"LLVMInterfaceStub" ,
1319
1325
"LLVMFileCheck" ,
@@ -1329,14 +1335,14 @@ const llvm_libs = [_][]const u8{
1329
1335
"LLVMDebugInfoBTF" ,
1330
1336
"LLVMDebugInfoPDB" ,
1331
1337
"LLVMDebugInfoMSF" ,
1338
+ "LLVMDebugInfoCodeView" ,
1332
1339
"LLVMDebugInfoDWARF" ,
1333
1340
"LLVMObject" ,
1334
1341
"LLVMTextAPI" ,
1335
1342
"LLVMMCParser" ,
1336
1343
"LLVMIRReader" ,
1337
1344
"LLVMAsmParser" ,
1338
1345
"LLVMMC" ,
1339
- "LLVMDebugInfoCodeView" ,
1340
1346
"LLVMBitReader" ,
1341
1347
"LLVMFuzzerCLI" ,
1342
1348
"LLVMCore" ,
0 commit comments