#
8a499e13 |
| 22-Dec-2023 |
Matheus Izvekov |
win: stop using deprecated names (#4253)
|
#
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 ...
|
Revision tags: v1.41.0, v1.40.0, v1.39.0, v1.38.1, v1.38.0, v1.37.0, v1.36.0 |
|
#
0ed9692a |
| 27-Mar-2020 |
Ben Noordhuis |
test: simplify platform_init() PR-URL: https://github.com/libuv/libuv/pull/2755 Reviewed-By: Richard Lau <riclau@uk.ibm.com> |
Revision tags: v1.35.0, v1.34.2, v1.34.1 |
|
#
64e5a65b |
| 08-Jan-2020 |
Jameson Nash |
test: avoid truncating output lines If the output data contained a null byte (for example, because it was really utf16), we'd truncate the output there. This commonly would manifest
test: avoid truncating output lines If the output data contained a null byte (for example, because it was really utf16), we'd truncate the output there. This commonly would manifest as the output on the CI bot being: > not ok 308 - threadpool_cancel_random > # exit code 3 > # Output from process : > # A Now we'll attempt to print out the whole error message as text (albeit with the wrong encoding, but the ascii content should still nearly always be readable). PR-URL: https://github.com/libuv/libuv/pull/2611 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
show more ...
|
Revision tags: v1.34.0 |
|
#
8c73eee2 |
| 22-Nov-2019 |
cjihrig |
unix,win: add uv_sleep() This commit exposes the uv_sleep() function that previously only existed in the test runner. PR-URL: https://github.com/libuv/libuv/pull/2548 Review
unix,win: add uv_sleep() This commit exposes the uv_sleep() function that previously only existed in the test runner. PR-URL: https://github.com/libuv/libuv/pull/2548 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
show more ...
|
Revision tags: v1.33.1, v1.33.0, v1.32.0, v1.31.0 |
|
#
be1e7191 |
| 07-Aug-2019 |
Crunkle |
test: fix test runner on MinGW MinGW does not export the _set_fmode function via its libmsvcrt.a import library unless on an ARM platform. This causes the test target build to fail w
test: fix test runner on MinGW MinGW does not export the _set_fmode function via its libmsvcrt.a import library unless on an ARM platform. This causes the test target build to fail without manually adjusting the link parameters. It is safe to assume that _fmode is available in all stable releases, and it should be preferred unless using MSVC. This is unrelated to #2407, but when both are fixed, MinGW builds should complete successfully. PR-URL: https://github.com/libuv/libuv/pull/2411 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
Revision tags: v1.30.1 |
|
#
c905e0be |
| 02-Jul-2019 |
Javier Blazquez |
win,fs: don't modify global file translation mode The MSVC runtime provides a global variable that can be used to set the default file translation mode so that file open calls don't need
win,fs: don't modify global file translation mode The MSVC runtime provides a global variable that can be used to set the default file translation mode so that file open calls don't need to explicitly specify that mode. libuv was changing that global mode to binary from its default of text. However, libuv doesn't actually need to do that anymore, and the application may not want the default changed under it. This change stops libuv from modifying that global mode. PR-URL: https://github.com/libuv/libuv/pull/2324 Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
show more ...
|
Revision tags: 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 |
|
#
c5593b51 |
| 05-Nov-2018 |
Jameson Nash |
warnings: fix code that emits compiler warnings PR-URL: https://github.com/libuv/libuv/pull/2066 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Refael Ackermann <refack
warnings: fix code that emits compiler warnings PR-URL: https://github.com/libuv/libuv/pull/2066 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Refael Ackermann <refack@gmail.com>
show more ...
|
#
143da93e |
| 29-Oct-2018 |
Ben Noordhuis |
test,unix: fix race in test runner The test runner inserted a 250 ms delay to give helper processes time to settle. That's intrinsically race-y and caused tests to intermittently fai
test,unix: fix race in test runner The test runner inserted a 250 ms delay to give helper processes time to settle. That's intrinsically race-y and caused tests to intermittently fail on platforms like AIX. Instead of a fixed delay, pass a file descriptor to the helper process and wait until it closes the descriptor. That way we know for sure the process has started. Incidentally, this change reduces the running time of the test suite from 112 to 26 seconds on my machine. Fixes: https://github.com/libuv/libuv/issues/2041 PR-URL: https://github.com/libuv/libuv/pull/2056 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
show more ...
|
Revision tags: v1.23.2, v1.23.1, v1.23.0, v1.22.0, v1.21.0 |
|
#
672b96fa |
| 01-Jun-2018 |
Carlo Marcelo Arenas Belón |
win: remove req.c and other cleanup PR-URL: https://github.com/libuv/libuv/pull/2018 Reviewed-By: Jameson Nash <vtjnash@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com
win: remove req.c and other cleanup PR-URL: https://github.com/libuv/libuv/pull/2018 Reviewed-By: Jameson Nash <vtjnash@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
show more ...
|
#
9584df25 |
| 29-May-2018 |
Bert Belder |
src,test: fix idiosyncratic comment style Back in the day I wrote comments in a really unusual way. Nowadays it makes my eyes bleed, and clang-format doesn't know how to deal with it.
src,test: fix idiosyncratic comment style Back in the day I wrote comments in a really unusual way. Nowadays it makes my eyes bleed, and clang-format doesn't know how to deal with it. PR-URL: https://github.com/libuv/libuv/pull/1853 Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
show more ...
|
#
02e358fa |
| 14-May-2018 |
Tobias Nießen |
src,lib: fix comments PR-URL: https://github.com/libuv/libuv/pull/1840 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By:
src,lib: fix comments PR-URL: https://github.com/libuv/libuv/pull/1840 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
show more ...
|
Revision tags: 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 |
|
#
e79589d5 |
| 06-Sep-2017 |
Bartosz Sosnowski |
win, test: remove surplus CloseHandle Fixes: https://github.com/libuv/libuv/issues/1426 PR-URL: https://github.com/libuv/libuv/pull/1523 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> |
#
eb4a37c8 |
| 06-Sep-2017 |
Bartosz Sosnowski |
Revert "win, test: fix double close in test runner" Causes test output to be lost. This reverts commit bded0fa4f0243ea86366c4f6d974915277d7ca7f. Refs: https://github.com/li
Revert "win, test: fix double close in test runner" Causes test output to be lost. This reverts commit bded0fa4f0243ea86366c4f6d974915277d7ca7f. Refs: https://github.com/libuv/libuv/issues/1426 Refs: https://github.com/libuv/libuv/pull/1450 PR-URL: https://github.com/libuv/libuv/pull/1523 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
show more ...
|
Revision tags: v1.14.0 |
|
#
bded0fa4 |
| 07-Aug-2017 |
Bartosz Sosnowski |
win, test: fix double close in test runner Fixes: https://github.com/libuv/libuv/issues/1426 Credit: Tom Seddon <github@tomseddon.plus.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.co
win, test: fix double close in test runner Fixes: https://github.com/libuv/libuv/issues/1426 Credit: Tom Seddon <github@tomseddon.plus.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
show more ...
|
Revision tags: v1.13.1, v1.13.0, v1.12.0 |
|
#
bcf62029 |
| 27-Apr-2017 |
Bartosz Sosnowski |
win,test: support stdout output larger than 1kb Fix a bug in process_copy_output that would cause output larger than 1kb to be incorrectly split into lines. PR-URL: https://gith
win,test: support stdout output larger than 1kb Fix a bug in process_copy_output that would cause output larger than 1kb to be incorrectly split into lines. PR-URL: https://github.com/libuv/libuv/pull/1325 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
show more ...
|
Revision tags: v1.11.0, v1.10.2, v1.10.1, v1.10.0, v0.10.37 |
|
#
b936ace9 |
| 06-Jun-2016 |
Ben Noordhuis |
test: improve formatting of diagnostic messages Put a space after the '#' and handle messages with newlines. PR-URL: https://github.com/libuv/libuv/pull/898 Reviewed-By: Saúl Ib
test: improve formatting of diagnostic messages Put a space after the '#' and handle messages with newlines. PR-URL: https://github.com/libuv/libuv/pull/898 Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
#
cc1d38ea |
| 06-Jun-2016 |
Ben Noordhuis |
test: make tap output the default With the non-tap output, it's sometimes difficult to distinguish skipped tests from test failures. PR-URL: https://github.com/libuv/libuv/pull/
test: make tap output the default With the non-tap output, it's sometimes difficult to distinguish skipped tests from test failures. PR-URL: https://github.com/libuv/libuv/pull/898 Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
Revision tags: v1.9.1, v1.9.0, v1.8.0, v1.7.5, v1.7.4, v1.7.3, v1.7.2, v1.7.1, v1.7.0, v1.6.1, v1.6.0, v1.5.0, v0.10.36, v1.4.2, v0.10.35, v1.4.1, v0.10.34, v1.4.0, v1.3.0, v0.10.33, v1.2.1, v1.2.0, v0.10.32, v1.1.0, v0.10.31, v1.0.2, v0.10.30 |
|
#
ff29322b |
| 01-Dec-2014 |
Ben Noordhuis |
test: canonicalize test runner path The get_currentexe test requires a canonicalized argv[0] to check against. Before this commit, it failed when argv[0] contained symbolic links.
test: canonicalize test runner path The get_currentexe test requires a canonicalized argv[0] to check against. Before this commit, it failed when argv[0] contained symbolic links. Fixes libuv/libuv#18.
show more ...
|
Revision tags: v1.0.1, v1.0.0, v0.10.29, v1.0.0-rc2, v1.0.0-rc1, v0.11.29, v0.11.28, v0.11.27, v0.10.28, v0.11.26, v0.10.27, v0.11.25, v0.11.24, v0.11.23, v0.10.26, v0.11.22, v0.11.21, v0.11.20, v0.10.25, v0.11.19, v0.10.24, v0.11.18, v0.10.23, v0.10.22, v0.11.17, v0.10.21, v0.11.16, v0.10.20, v0.11.15, v0.10.19, v0.11.14, v0.10.18, v0.10.17 |
|
#
f5baf210 |
| 11-Sep-2013 |
Ben Noordhuis |
test: wrap long lines at 80 columns |
Revision tags: v0.10.16, v0.11.13, v0.11.12, v0.11.11, v0.11.10, v0.10.15, v0.11.9, v0.10.14, v0.11.8, v0.11.7, v0.10.13, v0.11.6, v0.10.12, v0.11.5, v0.10.11, v0.10.10, v0.11.4, v0.10.9, v0.10.8, v0.11.3, v0.10.7, v0.10.6, v0.11.2, v0.10.5 |
|
#
2c210509 |
| 20-Apr-2013 |
Miroslav Bajtoš |
test: add RETURN_SKIP and RETURN_TODO macros Added two new flags to identify tests that are intentionally ignored (usually because we don't want to implement the tested functionality
test: add RETURN_SKIP and RETURN_TODO macros Added two new flags to identify tests that are intentionally ignored (usually because we don't want to implement the tested functionality on current platform) and test serving as TODO list (usually indicating that the tested functionality should be implemented on current plaform in the near future.)
show more ...
|
Revision tags: v0.10.4, v0.11.1, node-v0.11.0, v0.10.2, node-v0.7.3, node-v0.7.7, node-v0.7.5, node-v0.5.3, node-v0.10.1, node-v0.10.0 |
|
#
2f84a575 |
| 05-Mar-2013 |
Timothy J Fontaine |
test: add tap output for windows |
Revision tags: node-v0.9.12, node-v0.9.11, node-v0.8.21, node-v0.8.19, node-v0.9.10, node-v0.9.7, node-v0.9.6, node-v0.9.4, node-v0.8.17, node-v0.8.15, node-v0.9.3, node-v0.8.12 |
|
#
2684f876 |
| 09-Oct-2012 |
Hiroaki Nakamura |
windows: don't set CRT debug mode on MinGW |
#
8f1ec328 |
| 06-Oct-2012 |
Ting-Yu Lin |
windows: fix application crashed popup in debug version |
#
01337af6 |
| 03-Oct-2012 |
Shigeki Ohtsu |
test, windows: fix duplicated windows.h including windows.h before winsock2.h cause build error |