提交 647c6518 编写于 作者: R Roman Bolshakov 提交者: Daniel P. Berrangé

tests: Remove -module flag for mocks

macOS has two kinds of loadable libraries: MH_BUNDLE, and MH_DYLIB.
bundle is used for plugins that are loaded with dlopen/dlsym/dlclose.
And there's no way to preload a bundle into an application. dynamic
linker (dyld) will reject it when finds it in DYLD_INSERT_LIBRARIES.

Unfortunately, a bundle is built if -module flag is provided to libtool.
The flag has been removed to build dylibs with ".dylib" suffix.
Signed-off-by: NRoman Bolshakov <r.bolshakov@yadro.com>
上级 fde36108
...@@ -48,7 +48,7 @@ AM_CFLAGS = \ ...@@ -48,7 +48,7 @@ AM_CFLAGS = \
AM_LDFLAGS = \ AM_LDFLAGS = \
-export-dynamic -export-dynamic
MOCKLIBS_LDFLAGS = -module -avoid-version \ MOCKLIBS_LDFLAGS = -avoid-version \
-rpath /evil/libtool/hack/to/force/shared/lib/creation \ -rpath /evil/libtool/hack/to/force/shared/lib/creation \
$(MINGW_EXTRA_LDFLAGS) $(MINGW_EXTRA_LDFLAGS)
......
...@@ -119,8 +119,10 @@ int virTestMain(int argc, ...@@ -119,8 +119,10 @@ int virTestMain(int argc,
#ifdef __APPLE__ #ifdef __APPLE__
# define PRELOAD_VAR "DYLD_INSERT_LIBRARIES" # define PRELOAD_VAR "DYLD_INSERT_LIBRARIES"
# define MOCK_EXT ".dylib"
#else #else
# define PRELOAD_VAR "LD_PRELOAD" # define PRELOAD_VAR "LD_PRELOAD"
# define MOCK_EXT ".so"
#endif #endif
#define VIR_TEST_PRELOAD(lib) \ #define VIR_TEST_PRELOAD(lib) \
...@@ -148,8 +150,6 @@ int virTestMain(int argc, ...@@ -148,8 +150,6 @@ int virTestMain(int argc,
return virTestMain(argc, argv, func, __VA_ARGS__, NULL); \ return virTestMain(argc, argv, func, __VA_ARGS__, NULL); \
} }
#define MOCK_EXT ".so"
#define VIR_TEST_MOCK(mock) (abs_builddir "/.libs/lib" mock "mock" MOCK_EXT) #define VIR_TEST_MOCK(mock) (abs_builddir "/.libs/lib" mock "mock" MOCK_EXT)
virCapsPtr virTestGenericCapsInit(void); virCapsPtr virTestGenericCapsInit(void);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册