libuv/test/test-fail-always.c

8 lines
159 B
C
Raw Normal View History

2011-04-04 23:43:17 +00:00
#include "test.h"
TEST_IMPL(fail_always) {
/* This test always fails. It is used to test the test runner. */
FATAL("Yes, it always fails");
2011-04-15 17:32:28 +00:00
return 2;
}