From 85be3ca2c17ca606753fa623ab0f4e3abb164287 Mon Sep 17 00:00:00 2001 From: kataokatsuki Date: Fri, 10 Apr 2026 22:41:16 +0900 Subject: [PATCH] build: skip ghostty-test graph when building libghostty-vt Fixes #12151 --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index e8c784611..89142561b 100644 --- a/build.zig +++ b/build.zig @@ -329,8 +329,8 @@ pub fn build(b: *std.Build) !void { test_lib_vt_step.dependOn(&mod_vt_c_test_run.step); } - // Tests - { + // Tests (skip when building libghostty-vt) + if (!config.emit_lib_vt) { // Full unit tests const test_exe = b.addTest(.{ .name = "ghostty-test",