History log of /libuv/test/runner-unix.c (Results 26 – 50 of 57)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: 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, node-v0.9.12, node-v0.9.11
# a924f790 24-Feb-2013 Ben Noordhuis

test: remove 'is root?' check

I debug tests regularly as root (because dtrace and dtruss require the
additional privileges). The 'is root?' check gets in the way more often
than it p

test: remove 'is root?' check

I debug tests regularly as root (because dtrace and dtruss require the
additional privileges). The 'is root?' check gets in the way more often
than it prevents me from doing something silly. Remove it.

show more ...

Revision tags: node-v0.8.21
# bfe269b8 21-Feb-2013 Timothy J Fontaine

test: add tap output

Given UV_TAP_OUTPUT being set, test result output should use TAP formatting

Revision tags: node-v0.8.19, node-v0.9.10, node-v0.9.7, node-v0.9.6
# 7ff6f29b 06-Jan-2013 Ben Noordhuis

test, bench: ANSI-fy function prototypes

Replace `void f()` with `void f(void)`; the former means "a function
that takes any number of arguments, including none" while the latter
is

test, bench: ANSI-fy function prototypes

Replace `void f()` with `void f(void)`; the former means "a function
that takes any number of arguments, including none" while the latter
is what is actually intended: a function taking no arguments.

The first form also isn't strictly conforming ANSI/ISO C.

show more ...

Revision tags: node-v0.9.4
# 0a05b31a 14-Dec-2012 Ben Noordhuis

test: fix -Wunused-result warnings

Revision tags: node-v0.8.17
# 0a7e36dc 10-Nov-2012 Ben Noordhuis

test: add UV_RUN_AS_ROOT check

Revision tags: node-v0.8.15, node-v0.9.3, node-v0.8.12
# 4e268f77 30-Sep-2012 Ben Noordhuis

test: add valgrind support

Run tests through valgrind when UV_USE_VALGRIND=1 is set in the environment.

# 48f98424 30-Sep-2012 Ben Noordhuis

test: fix error message in runner

Revision tags: node-v0.8.10, node-v0.9.2, node-v0.8.9, node-v0.9.1, node-v0.8.8, node-v0.8.7, node-v0.8.6, node-v0.8.5, node-v0.6.21, node-v0.8.3, node-v0.9.0, node-v0.8.2, node-v0.8.1
# f3fd8e3c 25-Jun-2012 Charlie McConnell

test: prevent running the tests as root

Revision tags: node-v0.8.0, node-v0.7.12, node-v0.7.11, node-v0.7.10, node-v0.6.19, node-v0.7.9, node-v0.6.18, node-v0.6.16, node-v0.6.17
# 976423c6 13-Apr-2012 Ben Noordhuis

test: remove unused variable

# 5345ee36 17-Apr-2012 Ben Noordhuis

test: fix race conditions in test-async

Revision tags: node-v0.7.8, node-v0.6.15, node-v0.6.14, node-v0.6.13, node-v0.7.6, node-v0.6.12, node-v0.6.11, node-v0.7.4, node-v0.6.10, node-v0.7.2, node-v0.6.9, node-v0.7.1, node-v0.7.0, node-v0.6.8, node-v0.6.7, node-v0.6.6, node-v0.6.4, node-v0.6.3, node-v0.6.2
# e2a794e3 11-Nov-2011 Ben Noordhuis

test: remove dead code

Revision tags: node-v0.6.1, node-v0.6.0, node-v0.5.10, node-v0.5.9, node-v0.5.8
# f00a5e65 16-Sep-2011 Ryan Dahl

ignore SIGPIPE in tests

Revision tags: node-v0.5.7, node-v0.5.6, node-v0.5.5, node-v0.5.4, node-v0.5.2
# a29b2099 13-Jul-2011 Ben Noordhuis

Make it possible to run individual tests.

Fixes #100.

Revision tags: node-v0.5.1
# 1717d421 07-Jul-2011 Ben Noordhuis

read() and write() return ssize_t, not size_t.

rv < 0 error checks were always false.

# 9a5b47d9 06-Jul-2011 Ben Noordhuis

uv_sleep() takes milliseconds, usleep() microseconds. Convert argument.

Revision tags: node-v0.5.0
# e28c0bb6 27-May-2011 Ryan Dahl

unix: Use fork instead of vfork in runner.

# 9fc8a7f1 21-May-2011 Igor Zinkovsky

Adds uv_get_exepath API

Only works on Linux, Mac, Windows currently.

# 2ef3c6c6 12-May-2011 Ryan Dahl

oio -> uv

# f0de0137 10-May-2011 Ryan Dahl

Use argv[0] if we can't get_executable_path()

# 4eb2c6b3 09-May-2011 Ryan Dahl

Remove unnecessary function

# f71ea7f6 09-May-2011 Ryan Dahl

Fix compiler warning

# cc72a0d1 09-May-2011 Ryan Dahl

unix: implement OIO_ASYNC

Had to hack up the test to be inline with how libev does things.

# 9e9bae5e 09-May-2011 Ryan Dahl

unix: Stub out async and thread functions

# 6d09362c 03-May-2011 Bert Belder

Improve test-runner output

* fix rewind_cursor() for windows
* use stderr consistently
* let rewind_cursor() return void; closes #14

123