Commit ed4e0a08 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

kernel32: Remove a test that fails on all platforms.

parent 2289717a
...@@ -470,8 +470,6 @@ static void test_Startup(void) ...@@ -470,8 +470,6 @@ static void test_Startup(void)
GetStartupInfoA(&si); GetStartupInfoA(&si);
okChildInt("StartupInfoA", "cb", startup.cb); okChildInt("StartupInfoA", "cb", startup.cb);
okChildString("StartupInfoA", "lpDesktop", si.lpDesktop); okChildString("StartupInfoA", "lpDesktop", si.lpDesktop);
ok (si.lpTitle == NULL || !strncmp(si.lpTitle, selfname, strlen(selfname)),
"StartupInfoA:lpTitle expected something starting with '%s' or null, got '%s'\n", selfname, si.lpTitle);
okChildInt("StartupInfoA", "dwX", startup.dwX); okChildInt("StartupInfoA", "dwX", startup.dwX);
okChildInt("StartupInfoA", "dwY", startup.dwY); okChildInt("StartupInfoA", "dwY", startup.dwY);
okChildInt("StartupInfoA", "dwXSize", startup.dwXSize); okChildInt("StartupInfoA", "dwXSize", startup.dwXSize);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment