Commit 6cf8602e authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

Comment out a test that crashes on early versions.

parent db66ec0e
......@@ -224,11 +224,14 @@ static void test_MRUListA(void)
iRet, GetLastError());
/* Add (NULL string) */
#if 0
/* Some native versions crash when passed NULL or fail to SetLastError() */
SetLastError(0);
iRet = pAddMRUStringA(hMRU, NULL);
ok(iRet == 0 && GetLastError() == ERROR_INVALID_PARAMETER,
"AddMRUStringA(NULL str) expected 0,ERROR_INVALID_PARAMETER got %d,%ld\n",
iRet, GetLastError());
#endif
/* Add 3 strings. Check the registry is correct after each add */
SetLastError(0);
......
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