Ejemplo n.º 1
0
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;
}
Ejemplo n.º 2
0
int main(int argc, char *argv[])
{
	return test_runner_run("libtls", tests, test_runner_init);
}