| ... | ... | @@ -32,8 +32,8 @@ const TestTarget = struct { |
| 32 | 32 | |
| 33 | 33 | // This is intended for targets that are known to be slow to compile. These are acceptable to |
| 34 | 34 | // run in CI, but should not be run on developer machines by default. As an example, at the time |
| 35 | | // of writing, this includes LLVM's MIPS backend which takes upwards of 20 minutes longer to |
| 36 | | // compile tests than other backends. |
| 35 | // of writing, this included LLVM's MIPS backend which takes upwards of 20 minutes longer to |
| 36 | // compile tests than other backends. (No longer the case.) |
| 37 | 37 | slow_backend: bool = false, |
| 38 | 38 | }; |
| 39 | 39 | |
| ... | ... | @@ -505,7 +505,6 @@ const test_targets = blk: { |
| 505 | 505 | .os_tag = .linux, |
| 506 | 506 | .abi = .eabi, |
| 507 | 507 | }, |
| 508 | | .slow_backend = true, |
| 509 | 508 | }, |
| 510 | 509 | .{ |
| 511 | 510 | .target = .{ |
| ... | ... | @@ -513,7 +512,6 @@ const test_targets = blk: { |
| 513 | 512 | .os_tag = .linux, |
| 514 | 513 | .abi = .eabihf, |
| 515 | 514 | }, |
| 516 | | .slow_backend = true, |
| 517 | 515 | }, |
| 518 | 516 | .{ |
| 519 | 517 | .target = .{ |
| ... | ... | @@ -522,7 +520,6 @@ const test_targets = blk: { |
| 522 | 520 | .abi = .musleabi, |
| 523 | 521 | }, |
| 524 | 522 | .link_libc = true, |
| 525 | | .slow_backend = true, |
| 526 | 523 | }, |
| 527 | 524 | .{ |
| 528 | 525 | .target = .{ |
| ... | ... | @@ -531,7 +528,6 @@ const test_targets = blk: { |
| 531 | 528 | .abi = .musleabihf, |
| 532 | 529 | }, |
| 533 | 530 | .link_libc = true, |
| 534 | | .slow_backend = true, |
| 535 | 531 | }, |
| 536 | 532 | .{ |
| 537 | 533 | .target = .{ |
| ... | ... | @@ -540,7 +536,6 @@ const test_targets = blk: { |
| 540 | 536 | .abi = .gnueabi, |
| 541 | 537 | }, |
| 542 | 538 | .link_libc = true, |
| 543 | | .slow_backend = true, |
| 544 | 539 | }, |
| 545 | 540 | .{ |
| 546 | 541 | .target = .{ |
| ... | ... | @@ -549,7 +544,6 @@ const test_targets = blk: { |
| 549 | 544 | .abi = .gnueabihf, |
| 550 | 545 | }, |
| 551 | 546 | .link_libc = true, |
| 552 | | .slow_backend = true, |
| 553 | 547 | }, |
| 554 | 548 | |
| 555 | 549 | .{ |
| ... | ... | @@ -558,7 +552,6 @@ const test_targets = blk: { |
| 558 | 552 | .os_tag = .linux, |
| 559 | 553 | .abi = .eabi, |
| 560 | 554 | }, |
| 561 | | .slow_backend = true, |
| 562 | 555 | }, |
| 563 | 556 | .{ |
| 564 | 557 | .target = .{ |
| ... | ... | @@ -566,7 +559,6 @@ const test_targets = blk: { |
| 566 | 559 | .os_tag = .linux, |
| 567 | 560 | .abi = .eabihf, |
| 568 | 561 | }, |
| 569 | | .slow_backend = true, |
| 570 | 562 | }, |
| 571 | 563 | .{ |
| 572 | 564 | .target = .{ |
| ... | ... | @@ -575,7 +567,6 @@ const test_targets = blk: { |
| 575 | 567 | .abi = .musleabi, |
| 576 | 568 | }, |
| 577 | 569 | .link_libc = true, |
| 578 | | .slow_backend = true, |
| 579 | 570 | }, |
| 580 | 571 | .{ |
| 581 | 572 | .target = .{ |
| ... | ... | @@ -584,7 +575,6 @@ const test_targets = blk: { |
| 584 | 575 | .abi = .musleabihf, |
| 585 | 576 | }, |
| 586 | 577 | .link_libc = true, |
| 587 | | .slow_backend = true, |
| 588 | 578 | }, |
| 589 | 579 | .{ |
| 590 | 580 | .target = .{ |
| ... | ... | @@ -593,7 +583,6 @@ const test_targets = blk: { |
| 593 | 583 | .abi = .gnueabi, |
| 594 | 584 | }, |
| 595 | 585 | .link_libc = true, |
| 596 | | .slow_backend = true, |
| 597 | 586 | }, |
| 598 | 587 | .{ |
| 599 | 588 | .target = .{ |
| ... | ... | @@ -602,7 +591,6 @@ const test_targets = blk: { |
| 602 | 591 | .abi = .gnueabihf, |
| 603 | 592 | }, |
| 604 | 593 | .link_libc = true, |
| 605 | | .slow_backend = true, |
| 606 | 594 | }, |
| 607 | 595 | |
| 608 | 596 | .{ |