Commit 61a12130 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msvcrt/tests: Don't test function directly when reporting errno.

parent f28324a6
......@@ -197,12 +197,14 @@ static void test___getmainargs_parent(char *name)
STARTUPINFO startup;
PROCESS_INFORMATION proc;
FILE *f;
int ret;
ok(GetTempPathA(MAX_PATH, tmppath) != 0, "GetTempPath failed\n");
sprintf(cmdline, "%s data %s*\\* %swine_test/*", name, tmppath, tmppath);
sprintf(filepath, "%swine_test", tmppath);
ok(!_mkdir(filepath), "_mkdir failed: %d\n", errno);
ret = _mkdir(filepath);
ok(!ret, "_mkdir failed: %d\n", errno);
sprintf(filepath, "%swine_test\\a", tmppath);
f = fopen(filepath, "w");
ok(f != NULL, "fopen(%s) failed: %d\n", filepath, errno);
......
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