From 2c153450162108a7f4105a5154592a2bb9e80ce1 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 7 Mar 2024 09:46:57 +0100 Subject: [PATCH] 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 --- test/test-env-vars.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/test-env-vars.c b/test/test-env-vars.c index 016f0733..fd25ea26 100644 --- a/test/test-env-vars.c +++ b/test/test-env-vars.c @@ -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);