Eina test: declare clock_gettime() by including time.h, like it should be
authorVincent Torri <vincent dot torri at gmail dot com>
Sat, 12 Dec 2015 10:53:35 +0000 (11:53 +0100)
committerJean-Philippe Andre <jp.andre@samsung.com>
Mon, 14 Dec 2015 02:14:46 +0000 (11:14 +0900)
src/tests/eina/eina_test_lock.c

index 02c6286..d1ff010 100644 (file)
  * if not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H 
-# include "config.h" 
-#endif               
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <time.h>
 
 #include "eina_suite.h"
 #include "Eina.h"
@@ -217,7 +219,6 @@ START_TEST(eina_test_rwlock)
    fail_if(counter != 7200);
    fail_if(eina_rwlock_release(&mutex) != EINA_LOCK_SUCCEED);
 
-#ifndef _WIN32
    fail_if(eina_lock_take(&mtcond) != EINA_LOCK_SUCCEED);
    clock_gettime(CLOCK_REALTIME, &ts);
    eina_condition_timedwait(&cond, 0.050);
@@ -226,7 +227,6 @@ START_TEST(eina_test_rwlock)
    fail_if(delay < 50);
    fail_if(delay > 200);
    fail_if(eina_lock_release(&mtcond) != EINA_LOCK_SUCCEED);
-#endif
 
    eina_thread_join(thread);