mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[KERNEL32_APITEST] -Keep improving the skip checks.
svn path=/trunk/; revision=73508
This commit is contained in:
parent
7475839d64
commit
9624a5e18b
1 changed files with 3 additions and 3 deletions
|
@ -272,7 +272,7 @@ START_TEST(FindActCtxSectionStringW)
|
|||
|
||||
/* Class redirection tests */
|
||||
h = _CreateActCtxFromFile(L"classtest.manifest", __LINE__);
|
||||
if (h)
|
||||
if (h != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
_ActivateCtx(h, &cookie, __LINE__);
|
||||
TestClassRedirection(h, L"Button", L"2.2.2.2!Button", L"testlib.dll", 5);
|
||||
|
@ -285,7 +285,7 @@ START_TEST(FindActCtxSectionStringW)
|
|||
|
||||
/* Dependency tests */
|
||||
h = _CreateActCtxFromFile(L"deptest.manifest", __LINE__);
|
||||
if (h)
|
||||
if (h != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
_ActivateCtx(h, &cookie, __LINE__);
|
||||
TestLibDependency(h);
|
||||
|
@ -298,7 +298,7 @@ START_TEST(FindActCtxSectionStringW)
|
|||
|
||||
/* Activate a context that depends on comctl32 v6 and run class tests again */
|
||||
h = _CreateActCtxFromFile(L"comctl32dep.manifest", __LINE__);
|
||||
if (h)
|
||||
if (h != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
_ActivateCtx(h, &cookie, __LINE__);
|
||||
TestClassRedirection(h, L"Button", L"6.0.3790.1830!Button", L"comctl32.dll", 29);
|
||||
|
|
Loading…
Reference in a new issue