test.c 371 B

123456789101112131415161718192021
  1. #include "test_term.c"
  2. #include "test_graph.c"
  3. int main(int argc, char **argv) {
  4. int result = (term_tests() | graph_tests());
  5. printf("Test result: %lu\n", (size_t)result);
  6. if (result != 0) {
  7. printf("Test failed.");
  8. }
  9. else {
  10. printf("ALL TESTS PASSED\n");
  11. }
  12. printf("Tests run: %d\n", tests_run);
  13. return result != 0;
  14. }