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

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

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-04-29 15:14:40 +02:00 committed by Alexandre Julliard
parent 20984f2e1f
commit f932fb327a
1 changed files with 2 additions and 1 deletions

View File

@ -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;