summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-pass-always.c
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-05-12 19:16:40 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-05-13 00:54:00 -0700
commitefca334be2b999b2112eb963c3ece7517c06713f (patch)
treeb73b2ccdf557ada21e8ef9dfefd653c2e3c84c29 /deps/uv/test/test-pass-always.c
parent337c48db5fe06ddaf626b03b7db6c6f48c5d3b62 (diff)
downloadnode-new-efca334be2b999b2112eb963c3ece7517c06713f.tar.gz
Integrate libuv into build system
Diffstat (limited to 'deps/uv/test/test-pass-always.c')
-rw-r--r--deps/uv/test/test-pass-always.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/deps/uv/test/test-pass-always.c b/deps/uv/test/test-pass-always.c
new file mode 100644
index 0000000000..4fb58ff94b
--- /dev/null
+++ b/deps/uv/test/test-pass-always.c
@@ -0,0 +1,28 @@
+/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include "task.h"
+
+
+TEST_IMPL(pass_always) {
+ /* This test always passes. It is used to test the test runner. */
+ return 0;
+}