aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2025-03-09 08:46:33 +0100
committerAlex Rønne Petersen <alex@alexrp.com>2025-04-04 06:08:10 +0200
commitb9456d64d766ebff968cdd005c6fc6dd070f1b29 (patch)
tree1db113b6220acebd4310357cd70fb12d61727b21 /test/tests.zig
parent7109e462b71453dee255b79b2818bca598f56684 (diff)
downloadzig-b9456d64d766ebff968cdd005c6fc6dd070f1b29.tar.gz
zig-b9456d64d766ebff968cdd005c6fc6dd070f1b29.zip
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.
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig16
1 files changed, 2 insertions, 14 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 9224f97c7e..5d0f01ce67 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -32,8 +32,8 @@ const TestTarget = struct {
// 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
- // of writing, this includes LLVM's MIPS backend which takes upwards of 20 minutes longer to
- // compile tests than other backends.
+ // of writing, this included LLVM's MIPS backend which takes upwards of 20 minutes longer to
+ // compile tests than other backends. (No longer the case.)
slow_backend: bool = false,
};
@@ -505,7 +505,6 @@ const test_targets = blk: {
.os_tag = .linux,
.abi = .eabi,
},
- .slow_backend = true,
},
.{
.target = .{
@@ -513,7 +512,6 @@ const test_targets = blk: {
.os_tag = .linux,
.abi = .eabihf,
},
- .slow_backend = true,
},
.{
.target = .{
@@ -522,7 +520,6 @@ const test_targets = blk: {
.abi = .musleabi,
},
.link_libc = true,
- .slow_backend = true,
},
.{
.target = .{
@@ -531,7 +528,6 @@ const test_targets = blk: {
.abi = .musleabihf,
},
.link_libc = true,
- .slow_backend = true,
},
.{
.target = .{
@@ -540,7 +536,6 @@ const test_targets = blk: {
.abi = .gnueabi,
},
.link_libc = true,
- .slow_backend = true,
},
.{
.target = .{
@@ -549,7 +544,6 @@ const test_targets = blk: {
.abi = .gnueabihf,
},
.link_libc = true,
- .slow_backend = true,
},
.{
@@ -558,7 +552,6 @@ const test_targets = blk: {
.os_tag = .linux,
.abi = .eabi,
},
- .slow_backend = true,
},
.{
.target = .{
@@ -566,7 +559,6 @@ const test_targets = blk: {
.os_tag = .linux,
.abi = .eabihf,
},
- .slow_backend = true,
},
.{
.target = .{
@@ -575,7 +567,6 @@ const test_targets = blk: {
.abi = .musleabi,
},
.link_libc = true,
- .slow_backend = true,
},
.{
.target = .{
@@ -584,7 +575,6 @@ const test_targets = blk: {
.abi = .musleabihf,
},
.link_libc = true,
- .slow_backend = true,
},
.{
.target = .{
@@ -593,7 +583,6 @@ const test_targets = blk: {
.abi = .gnueabi,
},
.link_libc = true,
- .slow_backend = true,
},
.{
.target = .{
@@ -602,7 +591,6 @@ const test_targets = blk: {
.abi = .gnueabihf,
},
.link_libc = true,
- .slow_backend = true,
},
.{