user32/tests: Skip some tests on Win9x/WinMe.
This commit is contained in:
parent
ddd255cb08
commit
429bf7e0e2
|
@ -2390,6 +2390,15 @@ START_TEST(dde)
|
||||||
|
|
||||||
test_end_to_end_server(proc.hProcess, proc.hThread, TRUE);
|
test_end_to_end_server(proc.hProcess, proc.hThread, TRUE);
|
||||||
|
|
||||||
|
/* Don't bother testing W interfaces on Win9x/WinMe */
|
||||||
|
SetLastError(0xdeadbeef);
|
||||||
|
lstrcmpW(NULL, NULL);
|
||||||
|
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
||||||
|
{
|
||||||
|
win_skip("Skipping W-interface tests\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
sprintf(buffer, "%s dde endw", argv[0]);
|
sprintf(buffer, "%s dde endw", argv[0]);
|
||||||
CreateProcessA(NULL, buffer, NULL, NULL, FALSE,
|
CreateProcessA(NULL, buffer, NULL, NULL, FALSE,
|
||||||
CREATE_SUSPENDED, NULL, NULL, &startup, &proc);
|
CREATE_SUSPENDED, NULL, NULL, &startup, &proc);
|
||||||
|
@ -2407,6 +2416,7 @@ START_TEST(dde)
|
||||||
CREATE_SUSPENDED, NULL, NULL, &startup, &proc);
|
CREATE_SUSPENDED, NULL, NULL, &startup, &proc);
|
||||||
|
|
||||||
test_end_to_end_server(proc.hProcess, proc.hThread, TRUE);
|
test_end_to_end_server(proc.hProcess, proc.hThread, TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
test_dde_aw_transaction();
|
test_dde_aw_transaction();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue