-#utc_evas_async_events_fd_get.c
+utc_evas_async_events_fd_get.c
utc_evas_async_events_process.c
utc_evas_async_events_process_blocking.c
utc_evas_async_events_put.c
-#utc_evas_async_events_fd_get.c
+utc_evas_async_events_fd_get.c
utc_evas_async_events_process.c
utc_evas_async_events_process_blocking.c
utc_evas_async_events_put.c
-#utc_evas_async_events_fd_get.c
+utc_evas_async_events_fd_get.c
#utc_evas_async_events_process.c
#utc_evas_async_events_process_blocking.c
#utc_evas_async_events_put.c
*/
START_TEST(utc_evas_async_events_fd_get_p)
{
+ evas_init();
int fd = evas_async_events_fd_get();
- if (fd > 0)
+ if (fd != -1)
{
ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed.. Asynchronous file descriptor %d..", __FILE__, __LINE__);
}
-
- evas_init();
- fd = evas_async_events_fd_get();
- if (fd <= 0)
- {
- ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed.. Fail to initialize asynchronous file descriptor %d..", __FILE__, __LINE__);
- }
+ printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
}
END_TEST