test: mips32 is no longer a slow target with LLVM 20.

We can now run these tests as part of test-modules w/o -Dtest-slow-targets.

Closes #21096.
This commit is contained in:
Alex Rønne Petersen 2025-03-09 08:46:33 +01:00
parent 7109e462b7
commit b9456d64d7
No known key found for this signature in database

View file

@ -32,8 +32,8 @@ const TestTarget = struct {
// This is intended for targets that are known to be slow to compile. These are acceptable to // This is intended for targets that are known to be slow to compile. These are acceptable to
// run in CI, but should not be run on developer machines by default. As an example, at the time // run in CI, but should not be run on developer machines by default. As an example, at the time
// of writing, this includes LLVM's MIPS backend which takes upwards of 20 minutes longer to // of writing, this included LLVM's MIPS backend which takes upwards of 20 minutes longer to
// compile tests than other backends. // compile tests than other backends. (No longer the case.)
slow_backend: bool = false, slow_backend: bool = false,
}; };
@ -505,7 +505,6 @@ const test_targets = blk: {
.os_tag = .linux, .os_tag = .linux,
.abi = .eabi, .abi = .eabi,
}, },
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -513,7 +512,6 @@ const test_targets = blk: {
.os_tag = .linux, .os_tag = .linux,
.abi = .eabihf, .abi = .eabihf,
}, },
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -522,7 +520,6 @@ const test_targets = blk: {
.abi = .musleabi, .abi = .musleabi,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -531,7 +528,6 @@ const test_targets = blk: {
.abi = .musleabihf, .abi = .musleabihf,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -540,7 +536,6 @@ const test_targets = blk: {
.abi = .gnueabi, .abi = .gnueabi,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -549,7 +544,6 @@ const test_targets = blk: {
.abi = .gnueabihf, .abi = .gnueabihf,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{
@ -558,7 +552,6 @@ const test_targets = blk: {
.os_tag = .linux, .os_tag = .linux,
.abi = .eabi, .abi = .eabi,
}, },
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -566,7 +559,6 @@ const test_targets = blk: {
.os_tag = .linux, .os_tag = .linux,
.abi = .eabihf, .abi = .eabihf,
}, },
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -575,7 +567,6 @@ const test_targets = blk: {
.abi = .musleabi, .abi = .musleabi,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -584,7 +575,6 @@ const test_targets = blk: {
.abi = .musleabihf, .abi = .musleabihf,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -593,7 +583,6 @@ const test_targets = blk: {
.abi = .gnueabi, .abi = .gnueabi,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{
.target = .{ .target = .{
@ -602,7 +591,6 @@ const test_targets = blk: {
.abi = .gnueabihf, .abi = .gnueabihf,
}, },
.link_libc = true, .link_libc = true,
.slow_backend = true,
}, },
.{ .{