timeout of 0.5s is too less. Increase the timeout to 30s
so that DNS lookup server has enough timeout to reply on query.
Change-Id: I3cfe1aa780df6da7fd016c225851e7aeb033699e
Signed-off-by: Amitesh Singh <singh.amitesh@gmail.com>
ret = ecore_con_lookup(SERVER_NAME, _lookup_done_cb, NULL);
if (ret == EINA_TRUE)
{
- if (ecore_timer_add(0.5, _quit_timer_cb, NULL) == NULL)
+ if (ecore_timer_add(30, _quit_timer_cb, NULL) == NULL)
{
ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed (timer cannot be created for testing)..", __FILE__, __LINE__);
}