diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-01-06 21:51:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-06 21:51:56 +0100 |
| commit | 0fb80b0633fc5ebc92776449cb4e76068b5845f5 (patch) | |
| tree | 3d72f6598837e534f7a306f3f94b70a6be8591d3 /lib/std/fmt.zig | |
| parent | a7a5f3506b74651235ba7112ce38b7c3205d0527 (diff) | |
| parent | 03ac40d5709060168e10c9c3187ffb5a161e773b (diff) | |
| download | zig-0fb80b0633fc5ebc92776449cb4e76068b5845f5.tar.gz zig-0fb80b0633fc5ebc92776449cb4e76068b5845f5.zip | |
Merge pull request #22430 from alexrp/thumbeb
Some QEMU fixes + disable some tests for `thumbeb` in addition to `armeb`
Diffstat (limited to 'lib/std/fmt.zig')
| -rw-r--r-- | lib/std/fmt.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/fmt.zig b/lib/std/fmt.zig index b45194a837..2b5e78975e 100644 --- a/lib/std/fmt.zig +++ b/lib/std/fmt.zig @@ -2596,7 +2596,7 @@ test "positional/alignment/width/precision" { } test "vector" { - if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060 + if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060 if (builtin.target.cpu.arch == .riscv64) { // https://github.com/ziglang/zig/issues/4486 return error.SkipZigTest; |
