27#define DEFINE_EXPECT(func) \
28 static BOOL expect_ ## func = FALSE, called_ ## func = FALSE
30#define SET_EXPECT(func) \
31 expect_ ## func = TRUE
33#define CHECK_EXPECT2(func) \
35 ok(expect_ ##func, "unexpected call " #func "\n"); \
36 called_ ## func = TRUE; \
39#define CHECK_EXPECT(func) \
41 CHECK_EXPECT2(func); \
42 expect_ ## func = FALSE; \
45#define CHECK_CALLED(func) \
47 ok(called_ ## func, "expected " #func "\n"); \
48 expect_ ## func = called_ ## func = FALSE; \
55 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/;"
56 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/;"
57 "/mingw/lib/gcc/mingw32/3.4.2/;"
58 "/usr/lib/gcc/mingw32/3.4.2/;"
59 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../../mingw32/lib/mingw32/3.4.2/;"
60 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../../mingw32/lib/;"
61 "/mingw/mingw32/lib/mingw32/3.4.2/;"
62 "/mingw/mingw32/lib/;"
63 "/mingw/lib/mingw32/3.4.2/;"
65 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../mingw32/3.4.2/;"
66 "C:/Program Files/GLBasic/Compiler/platform/Win32/Bin/../lib/gcc/mingw32/3.4.2/../../../;"
67 "/mingw/lib/mingw32/3.4.2/;"
69 "/lib/mingw32/3.4.2/;"
71 "/usr/lib/mingw32/3.4.2/;"
79static errno_t (
__cdecl *p_wputenv_s)(
const wchar_t*,
const wchar_t*);
86 const wchar_t *function,
const wchar_t *
file,
90 ok(expression ==
NULL,
"expression is not NULL\n");
91 ok(function ==
NULL,
"function is not NULL\n");
113 skip(
"NULL pointers for environment\n" );
152 ok(
_putenv(
"cat=" ) == 0,
"_putenv failed on deletion of nonexistent environment variable\n" );
153 ok(
_putenv(
"cat=dog" ) == 0,
"failed setting cat=dog\n" );
154 ok(
strcmp(
getenv(
"cat" ),
"dog" ) == 0,
"getenv did not return 'dog'\n" );
158 ok( !
ret,
"getenv_s returned %d\n",
ret );
159 ok(
len == 4,
"getenv_s returned length is %Id\n",
len);
160 ok( !
strcmp(
buf,
"dog"),
"getenv_s did not return 'dog'\n" );
162 ok(
_putenv(
"cat=") == 0,
"failed deleting cat\n" );
164 ok(
_putenv(
"=") == -1,
"should not accept '=' as input\n" );
165 ok(
_putenv(
"=dog") == -1,
"should not accept '=dog' as input\n" );
168 ok(
getenv(
"nonexistent") ==
NULL,
"getenv should fail with nonexistent var name\n" );
173 ret = p_putenv_s(
NULL,
"dog" );
177 ret = p_putenv_s(
"cat",
NULL );
181 ret = p_putenv_s(
"a=b",
NULL );
184 ret = p_putenv_s(
"cat",
"a=b" );
185 ok( !
ret,
"_putenv_s returned %d\n",
ret );
186 ret = p_putenv_s(
"cat",
"" );
187 ok( !
ret,
"_putenv_s returned %d\n",
ret );
204 ret = p_wputenv_s(
L"cat",
L"a=b" );
205 ok( !
ret,
"_wputenv_s returned %d\n",
ret );
206 ret = p_wputenv_s(
L"cat",
L"" );
207 ok( !
ret,
"_wputenv_s returned %d\n",
ret );
215 ret = p_getenv_s( &
len,
buf,
sizeof(
buf),
"nonexistent" );
216 ok( !
ret,
"_getenv_s returned %d\n",
ret );
217 ok( !
len,
"getenv_s returned length is %Id\n",
len );
225 ok( !
ret,
"_getenv_s returned %d\n",
ret );
226 ok( !
len,
"getenv_s returned length is %Id\n",
len );
232 ok(
_putenv(
"__winetest_cat=" ) == 0,
"Couldn't reset env var\n" );
233 ok(
_putenv(
"__winetest_dog=" ) == 0,
"Couldn't reset env var\n" );
235 ok(
_putenv(
"__winetest_cat=mew") == 0,
"Couldn't set env var\n" );
238 ok(
getenv(
"__winetest_cat") ==
strchr( (*
p_environ)[
count],
'=') + 1,
"Expected getenv() to return pointer inside _environ[] entry\n" );
239 ok(
_putenv(
"__winetest_dog=bark" ) == 0,
"Couldn't set env var\n" );
241 ok(
getenv(
"__winetest_dog" ) ==
strchr( (*
p_environ)[
count + 1],
'=' ) + 1,
"Expected getenv() to return pointer inside _environ[] entry\n" );
243 second = (*p_environ)[
count + 1];
246 ok(
_putenv(
"__winetest_cat=purr" ) == 0,
"Couldn't set env var\n" );
248 ok(
getenv(
"__winetest_cat" ) ==
strchr( (*
p_environ)[
count],
'=' ) + 1,
"Expected getenv() to return pointer inside _environ[] entry\n" );
249 ok( second == (*
p_environ)[
count + 1],
"Expected stability of _environ[count] pointer\n" );
251 ok(
getenv(
"__winetest_dog" ) ==
strchr( (*
p_environ)[
count + 1],
'=' ) + 1,
"Expected getenv() to return pointer inside _environ[] entry\n" );
253 ok(
_putenv(
"__winetest_cat=" ) == 0,
"Couldn't reset env vat\n" );
254 ok( second == (*
p_environ)[
count],
"Expected _environ[count] to be second\n" );
257 ok(
_putenv(
"__winetest_dog=" ) == 0,
"Couldn't reset env var\n" );
263 ok(
_putenv(
"__winetest_dog=bark" ) == 0,
"Couldn't set env var\n" );
264 ok(
getenv(
"__winetest_cat" ) ==
NULL,
"msvcrt env cache shouldn't have been updated\n" );
265 ok(
_putenv(
"__winetest_cat=" ) == 0,
"Couldn't reset env var\n" );
266 ok(
_putenv(
"__winetest_dog=" ) == 0,
"Couldn't reset env var\n" );
272 ok(
_wputenv(
L"__winetest_cat=\u263a" ) == 0,
"Couldn't set env var\n" );
275 ok(
_wputenv(
L"__winetest_cat=" ) == 0,
"Couldn't reset env var\n" );
279 ok(
_wputenv(
L"__winetest_\u263a=bark" ) == 0,
"Couldn't set env var\n" );
282 ok(
_wputenv(
L"__winetest_\u263a=" ) == 0,
"Couldn't reset env var\n" );
296 ok( cur_env !=
NULL,
"GetEnvironemntStrings failed\n" );
306 wcscpy(
q,
L"__winetest_dog=bark" );
307 q +=
wcslen(
L"__winetest_dog=bark" ) + 1;
308 wcscpy(
q,
L"__winetest_\u263a=\u03b2" );
309 q +=
wcslen(
L"__winetest_\u263a=\u03b2" ) + 1;
314 ok(
ret,
"Couldn't create child process %s\n", tmp );
329 "Invalid parameter handler was already set\n" );
335 "Couldn't find env var\n" );
337 "Couldn't find unicode env var\n" );
static _invalid_parameter_handler invalid_parameter_handler
int strcmp(const char *String1, const char *String2)
char * strchr(const char *String, int ch)
static LPCWSTR LPCWSTR LPCWSTR env
#define GetProcAddress(x, y)
#define WideCharToMultiByte
BOOL WINAPI FreeEnvironmentStringsW(IN LPWSTR EnvironmentStrings)
BOOL WINAPI DECLSPEC_HOTPATCH SetEnvironmentVariableA(IN LPCSTR lpName, IN LPCSTR lpValue)
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR lpModuleName)
BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessA(LPCSTR lpApplicationName, LPSTR lpCommandLine, LPSECURITY_ATTRIBUTES lpProcessAttributes, LPSECURITY_ATTRIBUTES lpThreadAttributes, BOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCSTR lpCurrentDirectory, LPSTARTUPINFOA lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation)
GLuint GLuint GLsizei count
GLdouble GLdouble GLdouble GLdouble q
GLenum GLuint GLenum GLsizei const GLchar * buf
_invalid_parameter_handler __cdecl _set_invalid_parameter_handler(_In_opt_ _invalid_parameter_handler _Handler)
_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)
_Check_return_ char *__cdecl getenv(_In_z_ const char *_VarName)
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define memcpy(s1, s2, n)
static PEXPLICIT_ACCESSW *static HMODULE hmod
static const char *static const wchar_t *static char const char *static char *** p_environ
static const char *static const wchar_t *static char size_t
static WCHAR ***__cdecl * p__p__wenviron(void)
static unsigned env_get_entry_countA(char **env)
static char ***__cdecl * p__p__environ(void)
static void test_environment_manipulation(void)
static const char * a_very_long_env_string
static void test_child_env(char **argv)
static WCHAR *** p_wenviron
static void test_initial_environ(void)
#define CHECK_EXPECT(func)
#define DEFINE_EXPECT(func)
static wchar_t **__cdecl * p_get_initial_wide_environment(void)
static char **__cdecl * p_get_initial_narrow_environment(void)
#define CHECK_CALLED(func)
static void test_invalid_parameter_handler(void)
_Check_return_ _CRTIMP int __cdecl wcscmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
const char int int int static __inline const char * wine_dbgstr_a(const char *s)
int winetest_get_mainargs(char ***pargv)
void winetest_wait_child_process(HANDLE process)
DWORD WINAPI GetLastError(void)
#define CREATE_UNICODE_ENVIRONMENT
LPWSTR WINAPI GetEnvironmentStringsW(void)