int main(int argc, char *argv[]) { bool result; /* disable leak detective because of how tkm_init/deinit is called, which * does not work otherwise due to limitations of the external libraries */ setenv("LEAK_DETECTIVE_DISABLE", "1", 1); result = test_runner_run(tests, test_runner_init); tkm_deinit(); return result; }
int main(int argc, char *argv[]) { return test_runner_run("libtls", tests, test_runner_init); }