Exemple #1
0
void test_reader (void)
{
	dbg_printf ("Reader ");
	if (trace)
		fflush (stdout);
	if (verbose)
		printf ("\r\n");
	test_qos (0);
	test_qos (1);
	test_listener ();
	test_aux ();
	dbg_printf (" - success!\r\n");
}
Exemple #2
0
int main()
#endif
{
	/* Register dummy plugins */
	test_register_dummy_plugins();
	/* Register content plugins */
	test_register_contents_plugins();

	do {

#if RUN_TEST_ALL  || RUN_TEST_CODECS
		test_codecs();
#endif

#if RUN_TEST_ALL  || RUN_TEST_SESSIONS
		test_sessions();
#endif

#if RUN_TEST_ALL  || RUN_TEST_QOS
		test_qos();
#endif

#if RUN_TEST_ALL  || RUN_TEST_IMAGEATTR
		test_qos_imageattr();
#endif

#if RUN_TEST_ALL  || RUN_TEST_CONTENTS
		test_contents();
#endif
		
	}
	while(RUN_TEST_LOOP);
	
	return 0;
}