From 19bf63ab714ddd5807df5ec2df0572c7fd9ac94a Mon Sep 17 00:00:00 2001 From: Alessandro De Blasis Date: Sat, 11 Apr 2026 03:02:08 +0200 Subject: [PATCH] test/windows: update README for ghostty-internal.dll rename Match the dll filename rename so the copy/run instructions stay accurate. --- test/windows/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/windows/README.md b/test/windows/README.md index d9047d841..da2be7521 100644 --- a/test/windows/README.md +++ b/test/windows/README.md @@ -4,13 +4,13 @@ Manual test programs for Windows-specific functionality. ## test_dll_init.c -Regression test for the DLL CRT initialization fix. Loads ghostty.dll -at runtime and calls ghostty_info + ghostty_init to verify the MSVC C -runtime is properly initialized. +Regression test for the DLL CRT initialization fix. Loads +ghostty-internal.dll at runtime and calls ghostty_info + ghostty_init to +verify the MSVC C runtime is properly initialized. ### Build -First build ghostty.dll, then compile the test: +First build ghostty-internal.dll, then compile the test: ``` zig build -Dapp-runtime=none -Demit-exe=false @@ -22,7 +22,7 @@ zig cc test_dll_init.c -o test_dll_init.exe -target native-native-msvc From this directory: ``` -copy ..\..\zig-out\lib\ghostty.dll . && test_dll_init.exe +copy ..\..\zig-out\lib\ghostty-internal.dll . && test_dll_init.exe ``` Expected output (after the CRT fix):