iodine/tests/test.c

45 lines
703 B
C
Raw Normal View History

#include <check.h>
2006-08-25 00:02:52 +03:00
#include <stdio.h>
#include <stdarg.h>
2006-08-25 00:02:52 +03:00
#include <stdlib.h>
#include "test.h"
2006-08-25 00:02:52 +03:00
char *
va_str(const char *fmt, ...)
2006-08-25 01:04:27 +03:00
{
static char buf[512];
va_list ap;
2006-08-25 00:02:52 +03:00
va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
2006-08-25 00:02:52 +03:00
return buf;
2006-08-25 01:04:27 +03:00
}
int
main()
2006-08-25 01:04:27 +03:00
{
SRunner *runner;
Suite *iodine;
TCase *test;
int failed;
2006-08-25 01:04:27 +03:00
iodine = suite_create("Iodine");
2006-08-25 01:04:27 +03:00
test = test_base32_create_tests();
suite_add_tcase(iodine, test);
2006-08-25 01:04:27 +03:00
test = test_read_create_tests();
suite_add_tcase(iodine, test);
runner = srunner_create(iodine);
srunner_run_all(runner, CK_VERBOSE);
failed = srunner_ntests_failed(runner);
2006-08-25 00:02:52 +03:00
srunner_free(runner);
2006-08-25 00:02:52 +03:00
return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
2006-08-25 00:02:52 +03:00
}