1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
#include "test_common.h"
#include <locale.h>
#include <usual/time.h>
#include <usual/psrandom.h>
unsigned long long test_seed1, test_seed2;
struct testgroup_t groups[] = {
{ "aatree/", aatree_tests },
{ "base/", base_tests },
{ "bits/", bits_tests },
{ "cbtree/", cbtree_tests },
{ "cfparser/", cfparser_tests },
{ "crypto/", crypto_tests },
{ "ctype/", ctype_tests },
{ "cxalloc/", cxalloc_tests },
{ "endian/", endian_tests },
{ "fileutil/", fileutil_tests },
{ "fnmatch/", fnmatch_tests },
{ "getopt/", getopt_tests },
{ "hashing/", hashing_tests },
{ "hashtab/", hashtab_tests },
{ "heap/", heap_tests },
{ "json/", json_tests },
{ "list/", list_tests },
{ "mdict/", mdict_tests },
{ "netdb/", netdb_tests },
{ "pgutil/", pgutil_tests },
{ "psrandom/", psrandom_tests },
{ "regex/", regex_tests },
{ "shlist/", shlist_tests },
{ "socket/", socket_tests },
{ "string/", string_tests },
{ "strpool/", strpool_tests },
{ "talloc/", talloc_tests },
{ "time/", time_tests },
{ "tls/", tls_tests },
{ "utf8/", utf8_tests },
{ "wchar/", wchar_tests },
END_OF_GROUPS
};
const char *tdata(const char *fn)
{
static char buf[256];
const char *dir = getenv("LIBUSUAL_TEST_DATA_DIR");
snprintf(buf, sizeof buf, "%s/%s", dir ? dir : ".", fn);
return buf;
}
int main(int argc, const char *argv[])
{
if (getenv("USE_LOCALE"))
setlocale(LC_ALL, "");
test_seed1 = pseudo_random();
test_seed2 = pseudo_random();
pseudo_random_seed(test_seed1, test_seed2);
printf("inital seed: %" PRIu64 " %" PRIu64 "\n", (uint64_t)test_seed1, (uint64_t)test_seed2);
return tinytest_main(argc, argv, groups);
}
|