ucrtbase: Fix fopen x mode test failures.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51894 Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
992e0a6045
commit
6584733327
|
@ -1545,17 +1545,18 @@ static void test_fopen_exclusive( void )
|
|||
DWORD len;
|
||||
FILE *fp;
|
||||
|
||||
if (!GetProcAddress(GetModuleHandleA("ucrtbase.dll"), "__std_terminate"))
|
||||
{
|
||||
win_skip("skipping fopen x mode tests.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
len = GetTempPathA(MAX_PATH, path);
|
||||
ok(len, "GetTempPathA failed\n");
|
||||
strcat(path, "\\fileexcl.tst");
|
||||
|
||||
SET_EXPECT(global_invalid_parameter_handler);
|
||||
fp = fopen(path, "wx");
|
||||
if(called_global_invalid_parameter_handler)
|
||||
{
|
||||
win_skip("skipping fopen x mode tests.\n");
|
||||
return;
|
||||
}
|
||||
expect_global_invalid_parameter_handler = FALSE;
|
||||
ok(fp != NULL, "creating file with mode wx failed\n");
|
||||
fclose(fp);
|
||||
|
||||
|
@ -1582,7 +1583,7 @@ static void test_fopen_exclusive( void )
|
|||
ok(!fp, "creating file with mode xw succeeded\n");
|
||||
|
||||
fp = fopen(path, "wbx");
|
||||
ok(fp != NULL, "creating file with mode wx failed\n");
|
||||
ok(fp != NULL, "creating file with mode wbx failed\n");
|
||||
fclose(fp);
|
||||
unlink(path);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue