[libvirt] [PATCH 1/2] qemuxml2argvmock: Mock time() on non-linux platforms too

Michal Privoznik mprivozn at redhat.com
Thu Feb 6 13:33:52 UTC 2014


The qemuxml2argvtest is run on more platforms than linux. For instance
FreeBSD. On these platforms we are, however, not mocking time() which
results in current time being fetched from system and hence tests number
32 and 33 failing.

Signed-off-by: Michal Privoznik <mprivozn at redhat.com>
---
 tests/qemuxml2argvmock.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/tests/qemuxml2argvmock.c b/tests/qemuxml2argvmock.c
index ed9fb13..bff3b0f 100644
--- a/tests/qemuxml2argvmock.c
+++ b/tests/qemuxml2argvmock.c
@@ -20,9 +20,8 @@
 
 #include <config.h>
 
-#ifdef __linux__
-# include "internal.h"
-# include <time.h>
+#include "internal.h"
+#include <time.h>
 
 time_t time(time_t *t)
 {
@@ -31,7 +30,3 @@ time_t time(time_t *t)
         *t = ret;
     return ret;
 }
-
-#else
-/* Nothing to override on non-__linux__ platforms */
-#endif
-- 
1.8.5.3




More information about the libvir-list mailing list