mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
test: disable env var test under win32+asan (#4342)
The test hits an honest-to-$deity compiler runtime bug, see the investigation in the linked issue. Fixes: https://github.com/libuv/libuv/issues/4338
This commit is contained in:
parent
ff9587991f
commit
2c15345016
@ -33,6 +33,11 @@ TEST_IMPL(env_vars) {
|
||||
int i, r, envcount, found, found_win_special;
|
||||
uv_env_item_t* envitems;
|
||||
|
||||
#if defined(_WIN32) && defined(__ASAN__)
|
||||
/* See investigation in https://github.com/libuv/libuv/issues/4338 */
|
||||
RETURN_SKIP("Test does not currently work on Windows under ASAN");
|
||||
#endif
|
||||
|
||||
/* Reject invalid inputs when setting an environment variable */
|
||||
r = uv_os_setenv(NULL, "foo");
|
||||
ASSERT_EQ(r, UV_EINVAL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user