user32/tests: Skip DDE tests on win9x.
This commit is contained in:
parent
6fcca28b07
commit
7e5da86076
|
@ -2043,12 +2043,6 @@ static void test_DdeCreateStringHandle(void)
|
||||||
dde_inst = 0xdeadbeef;
|
dde_inst = 0xdeadbeef;
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
ret = DdeInitializeW(&dde_inst, client_ddeml_callback, APPCMD_CLIENTONLY, 0);
|
ret = DdeInitializeW(&dde_inst, client_ddeml_callback, APPCMD_CLIENTONLY, 0);
|
||||||
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
||||||
{
|
|
||||||
win_skip("DdeInitializeW is unimplemented\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ok(ret == DMLERR_INVALIDPARAMETER, "DdeInitializeW should fail, but got %04x instead\n", ret);
|
ok(ret == DMLERR_INVALIDPARAMETER, "DdeInitializeW should fail, but got %04x instead\n", ret);
|
||||||
ok(DdeGetLastError(dde_inst) == DMLERR_INVALIDPARAMETER, "expected DMLERR_INVALIDPARAMETER\n");
|
ok(DdeGetLastError(dde_inst) == DMLERR_INVALIDPARAMETER, "expected DMLERR_INVALIDPARAMETER\n");
|
||||||
|
|
||||||
|
@ -2696,6 +2690,7 @@ START_TEST(dde)
|
||||||
char buffer[MAX_PATH];
|
char buffer[MAX_PATH];
|
||||||
STARTUPINFO startup;
|
STARTUPINFO startup;
|
||||||
PROCESS_INFORMATION proc;
|
PROCESS_INFORMATION proc;
|
||||||
|
DWORD dde_inst = 0xdeadbeef;
|
||||||
|
|
||||||
argc = winetest_get_mainargs(&argv);
|
argc = winetest_get_mainargs(&argv);
|
||||||
if (argc == 3)
|
if (argc == 3)
|
||||||
|
@ -2714,6 +2709,14 @@ START_TEST(dde)
|
||||||
|
|
||||||
test_initialisation();
|
test_initialisation();
|
||||||
|
|
||||||
|
SetLastError(0xdeadbeef);
|
||||||
|
DdeInitializeW(&dde_inst, client_ddeml_callback, APPCMD_CLIENTONLY, 0);
|
||||||
|
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
||||||
|
{
|
||||||
|
win_skip("Skipping tests on win9x because of brokenness\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ZeroMemory(&startup, sizeof(STARTUPINFO));
|
ZeroMemory(&startup, sizeof(STARTUPINFO));
|
||||||
sprintf(buffer, "%s dde ddeml", argv[0]);
|
sprintf(buffer, "%s dde ddeml", argv[0]);
|
||||||
startup.cb = sizeof(startup);
|
startup.cb = sizeof(startup);
|
||||||
|
|
Loading…
Reference in New Issue