diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-09-19 12:09:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-19 12:09:48 +0200 |
| commit | 97df4ae3ce34ae2f1ac8298a99faaf990e22ca75 (patch) | |
| tree | bc87b057fadd0056e22bb930cd214318ddc77112 /test/tests.zig | |
| parent | de489031d873193ca94de1292828c00a02e3b3ea (diff) | |
| parent | c26c5a3c1b9dc55e157374cc5fab11fe28d53ecf (diff) | |
| download | zig-97df4ae3ce34ae2f1ac8298a99faaf990e22ca75.tar.gz zig-97df4ae3ce34ae2f1ac8298a99faaf990e22ca75.zip | |
Merge pull request #25268 from alexrp/loongarch
Miscellaneous LoongArch work to prepare for CI
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/test/tests.zig b/test/tests.zig index 5b80ec5b0b..8bcdce7aad 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -419,8 +419,6 @@ const test_targets = blk: { .os_tag = .linux, .abi = .none, }, - // https://github.com/ziglang/zig/issues/21646 - .skip_modules = &.{"std"}, }, .{ .target = .{ @@ -429,8 +427,6 @@ const test_targets = blk: { .abi = .musl, }, .link_libc = true, - // https://github.com/ziglang/zig/issues/21646 - .skip_modules = &.{"std"}, }, .{ .target = .{ @@ -440,8 +436,6 @@ const test_targets = blk: { }, .linkage = .dynamic, .link_libc = true, - // https://github.com/ziglang/zig/issues/21646 - .skip_modules = &.{"std"}, .extra_target = true, }, .{ @@ -451,8 +445,6 @@ const test_targets = blk: { .abi = .gnu, }, .link_libc = true, - // https://github.com/ziglang/zig/issues/21646 - .skip_modules = &.{"std"}, }, .{ @@ -1901,6 +1893,7 @@ pub fn addStandaloneTests( enable_macos_sdk: bool, enable_ios_sdk: bool, enable_symlinks_windows: bool, + skip_translate_c: bool, ) *Step { const step = b.step("test-standalone", "Run the standalone tests"); if (compilerHasPackageManager(b)) { @@ -1913,6 +1906,7 @@ pub fn addStandaloneTests( .simple_skip_release_safe = mem.indexOfScalar(OptimizeMode, optimize_modes, .ReleaseSafe) == null, .simple_skip_release_fast = mem.indexOfScalar(OptimizeMode, optimize_modes, .ReleaseFast) == null, .simple_skip_release_small = mem.indexOfScalar(OptimizeMode, optimize_modes, .ReleaseSmall) == null, + .skip_translate_c = skip_translate_c, }); const test_cases_dep_step = test_cases_dep.builder.default_step; test_cases_dep_step.name = b.dupe(test_cases_dep_name); |
