Module: wine Branch: master Commit: 1c95001f8f383061b4e7495b338dfccd9726c8c0 URL: https://gitlab.winehq.org/wine/wine/-/commit/1c95001f8f383061b4e7495b338dfcc...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Mar 7 20:49:46 2024 +0100
d3dx9/tests: Mark failing tests as todo.
Triggered by the vkd3d 1.11 import.
---
dlls/d3dx9_36/tests/effect.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/d3dx9_36/tests/effect.c b/dlls/d3dx9_36/tests/effect.c index 3a6bd465df5..5420501c92f 100644 --- a/dlls/d3dx9_36/tests/effect.c +++ b/dlls/d3dx9_36/tests/effect.c @@ -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) {