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/files/system-modules/win32 | |
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/files/system-modules/win32')
-rw-r--r-- | tests/files/system-modules/win32/one.module | 3 | ||||
-rw-r--r-- | tests/files/system-modules/win32/two-duplicate.module | 3 | ||||
-rw-r--r-- | tests/files/system-modules/win32/two.badname | 5 |
3 files changed, 11 insertions, 0 deletions
diff --git a/tests/files/system-modules/win32/one.module b/tests/files/system-modules/win32/one.module new file mode 100644 index 0000000..5f80304 --- /dev/null +++ b/tests/files/system-modules/win32/one.module @@ -0,0 +1,3 @@ + +module: mock-one.dll +setting: system1
\ No newline at end of file diff --git a/tests/files/system-modules/win32/two-duplicate.module b/tests/files/system-modules/win32/two-duplicate.module new file mode 100644 index 0000000..e80c9e8 --- /dev/null +++ b/tests/files/system-modules/win32/two-duplicate.module @@ -0,0 +1,3 @@ + +# This is a duplicate of the 'two' module +module: mock-two.dll diff --git a/tests/files/system-modules/win32/two.badname b/tests/files/system-modules/win32/two.badname new file mode 100644 index 0000000..ae44b83 --- /dev/null +++ b/tests/files/system-modules/win32/two.badname @@ -0,0 +1,5 @@ +# This module doesn't have a .module extension, but p11-kit doesn't yet +# enforce the naming, just warns, so it should still be loaded + +module: mock-two.dll +setting: system2 |