From 77941862101c9c0c1b11b7d99d01519172189edb Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Thu, 13 Apr 2023 04:05:39 -0400 Subject: [PATCH] x86_64: disable some behavior tests These backends doesn't support the new liveness yet. --- test/tests.zig | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/test/tests.zig b/test/tests.zig index a563cf9132fa3d50ef99adc1030d67e5da8078fa..4b16ac50c78be228183eaf97840d70071526c70f 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -94,14 +94,15 @@ const test_targets = blk: { .use_llvm = false, .use_lld = false, }, - .{ - .target = .{ - .cpu_arch = .aarch64, - .os_tag = .linux, - }, - .use_llvm = false, - .use_lld = false, - }, + // Doesn't support new liveness + //.{ + // .target = .{ + // .cpu_arch = .aarch64, + // .os_tag = .linux, + // }, + // .use_llvm = false, + // .use_lld = false, + //}, .{ .target = .{ .cpu_arch = .wasm32, @@ -128,15 +129,16 @@ const test_targets = blk: { // .use_llvm = false, // .use_lld = false, //}, - .{ - .target = .{ - .cpu_arch = .aarch64, - .os_tag = .macos, - .abi = .none, - }, - .use_llvm = false, - .use_lld = false, - }, + // Doesn't support new liveness + //.{ + // .target = .{ + // .cpu_arch = .aarch64, + // .os_tag = .macos, + // .abi = .none, + // }, + // .use_llvm = false, + // .use_lld = false, + //}, .{ .target = .{ .cpu_arch = .x86_64, -- 2.54.0