]> begriffs open source - libtap/blob - t/simple.c
Update license to GPLv2+ to be compatible with the Apache 2.0 license
[libtap] / t / simple.c
1 #include "tap.h"
2
3 int main () {
4     setvbuf(stdout, NULL, _IONBF, 0);
5     plan(24);
6     ok(1);
7     ok(1);
8     ok(1);
9     ok(0);
10     ok(1, "foo");
11     ok(1, "bar");
12     ok(1, "baz");
13     ok(1, "quux");
14     ok(1, "thud");
15     ok(1, "wombat");
16     ok(1, "blurgle");
17     ok(1, "frob");
18     ok(0, "frobnicate");
19     ok(1, "eek");
20     ok(1, "ook");
21     ok(1, "frodo");
22     ok(1, "bilbo");
23     ok(1, "wubble");
24     ok(1, "flarp");
25     ok(1, "fnord");
26     pass();
27     fail();
28     pass("good");
29     fail("bad");
30     done_testing();
31 }
32