authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-09-03 11:26:55+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-09-03 11:32:57+02:00
logb2ef6d01fff852f2f1b24bba4917055f4e699f19
tree01c925324ecb3b226c745e6cd8f2fb1d02e5707a
parentd8d0a3e5c77ccce33699d6c11a850d383a83c40d
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

Revert "test: disable non-native loongarch64 behavior and std tests"

This reverts commit f4ed35f800396f12c7cd6aa1f70cf2555ddf7c84. This should no longer be needed now that stack traces are disabled on loongarch. closes #24405

1 files changed, 0 insertions(+), 5 deletions(-)

test/tests.zig-5
...@@ -2293,11 +2293,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {...@@ -2293,11 +2293,6 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
2293 if (options.skip_single_threaded and test_target.single_threaded == true)2293 if (options.skip_single_threaded and test_target.single_threaded == true)
2294 continue;2294 continue;
22952295
2296 // https://github.com/ziglang/zig/issues/24405
2297 if (!builtin.cpu.arch.isLoongArch() and target.cpu.arch.isLoongArch() and
2298 (mem.eql(u8, options.name, "behavior") or mem.eql(u8, options.name, "std")))
2299 continue;
2300
2301 // TODO get compiler-rt tests passing for self-hosted backends.2296 // TODO get compiler-rt tests passing for self-hosted backends.
2302 if (((target.cpu.arch != .x86_64 and target.cpu.arch != .aarch64) or target.ofmt == .coff) and2297 if (((target.cpu.arch != .x86_64 and target.cpu.arch != .aarch64) or target.ofmt == .coff) and
2303 test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt"))2298 test_target.use_llvm == false and mem.eql(u8, options.name, "compiler-rt"))