rpcrt4: Trace the results of two statuses that return different results across platforms.

This commit is contained in:
James Hawkins 2008-05-26 00:21:16 -05:00 committed by Alexandre Julliard
parent f2aa3259b9
commit 3978df4e52
1 changed files with 4 additions and 0 deletions

View File

@ -643,6 +643,10 @@ static void test_I_RpcExceptionFilter(void)
ok(retval == EXCEPTION_CONTINUE_SEARCH, "I_RpcExceptionFilter(0x%x) should have returned %d instead of %d\n",
exception, EXCEPTION_CONTINUE_SEARCH, retval);
break;
case STATUS_IN_PAGE_ERROR:
case STATUS_HANDLE_NOT_CLOSABLE:
trace("I_RpcExceptionFilter(0x%x) returned %d\n", exception, retval);
break;
default:
ok(retval == EXCEPTION_EXECUTE_HANDLER, "I_RpcExceptionFilter(0x%x) should have returned %d instead of %d\n",
exception, EXCEPTION_EXECUTE_HANDLER, retval);