Re: kernel32/tests: test that GetModuleFileName returns an absolute path
Thomas Faber <thfabba(a)gmx.de> wrote:
diff --git a/dlls/kernel32/tests/Makefile.in b/dlls/kernel32/tests/Makefile.in index dce27db..2ce3ec6 100644 --- a/dlls/kernel32/tests/Makefile.in +++ b/dlls/kernel32/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = kernel32.dll -IMPORTS = user32 advapi32 +IMPORTS = user32 advapi32 shlwapi
Adding a shlwapi dependency to the kernel32 test suite is not a good idea, please find a way to avoid it. -- Dmitry.
On 2011-12-25 17:12, Dmitry Timoshkov wrote:
Thomas Faber <thfabba(a)gmx.de> wrote:
diff --git a/dlls/kernel32/tests/Makefile.in b/dlls/kernel32/tests/Makefile.in index dce27db..2ce3ec6 100644 --- a/dlls/kernel32/tests/Makefile.in +++ b/dlls/kernel32/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = kernel32.dll -IMPORTS = user32 advapi32 +IMPORTS = user32 advapi32 shlwapi
Adding a shlwapi dependency to the kernel32 test suite is not a good idea, please find a way to avoid it.
Hmm okay. I'll just use strchr(path, '\\') as a substitute for PathIsRelative then, though that's not as accurate of course. Thanks. -Tom
participants (2)
-
Dmitry Timoshkov -
Thomas Faber