aboutsummaryrefslogtreecommitdiff
path: root/test/behavior
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2022-12-19 05:49:15 -0500
committerJacob Young <jacobly0@users.noreply.github.com>2022-12-19 05:59:45 -0500
commit0768115b01f01ab1c75da3e42ffcdc99078eaad2 (patch)
tree94262cb3925ffadbfc80165e949c7e5e2e6cade7 /test/behavior
parent202e8a0589b4e02dac0694e3eb30ac0b51ec3f6c (diff)
downloadzig-0768115b01f01ab1c75da3e42ffcdc99078eaad2.tar.gz
zig-0768115b01f01ab1c75da3e42ffcdc99078eaad2.zip
behavior: disable failing test
Also add an assert to catch this issue earlier. For future reference, the decl without a type and value is the string literal "GET".
Diffstat (limited to 'test/behavior')
-rw-r--r--test/behavior/bugs/3742.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/bugs/3742.zig b/test/behavior/bugs/3742.zig
index ab5ee92023..a984f0d8e4 100644
--- a/test/behavior/bugs/3742.zig
+++ b/test/behavior/bugs/3742.zig
@@ -39,5 +39,7 @@ test "fixed" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
+ if (builtin.zig_backend == .stage2_llvm and
+ builtin.cpu.arch == .aarch64 and builtin.os.tag == .windows) return error.SkipZigTest;
ArgSerializer.serializeCommand(GET.init("banana"));
}