#
2c153450 |
| 07-Mar-2024 |
Ben Noordhuis |
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/
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
show more ...
|
#
011a1ac1 |
| 06-Oct-2023 |
Pleuvens |
test: switch to new-style ASSERT_EQ macros (#4159) Switch from old-style ASSERT macro to new-style ASSERT_EQ,... macros. Using new-style macros makes it easier to debug test failure
test: switch to new-style ASSERT_EQ macros (#4159) Switch from old-style ASSERT macro to new-style ASSERT_EQ,... macros. Using new-style macros makes it easier to debug test failures Fixes: https://github.com/libuv/libuv/issues/2974
show more ...
|
#
238ba3b6 |
| 26-Nov-2022 |
Ben Noordhuis |
test: fix -Wunused-but-set-variable warnings (#3829)
|
Revision tags: v1.41.0, v1.40.0, v1.39.0, v1.38.1, v1.38.0 |
|
#
db96a61c |
| 28-Apr-2020 |
Ben Noordhuis |
win: support environment variables > 32767 chars The Windows documentation states these should not be possible but several people have reported that they do in fact happen. Try
win: support environment variables > 32767 chars The Windows documentation states these should not be possible but several people have reported that they do in fact happen. Try with a smallish stack-allocated buffer first and switch to a heap-allocated buffer if the first one is too small. Fixes: https://github.com/libuv/libuv/issues/2587 PR-URL: https://github.com/libuv/libuv/pull/2589 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
Revision tags: v1.37.0, v1.36.0, v1.35.0, v1.34.2 |
|
#
6d9e89be |
| 13-Jan-2020 |
cjihrig |
test: fix env-vars flakiness It has been observed that running the tests via shell script can cause special environment variables to be missing. This commit ensures that a special Wi
test: fix env-vars flakiness It has been observed that running the tests via shell script can cause special environment variables to be missing. This commit ensures that a special Windows environment variable is set. Fixes: https://github.com/libuv/libuv/issues/2622 PR-URL: https://github.com/libuv/libuv/pull/2624 Reviewed-By: Jameson Nash <vtjnash@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
show more ...
|
Revision tags: v1.34.1, v1.34.0, v1.33.1, v1.33.0 |
|
#
fd1502f5 |
| 13-Sep-2019 |
Anna Henningsen |
win: fix reading hidden env vars There are some special environment variables on Windows that start with a '=' sign, e.g. per-drive working directories. In those cases, an initial '=
win: fix reading hidden env vars There are some special environment variables on Windows that start with a '=' sign, e.g. per-drive working directories. In those cases, an initial '=' in the name of the environment variable needs to be skipped when looking for the '=' that separates it from its value. PR-URL: https://github.com/libuv/libuv/pull/2473 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jameson Nash <vtjnash+github@gmail.com> Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
Revision tags: v1.32.0 |
|
#
9e800570 |
| 10-Aug-2019 |
cjihrig |
win: support retrieving empty env variables This commit adds Windows support for retrieving empty environment variables via uv_os_getenv(). Fixes: https://github.com/libuv/libuv
win: support retrieving empty env variables This commit adds Windows support for retrieving empty environment variables via uv_os_getenv(). Fixes: https://github.com/libuv/libuv/issues/2413 PR-URL: https://github.com/libuv/libuv/pull/2419 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
Revision tags: v1.31.0 |
|
#
2480b615 |
| 01-Aug-2019 |
Saúl Ibarra Corretgé |
unix,win: add ability to retrieve all env variables Fixes: https://github.com/libuv/libuv/issues/2400 PR-URL: https://github.com/libuv/libuv/pull/2404 Reviewed-By: Anna Hennings
unix,win: add ability to retrieve all env variables Fixes: https://github.com/libuv/libuv/issues/2400 PR-URL: https://github.com/libuv/libuv/pull/2404 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
show more ...
|
Revision tags: v1.30.1, v1.30.0, v1.29.1, v1.29.0, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.24.1, v1.24.0, v1.23.2, v1.23.1, v1.23.0, v1.22.0, v1.21.0, v1.20.3, v1.20.2, v1.20.1, v1.20.0, v1.19.2, v1.19.1, v1.19.0, v1.18.0, v1.17.0, v1.16.1, v1.16.0, v1.15.0, v1.14.1, v1.14.0, v1.13.1, v1.13.0, v1.12.0 |
|
#
399b08aa |
| 09-Mar-2017 |
jBarz |
unix: return UV_EINVAL for NULL env name "setenv" on z/OS returns successfully on a NULL ptr argument for name. Check for this on all unixes. PR-URL: https://github.com/libuv/li
unix: return UV_EINVAL for NULL env name "setenv" on z/OS returns successfully on a NULL ptr argument for name. Check for this on all unixes. PR-URL: https://github.com/libuv/libuv/pull/1243 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
#
ee02f60c |
| 28-Feb-2017 |
cjihrig |
unix,win: add uv_os_{get,set,unset}env() These functions are used to create, retrieve, update, and delete environment variables. Fixes: https://github.com/libuv/libuv/issues/119
unix,win: add uv_os_{get,set,unset}env() These functions are used to create, retrieve, update, and delete environment variables. Fixes: https://github.com/libuv/libuv/issues/1198 PR-URL: https://github.com/libuv/libuv/pull/1234 Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
show more ...
|