diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-09-21 20:44:12 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-09-21 20:44:12 +0200 |
commit | 9dfeeff1f11685987232f8af8fd1d3c29abb6579 (patch) | |
tree | 14466996fb6e0b104390506de567311c9ab11e74 /tests | |
parent | 4a808506a90dfddeb8da54145059f5cddc38f645 (diff) | |
download | dns-9dfeeff1f11685987232f8af8fd1d3c29abb6579.tar.gz |
tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.c | 1 | ||||
-rw-r--r-- | tests/tests.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/main.c b/tests/main.c index f1a9f7d..dc32e3f 100644 --- a/tests/main.c +++ b/tests/main.c @@ -21,6 +21,7 @@ int main() { suite_add_tcase(s, test_tree()); suite_add_tcase(s, test_zonefile()); suite_add_tcase(s, test_record()); + suite_add_tcase(s, test_database()); sr = srunner_create(s); srunner_run_all(sr,CK_VERBOSE); diff --git a/tests/tests.h b/tests/tests.h index 469e715..3be8b88 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -16,3 +16,4 @@ TCase* test_dns(void); TCase* test_tree(void); TCase* test_zonefile(void); TCase* test_record(void); +TCase* test_database(void); |