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

This commit is contained in:
André Hentschel 2012-12-19 20:33:23 +01:00 committed by Alexandre Julliard
parent f28324a69c
commit 61a1213078
1 changed files with 3 additions and 1 deletions

View File

@ -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);