[libvirt] [PATCH] virfiletest: Load mock on Linux only

Michal Privoznik mprivozn at redhat.com
Thu Oct 11 08:37:07 UTC 2018


The mock is built on Linux only. Therefore we should load it only
on Linux too. This fixes the FreeBSD build.

Signed-off-by: Michal Privoznik <mprivozn at redhat.com>
---
 tests/virfiletest.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/virfiletest.c b/tests/virfiletest.c
index d5102b1cc4..1f2be74c8d 100644
--- a/tests/virfiletest.c
+++ b/tests/virfiletest.c
@@ -460,4 +460,8 @@ mymain(void)
     return ret != 0 ? EXIT_FAILURE : EXIT_SUCCESS;
 }
 
+#ifdef __linux__
 VIR_TEST_MAIN_PRELOAD(mymain, abs_builddir "/.libs/virfilemock.so")
+#else
+VIR_TEST_MAIN(mymain)
+#endif
-- 
2.18.0




More information about the libvir-list mailing list