aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-04-18 20:18:23 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-04-21 16:36:10 -0400
commitbf6fd9ae3f68f1c91e8776b69080221777225091 (patch)
tree36ef28fb369779812dcf08b02ba920c1fe6c3bf4 /test/tests.zig
parent528b66f6ec9cfb140abff3dc0c4735c179520f42 (diff)
downloadzig-bf6fd9ae3f68f1c91e8776b69080221777225091.tar.gz
zig-bf6fd9ae3f68f1c91e8776b69080221777225091.zip
cbe: enable CI for std tests
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 4b16ac50c7..eef3c63508 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -962,13 +962,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
if (test_target.use_llvm == false and mem.eql(u8, options.name, "std"))
continue;
- // TODO get std lib tests passing for the C backend
- if (test_target.target.ofmt == std.Target.ObjectFormat.c and
- mem.eql(u8, options.name, "std"))
- {
- continue;
- }
-
const want_this_mode = for (options.optimize_modes) |m| {
if (m == test_target.optimize_mode) break true;
} else false;