예제 #1
0
int main(int argc, char **argv)
{
	fill_function_pointers();

	test_clock_gettime();
	test_gettimeofday();

	/*
	 * Test getcpu() last so that, if something goes wrong setting affinity,
	 * we still run the other tests.
	 */
	test_getcpu();

	return nerrs ? 1 : 0;
}
예제 #2
0
int main(int argc,char* argv[])
{
	test_gettimeofday();
	return 0;

}