Commit 5c5e6a5f authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

usp10/tests: Remove a test for a bug corrected in later versions of usp10.

The undocumented interaction with ScriptStringCPtoX causing ScriptStringFree is an undocumented bug that appears to have been fixed in later versions of Uniscribe. We should not be trying to conform to that.
parent 660ead08
......@@ -1388,13 +1388,7 @@ static void test_ScriptStringXtoCP_CPtoX(HDC hdc)
hr = ScriptStringCPtoX(ssa, Cp, fTrailing, &X);
ok(hr == E_INVALIDARG, "ScriptStringCPtoX should return E_INVALIDARG not %08x\n", hr);
hr = ScriptStringFree(&ssa);
/*
* ScriptStringCPtoX should free ssa, hence ScriptStringFree should fail
*/
ok(hr == E_INVALIDARG ||
hr == E_FAIL, /* win2k3 */
"ScriptStringFree should return E_INVALIDARG or E_FAIL not %08x\n", hr);
ScriptStringFree(&ssa);
}
}
......
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