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>
(cherry picked from commit 6584733327)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
Piotr Caban 2021-10-18 14:57:29 +02:00 committed by Michael Stefaniuc
parent b690f67231
commit 56b6abd5ea
1 changed files with 8 additions and 7 deletions

View File

@ -1377,17 +1377,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);
@ -1414,7 +1415,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);
}