* @n Input Data: function has no arguments.
*
* @procedure
- * @step 1 Create new Ecore_Timer with interval equal 3 seconds; timer function should stop main loop
+ * @step 1 Create new Ecore_Timer with interval equal 0.5 seconds; timer function should stop main loop
* @step 2 Create new Ecore_Thread with thread function where log message would be printed out (due to
* documentation logging output from other thread is possible if tested function was called)
* @step 3 Set logging callback
*/
START_TEST(utc_eina_log_threads_enable_p)
{
- Ecore_Timer *timer = ecore_timer_add(3, _timer_cb, NULL);
+ Ecore_Timer *timer = ecore_timer_add(0.5, _timer_cb, NULL);
Ecore_Thread *thread = ecore_thread_run(_short_job, NULL, NULL, NULL);
if (!timer)
* @n Input Data: function has no arguments.
*
* @procedure
- * @step 1 Create new Ecore_Timer with interval equal 3 seconds; timer function should stop main loop
+ * @step 1 Create new Ecore_Timer with interval equal 0.5 seconds; timer function should stop main loop
* @step 2 Create new Ecore_Thread with thread function where tested function should be called from
* @step 3 Begin main loop
* @step 4 Check value of global variable 'main_loop' that should be set via invocation of tested function
*/
START_TEST(utc_eina_main_loop_is_p2)
{
- Ecore_Timer *timer = ecore_timer_add(3, _timer_cb, NULL);
+ Ecore_Timer *timer = ecore_timer_add(0.5, _timer_cb, NULL);
Ecore_Thread *thread = ecore_thread_run(_short_job, NULL, NULL, NULL);
if (!timer)