Commit 1c95001f authored by Alexandre Julliard's avatar Alexandre Julliard

d3dx9/tests: Mark failing tests as todo.

Triggered by the vkd3d 1.11 import.
parent 27b22fed
......@@ -8041,6 +8041,7 @@ static void test_create_effect_from_file(void)
/* This is apparently broken on native, it ends up using the wrong include. */
hr = D3DXCreateEffectFromFileExW(device, filename_w, NULL, NULL, NULL,
0, NULL, &effect, &messages);
todo_wine
ok(hr == E_FAIL, "Unexpected error, hr %#lx.\n", hr);
if (messages)
{
......@@ -8066,6 +8067,7 @@ static void test_create_effect_from_file(void)
* is "ID3DXEffectCompiler: There were no techniques" */
hr = D3DXCreateEffectFromFileExW(device, filename_w, NULL, &include.ID3DXInclude_iface, NULL,
0, NULL, &effect, &messages);
todo_wine
ok(hr == E_FAIL, "D3DXInclude test failed with error %#lx.\n", hr);
if (messages)
{
......
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