diff options
Diffstat (limited to 'p11-kit/fixtures/system-modules')
6 files changed, 29 insertions, 0 deletions
diff --git a/p11-kit/fixtures/system-modules/one.module b/p11-kit/fixtures/system-modules/one.module new file mode 100644 index 0000000..5f49a8f --- /dev/null +++ b/p11-kit/fixtures/system-modules/one.module @@ -0,0 +1,5 @@ + +module: mock-one.so +setting: system1 +trust-policy: yes +number: 18 diff --git a/p11-kit/fixtures/system-modules/two-duplicate.module b/p11-kit/fixtures/system-modules/two-duplicate.module new file mode 100644 index 0000000..756af69 --- /dev/null +++ b/p11-kit/fixtures/system-modules/two-duplicate.module @@ -0,0 +1,4 @@ + +# This is a duplicate of the 'two' module +module: mock-two.so +# no priority, use name
\ No newline at end of file diff --git a/p11-kit/fixtures/system-modules/two.badname b/p11-kit/fixtures/system-modules/two.badname new file mode 100644 index 0000000..eec3af0 --- /dev/null +++ b/p11-kit/fixtures/system-modules/two.badname @@ -0,0 +1,6 @@ +# 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.so +setting: system2 +# no priority, use name
\ No newline at end of file diff --git a/p11-kit/fixtures/system-modules/win32/one.module b/p11-kit/fixtures/system-modules/win32/one.module new file mode 100644 index 0000000..d153ce5 --- /dev/null +++ b/p11-kit/fixtures/system-modules/win32/one.module @@ -0,0 +1,4 @@ + +module: mock-one.dll +setting: system1 +# no order, use name
\ No newline at end of file diff --git a/p11-kit/fixtures/system-modules/win32/two-duplicate.module b/p11-kit/fixtures/system-modules/win32/two-duplicate.module new file mode 100644 index 0000000..54ef1cc --- /dev/null +++ b/p11-kit/fixtures/system-modules/win32/two-duplicate.module @@ -0,0 +1,4 @@ + +# This is a duplicate of the 'two' module +module: mock-two.dll +# no order, use name
\ No newline at end of file diff --git a/p11-kit/fixtures/system-modules/win32/two.badname b/p11-kit/fixtures/system-modules/win32/two.badname new file mode 100644 index 0000000..af63cf9 --- /dev/null +++ b/p11-kit/fixtures/system-modules/win32/two.badname @@ -0,0 +1,6 @@ +# 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 +# no order, use name
\ No newline at end of file |