]> git.ozlabs.org Git - ccan/blobdiff - check_type/test/run.c
Fix up most #include "tap.h" -> #include "tap/tap.h" in tests.
[ccan] / check_type / test / run.c
index 1f5581e9836d6d792e5568ea732ac48af8a908b3..f4b33c1616a1b5bc38fc66fee496b374831186fe 100644 (file)
@@ -1,5 +1,5 @@
 #include "check_type/check_type.h"
-#include "tap.h"
+#include "tap/tap.h"
 
 int main(int argc, char *argv[])
 {
@@ -18,5 +18,5 @@ int main(int argc, char *argv[])
        ok1(check_types_match(x++, y++) == 0);
        ok(x == 0 && y == 0, "check_types_match does not evaluate expressions");
 
-       return 0;
+       return exit_status();
 }