From 1576563775763ee81c5cd4f5a18f13456f5162f4 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Thu, 31 Oct 2024 03:17:19 +0800 Subject: [PATCH] disable Test on aarch64 (#24389) ref https://github.com/nim-lang/Nim/issues/24287 --- tests/compiler/tasm.nim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/compiler/tasm.nim b/tests/compiler/tasm.nim index 9f60231e0b..31db5643c9 100644 --- a/tests/compiler/tasm.nim +++ b/tests/compiler/tasm.nim @@ -1,3 +1,7 @@ +discard """ +disabled: "arm64" +""" + proc testAsm() = let src = 41 var dst = 0 @@ -12,4 +16,4 @@ proc testAsm() = when defined(gcc) or defined(clang) and not defined(cpp): {.passc: "-std=c99".} - testAsm() \ No newline at end of file + testAsm()