winetest: Sill output an entry for a dll when it's skipped entirely.
This commit is contained in:
parent
17e2cbd4dc
commit
6d8a19def4
|
@ -708,19 +708,20 @@ extract_test_proc (HMODULE hModule, LPCTSTR lpszType,
|
||||||
ULONG_PTR cookie;
|
ULONG_PTR cookie;
|
||||||
|
|
||||||
if (aborting) return TRUE;
|
if (aborting) return TRUE;
|
||||||
|
|
||||||
|
/* Check if the main dll is present on this system */
|
||||||
|
CharLowerA(lpszName);
|
||||||
|
strcpy(dllname, lpszName);
|
||||||
|
*strstr(dllname, testexe) = 0;
|
||||||
|
|
||||||
if (test_filtered_out( lpszName, NULL ))
|
if (test_filtered_out( lpszName, NULL ))
|
||||||
{
|
{
|
||||||
nr_of_skips++;
|
nr_of_skips++;
|
||||||
|
xprintf (" %s=skipped\n", dllname);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
CharLowerA(lpszName);
|
|
||||||
extract_test (&wine_tests[nr_of_files], tempdir, lpszName);
|
extract_test (&wine_tests[nr_of_files], tempdir, lpszName);
|
||||||
|
|
||||||
/* Check if the main dll is present on this system */
|
|
||||||
strcpy(dllname, lpszName);
|
|
||||||
*strstr(dllname, testexe) = 0;
|
|
||||||
|
|
||||||
if (pCreateActCtxA != NULL && pActivateActCtx != NULL &&
|
if (pCreateActCtxA != NULL && pActivateActCtx != NULL &&
|
||||||
pDeactivateActCtx != NULL && pReleaseActCtx != NULL)
|
pDeactivateActCtx != NULL && pReleaseActCtx != NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue