36#define STDOUT_FILENO 1
37#define STDERR_FILENO 2
46 ok(dup_fd != -1,
"_dup failed\n");
59 ok(
ret == 4,
"fprintf(stdout) returned %d\n",
ret);
60 ok(!
pos,
"expected stdout to be buffered\n");
63 ok(dup_fd != -1,
"_dup failed\n");
69 ok(
ret == 4,
"fprintf(stderr) returned %d\n",
ret);
72 trace(
"stderr is buffered\n");
74 ok(
pos == 4,
"expected stderr to be unbuffered (%d)\n",
pos);
81 ok(dup_fd != -1,
"_dup failed\n");
88 ok(
ret == 1,
"fscanf returned %d\n",
ret);
89 ok(ch ==
't',
"ch = 0x%x\n", (
unsigned char)ch);
97 ok(
DeleteFileA(
"std_stream_test.tmp"),
"DeleteFile failed\n");
119 char *tempf, *
ptr, **file_ptr, **file_base;
120 int cnt,
r, *file_cnt;
123 fp.f =
fopen(tempf,
"wb");
124 ok(fp.f !=
NULL,
"fopen failed with error: %d\n",
errno);
126 ok(!(fp.iobuf->_flag & 0x440),
"fp.iobuf->_flag = %x\n", fp.iobuf->_flag);
128 ok(
r == 4,
"fprintf returned %d\n",
r);
129 ok(fp.iobuf->_flag & 0x40,
"fp.iobuf->_flag = %x\n", fp.iobuf->_flag);
130 ok(fp.iobuf->_cnt + 4 == fp.iobuf->_bufsiz,
"_cnt = %d, _bufsiz = %d\n",
131 fp.iobuf->_cnt, fp.iobuf->_bufsiz);
133 ptr = fp.iobuf->_ptr;
134 cnt = fp.iobuf->_cnt;
136 ok(
r == 5,
"fprintf returned %d\n",
r);
137 ok(
ptr + 5 == fp.iobuf->_ptr,
"fp.iobuf->_ptr = %p, expected %p\n", fp.iobuf->_ptr,
ptr + 5);
138 ok(
cnt - 5 == fp.iobuf->_cnt,
"fp.iobuf->_cnt = %d, expected %d\n", fp.iobuf->_cnt,
cnt - 5);
139 ok(fp.iobuf->_ptr + fp.iobuf->_cnt == fp.iobuf->_base + fp.iobuf->_bufsiz,
140 "_ptr = %p, _cnt = %d, _base = %p, _bufsiz = %d\n",
141 fp.iobuf->_ptr, fp.iobuf->_cnt, fp.iobuf->_base, fp.iobuf->_bufsiz);
144 ok(file_base == &fp.iobuf->_base,
"_base = %p, expected %p\n", file_base, &fp.iobuf->_base);
145 ok(file_ptr == &fp.iobuf->_ptr,
"_ptr = %p, expected %p\n", file_ptr, &fp.iobuf->_ptr);
146 ok(file_cnt == &fp.iobuf->_cnt,
"_cnt = %p, expected %p\n", file_cnt, &fp.iobuf->_cnt);
149 ok(!
r,
"setvbuf returned %d\n",
r);
150 ok(fp.iobuf->_flag & 0x400,
"fp.iobuf->_flag = %x\n", fp.iobuf->_flag);
165 ok(
fd != -1,
"_dup failed\n");
186 static const struct {
190 {
"German.utf8",
"t\xc3\xa4\xc3\x8f\xc3\xb6\xc3\x9f.txt" },
191 {
"Polish.utf8",
"t\xc4\x99\xc5\x9b\xc4\x87.txt" },
192 {
"Turkish.utf8",
"t\xc3\x87\xc4\x9e\xc4\xb1\xc4\xb0\xc5\x9e.txt" },
193 {
"Arabic.utf8",
"t\xd8\xaa\xda\x86.txt" },
194 {
"Japanese.utf8",
"t\xe3\x82\xaf\xe3\x83\xa4.txt" },
195 {
"Chinese.utf8",
"t\xe4\xb8\x82\xe9\xbd\xab.txt" },
196 {
"Japanese",
"t\xb8\xd5.txt" },
211 ok(!!
f,
"failed to create %s with locale %s\n",
216 ok(!!
f,
"failed to open %s with locale %s\n",
228 const char file[] =
"file\xc4\x99\xc5\x9b\xc4\x87.a";
229 const char dir[] =
"dir\xc4\x99\xc5\x9b\xc4\x87";
231 const WCHAR dirW[] =
L"dir\x0119\x015b\x0107";
233 char file2[32],
buf[256], *
p, *
q, *
env[2];
236 struct _finddata64_t fdata64;
238 WCHAR bufW[256], *pW;
252 skip(
"can't create test environment\n");
261 ok(
p ==
buf,
"_getcwd returned %p, errno %d\n",
p,
errno);
267 ok(
p ==
buf,
"_getdcwd returned %p, errno %d\n",
p,
errno);
273 ok(
p ==
buf,
"_fulpath returned %p, errno %d\n",
p,
errno);
279 ok(!!
f,
"fopen returned %d, error %d\n",
ret,
errno);
294 ok(
p == file2,
"_mktemp returned %p, file2 %p, errno %d\n",
p, file2,
errno);
298 ok(!!
f,
"fopen returned %d, error %d\n",
ret,
errno);
304 ok(
p ==
buf,
"_mktemp returned %p, buf %p, errno %d\n",
p,
buf,
errno);
316 fdata32.
name[0] =
'x';
318 ok(hfind != -1,
"_findfirst32 returned %Id, errno %d\n", hfind,
errno);
321 fdata32.
name[0] =
'x';
331 fdata64.name[0] =
'x';
333 ok(hfind != -1,
"_findfirst64 returned %Id, errno %d\n", hfind,
errno);
336 fdata64.name[0] =
'x';
345 fdata64i32.
name[0] =
'x';
347 ok(hfind != -1,
"_findfirst64i32 returned %Id, errno %d\n", hfind,
errno);
350 fdata64i32.
name[0] =
'x';
352 ok(!
ret,
"_findnext64i32 returned %d, errno %d\n",
ret,
errno);
376 ok(!!
p,
"_tempnam returned NULL, error %d\n",
errno);
397 ok(!pW,
"environment variable name was converted\n");
418 wcscpy(bufW,
L"__wine_env_test=");
434 ok(hproc != -1,
"_spawnl returned %Id, errno %d\n", hproc,
errno);
443 static const WCHAR nameW[] =
L"file\x0119\x015b\x0107.a";
466 if(arg_c == 4 && !
strcmp(arg_v[2],
"utf8"))
int strcmp(const char *String1, const char *String2)
int memcmp(void *Buffer1, void *Buffer2, ACPI_SIZE Count)
static const WCHAR nameW[]
_Check_return_ _CRTIMP int __cdecl _getdrive(void)
_Check_return_ _Ret_opt_z_ _CRTIMP char *__cdecl _getcwd(_Out_writes_opt_(_SizeInBytes) char *_DstBuf, _In_ int _SizeInBytes)
_Check_return_ _CRTIMP int __cdecl _wrmdir(_In_z_ const wchar_t *_Path)
_Check_return_ _Ret_opt_z_ _CRTIMP char *__cdecl _getdcwd(_In_ int _Drive, _Out_writes_opt_(_SizeInBytes) char *_DstBuf, _In_ int _SizeInBytes)
_Check_return_ _CRTIMP int __cdecl _chdir(_In_z_ const char *_Path)
_Check_return_ _CRTIMP int __cdecl _mkdir(_In_z_ const char *_Path)
static LPCWSTR LPCWSTR LPCWSTR env
#define GetEnvironmentVariableW(x, y, z)
#define GetProcAddress(x, y)
#define MultiByteToWideChar
BOOL WINAPI DeleteFileA(IN LPCSTR lpFileName)
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR lpModuleName)
LPWSTR WINAPI GetCommandLineW(VOID)
static const WCHAR fileW[]
int __cdecl _findnext64i32(intptr_t const handle, _finddata64i32_t *const result)
intptr_t __cdecl _findfirst64i32(char const *const pattern, _finddata64i32_t *const result)
intptr_t __cdecl _findfirst64(char const *const pattern, __finddata64_t *const result)
int __cdecl _findnext64(intptr_t const handle, __finddata64_t *const result)
GLdouble GLdouble GLdouble r
GLdouble GLdouble GLdouble GLdouble q
GLenum GLuint GLenum GLsizei const GLchar * buf
GLuint GLint GLboolean GLint GLenum access
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
#define MB_ERR_INVALID_CHARS
_CRTIMP unsigned int __cdecl ___lc_codepage_func(void)
_Check_return_ _CRTIMP FILE *__cdecl freopen(_In_z_ const char *_Filename, _In_z_ const char *_Mode, _Inout_ FILE *_File)
_Check_return_ _CRTIMP char *__cdecl _tempnam(_In_opt_z_ const char *_DirName, _In_opt_z_ const char *_FilePrefix)
_Check_return_ _CRTIMP int __cdecl _fileno(_In_ FILE *_File)
_Check_return_ _CRTIMP FILE *__cdecl _wfsopen(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode, _In_ int _ShFlag)
_Check_return_ _CRTIMP int __cdecl fscanf(_Inout_ FILE *_File, _In_z_ _Scanf_format_string_ const char *_Format,...)
_Check_return_opt_ _CRTIMP int __cdecl fprintf(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const char *_Format,...)
_Check_return_opt_ _CRTIMP int __cdecl fflush(_Inout_opt_ FILE *_File)
_Check_return_ _CRTIMP FILE *__cdecl fopen(_In_z_ const char *_Filename, _In_z_ const char *_Mode)
_Check_return_opt_ _CRTIMP int __cdecl fclose(_Inout_ FILE *_File)
_Check_return_ _CRTIMP FILE *__cdecl _fsopen(_In_z_ const char *_Filename, _In_z_ const char *_Mode, _In_ int _ShFlag)
_Check_return_opt_ _CRTIMP int __cdecl setvbuf(_Inout_ FILE *_File, _Inout_updates_opt_z_(_Size) char *_Buf, _In_ int _Mode, _In_ size_t _Size)
_Check_return_ _CRTIMP char *__cdecl _fullpath(_Out_writes_opt_z_(_SizeInBytes) char *_FullPath, _In_z_ const char *_Path, _In_ size_t _SizeInBytes)
_Check_return_ _CRTIMP int __cdecl _wputenv(_In_z_ const wchar_t *_EnvString)
_Check_return_ _CRTIMP wchar_t *__cdecl _wgetenv(_In_z_ const wchar_t *_VarName)
_Check_return_ _CRTIMP int __cdecl _putenv(_In_z_ const char *_EnvString)
_CRTIMP void __cdecl _searchenv(_In_z_ const char *_Filename, _In_z_ const char *_EnvVar, _Pre_notnull_ _Post_z_ char *_ResultPath)
_Check_return_ char *__cdecl getenv(_In_z_ const char *_VarName)
errno_t __cdecl _mktemp_s(char *const template_string, size_t const buffer_size_in_chars)
static struct test_info tests[]
static void test_std_stream_buffering(void)
static void test_std_stream_open(void)
static void test_fopen(void)
static void test_utf8_argument(void)
static void test_utf8(const char *argv0)
int CDECL _get_stream_buffer_pointers(FILE *, char ***, char ***, int **)
static void test_iobuf_layout(void)
_Check_return_ _CRTIMP int __cdecl _wunlink(_In_z_ const wchar_t *_Filename)
_Check_return_ _CRTIMP int __cdecl _chmod(_In_z_ const char *_Filename, _In_ int _Mode)
_Check_return_ _CRTIMP char *__cdecl _mktemp(_Inout_z_ char *_TemplateName)
_Check_return_ _CRTIMP int __cdecl _findnext32(_In_ intptr_t _FindHandle, _Out_ struct _finddata32_t *_FindData)
_Check_return_ _CRTIMP intptr_t __cdecl _findfirst32(_In_z_ const char *_Filename, _Out_ struct _finddata32_t *_FindData)
_Check_return_ _CRTIMP int __cdecl _dup2(_In_ int _FileHandleSrc, _In_ int _FileHandleDst)
_Check_return_ _CRTIMP int __cdecl _dup(_In_ int _FileHandle)
_Check_return_opt_ _CRTIMP int __cdecl _findclose(_In_ intptr_t _FindHandle)
_CRTIMP intptr_t __cdecl _spawnle(_In_ int _Mode, _In_z_ const char *_Filename, _In_z_ const char *_ArgList,...)
_Check_return_ _CRTIMP int __cdecl wcscmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
_CRT_RESTORE_GCC_WARNINGS _CRT_DISABLE_GCC_WARNINGS _Check_return_ _CRTIMP _CONST_RETURN char *__cdecl strrchr(_In_z_ const char *_Str, _In_ int _Ch)
int winetest_get_mainargs(char ***pargv)
#define wait_child_process
__int64 CDECL _telli64(int fd)
static char argv0[MAX_PATH]
DWORD WINAPI GetLastError(void)
BOOL WINAPI TryEnterCriticalSection(LPCRITICAL_SECTION)
void WINAPI LeaveCriticalSection(LPCRITICAL_SECTION)