12345678910111213141516171819202122232425262728293031323334353637383940 |
- #include "test_term.c"
- #include "test_namespace.c"
- #include "test_codec_nt.c"
- #include "test_store_ht.c"
- #include "test_store_mdb.c"
- #include "test_graph.c"
- int main(int argc, char **argv) {
- // Set env variable to test path.
- putenv ("LSUP_MDB_STORE_PATH=" TMPDIR "/lsup_test_mdb");
- // Clear out database from previous test.
- rm_r (getenv ("LSUP_MDB_STORE_PATH"));
- int rc;
- if (
- term_tests() ||
- namespace_tests() ||
- store_ht_tests() ||
- store_mdb_tests() ||
- graph_tests() ||
- codec_nt_tests() ||
- 0
- ) {
- printf("Test failed.");
- rc = -1;
- } else {
- printf(
- "\n****************\n"
- "ALL TESTS PASSED\n"
- "****************\n");
- rc = 0;
- }
- printf("\nTests run: %d\n", tests_run);
- return rc;
- }
|