mscoree/tests: Mark a weird w2k3 result as broken.

This commit is contained in:
André Hentschel 2011-06-07 22:31:40 +02:00 committed by Alexandre Julliard
parent b70aeabcc8
commit 53218eb50b
1 changed files with 2 additions and 1 deletions

View File

@ -287,7 +287,8 @@ static void test_createconfigstream(void)
hr = pCreateConfigStream(NULL, &stream);
todo_wine ok(hr == E_FAIL ||
broken(hr == HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND)), /* some WinXP, Win2K3 and Win7 */
broken(hr == HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND)) || /* some WinXP, Win2K3 and Win7 */
broken(hr == S_OK && !stream), /* some Win2K3 */
"CreateConfigStream returned %x\n", hr);
hr = pCreateConfigStream(path, NULL);