libuv/test/test-fail-always.c
2011-04-15 19:32:28 +02:00

7 lines
157 B
C

#include "test.h"
TEST_IMPL(fail_always) {
/* This test always fails. It is used to test the test runner. */
FATAL("Yes, it always fails")
return 2;
}