[PATCH] winetest: Fix the path to the ntoskrnl.exe/tests source.

Francois Gouget fgouget at codeweavers.com
Thu Apr 29 08:14:40 CDT 2021


It's the only test with a .exe extension for which the source is not in
programs!

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
 programs/winetest/main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/programs/winetest/main.c b/programs/winetest/main.c
index ce3fbb4224a..290cd5f086f 100644
--- a/programs/winetest/main.c
+++ b/programs/winetest/main.c
@@ -518,7 +518,8 @@ static const char* get_test_source_file(const char* test, const char* subtest)
     static char buffer[MAX_PATH];
     int len = strlen(test);
 
-    if (len > 4 && !strcmp( test + len - 4, ".exe" ))
+    if (len > 4 && !strcmp( test + len - 4, ".exe" ) &&
+        strcmp( test, "ntoskrnl.exe" )) /* the one exception! */
     {
         len = sprintf(buffer, "programs/%s", test) - 4;
         buffer[len] = 0;
-- 
2.20.1




More information about the wine-devel mailing list