Re: [PATCH] comdlg32/tests: Accept win8 failure-code
13 Dec
2012
13 Dec
'12
6:06 a.m.
Detlef Riekenberg <wine.dev(a)web.de> wrote:
- ok(hr == E_FAIL, "got 0x%08x.\n", hr); + /* win8: E_NOTIMPL */ + ok(hr == E_FAIL || hr == E_NOTIMPL, "got 0x%08x.\n", hr);
A usual form for such comparisons is ok(hr == E_FAIL || hr == E_NOTIMPL /* win8 */, "got 0x%08x.\n", hr); that helps to avoid redundant and duplicating information. -- Dmitry.
4750
Age (days ago)
4750
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov