jpeg pushed a commit to branch master.
http://git.enlightenment.org/core/efl.git/commit/?id=6b368eb127388f1f3a11061d0c5b57b35c6180d4
commit 6b368eb127388f1f3a11061d0c5b57b35c6180d4
Author: Vincent Torri <vincent dot torri at gmail dot com>
Date: Sat Dec 12 11:53:35 2015 +0100
Eina test: declare clock_gettime() by including time.h, like it should be
---
src/tests/eina/eina_test_lock.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/tests/eina/eina_test_lock.c b/src/tests/eina/eina_test_lock.c
index 02c6286..d1ff010 100644
--- a/src/tests/eina/eina_test_lock.c
+++ b/src/tests/eina/eina_test_lock.c
@@ -16,9 +16,11 @@
* 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);
--