diff options
author | Stef Walter <stefw@gnome.org> | 2012-07-17 08:05:18 +0200 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2012-07-26 12:22:31 +0200 |
commit | 356377709cd1de1308d9d8cf15f528578a360cf3 (patch) | |
tree | 6266878e283f1eeaf582dbe14818853793fb120f /tests/test-init.c | |
parent | f10d361a5b523ce7f9289ba8d45ccd847510d619 (diff) |
Use correct shared library extension on windows
* The windows shared libraries have the .dll extension
* This means we also need separate directories for the test module
configs on win32
https://bugzilla.gnome.org/show_bug.cgi?id=44740
Diffstat (limited to 'tests/test-init.c')
-rw-r--r-- | tests/test-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-init.c b/tests/test-init.c index 8128db6..d872afa 100644 --- a/tests/test-init.c +++ b/tests/test-init.c @@ -273,7 +273,7 @@ test_load_and_initialize (CuTest *tc) CK_RV rv; int ret; - rv = p11_kit_load_initialize_module (BUILDDIR "/.libs/mock-one.so", &module); + rv = p11_kit_load_initialize_module (BUILDDIR "/.libs/mock-one" SHLEXT, &module); CuAssertTrue (tc, rv == CKR_OK); CuAssertTrue (tc, module != NULL); |