From b06da4cbab5e2726fa5c02ad68e0dee203032dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Sat, 10 Dec 2011 00:24:08 +0100 Subject: [PATCH 1/5] test: make test runner return non-zero in case of failure --- test/runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner.c b/test/runner.c index daa8a2e4..fdd81684 100644 --- a/test/runner.c +++ b/test/runner.c @@ -71,7 +71,7 @@ int run_tests(int timeout, int benchmark_output) { log_progress(total, passed, failed, "Done.\n"); } - return 0; + return failed; } From 5989961184bdf52f5178f74a84c4556ac0a26de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Fri, 9 Dec 2011 22:27:00 +0100 Subject: [PATCH 2/5] test: add `.travis.yml` for testing on Travis CI --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..f3b176fe --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: node_js + +script: + - "make test" + +notifications: + email: false + irc: + - "irc.freenode.net#libuv" From b5762b26ff38a7caa78ef88d5836410660be23e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Sat, 10 Dec 2011 01:18:18 +0100 Subject: [PATCH 3/5] doc: add Travis CI build status image --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd4945a9..f86a0000 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# libuv +# libuv [![Build Status](https://secure.travis-ci.org/joyent/libuv.png)](http://travis-ci.org/joyent/libuv) libuv is a new platform layer for Node. Its purpose is to abstract IOCP on Windows and libev on Unix systems. We intend to eventually contain all From 12cefcaa867c57a9db38d3973d945bd7da3a3e10 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 12 Dec 2011 02:14:25 +0100 Subject: [PATCH 4/5] Update AUTHORS and .mailmap --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 40286bcf..56c20e77 100644 --- a/AUTHORS +++ b/AUTHORS @@ -36,3 +36,4 @@ Tj Holowaychuk Shimon Doodkin Ryan Emery Bruce Mitchener +Maciej MaƂecki From 9fe9e233cfdbcc3ed93363722688b3bda1f01ef5 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 12 Dec 2011 02:15:22 +0100 Subject: [PATCH 5/5] .gitignore core and vgcore files. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 09164c65..9739d092 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ *.orig *.sdf *.suo +core +vgcore.* /out/ /build/gyp