kernel32/tests: Also test for ntdll.dll in toolhelp tests.

This commit is contained in:
André Hentschel 2011-03-17 18:33:19 +01:00 committed by Alexandre Julliard
parent 4abe4cf1b1
commit 6ff842fddb
1 changed files with 3 additions and 3 deletions

View File

@ -206,14 +206,14 @@ static const char* curr_expected_modules[] =
{ {
"kernel32_test.exe" "kernel32_test.exe"
"kernel32.dll", "kernel32.dll",
/* FIXME: could test for ntdll on NT and Wine */ "ntdll.dll",
}; };
static const char* sub_expected_modules[] = static const char* sub_expected_modules[] =
{ {
"kernel32_test.exe", "kernel32_test.exe",
"kernel32.dll", "kernel32.dll",
"shell32.dll" "shell32.dll",
/* FIXME: could test for ntdll on NT and Wine */ "ntdll.dll",
}; };
#define NUM_OF(x) (sizeof(x) / sizeof(x[0])) #define NUM_OF(x) (sizeof(x) / sizeof(x[0]))