File tree Expand file tree Collapse file tree 5 files changed +956
-1
lines changed
Expand file tree Collapse file tree 5 files changed +956
-1
lines changed Original file line number Diff line number Diff line change 9090 uses : ./.github/workflows/build-workflow.yml
9191 with :
9292 config : --enable-pbkdf2 --with-pbkdf2-iterations=1000
93-
93+ pkcs11v3only :
94+ uses : ./.github/workflows/build-workflow.yml
95+ with :
96+ config : --enable-pkcs11v30 --disable-pkcs11v32
97+ pkcs11v32 :
98+ uses : ./.github/workflows/build-workflow.yml
99+ with :
100+ config : --enable-pkcs11v32
101+ pkcs11v32-static :
102+ uses : ./.github/workflows/build-workflow.yml
103+ with :
104+ config : --enable-pkcs11v32 --disable-shared
94105 debug :
95106 uses : ./.github/workflows/build-workflow.yml
96107 with :
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ tests/object_id_uniqueness_test
3838tests /rsa_session_persistence_test
3939tests /debug_test
4040tests /token_path_test
41+ tests /pkcs11v3test
4142examples /add_aes_key
4243examples /add_hmac_key
4344examples /add_rsa_key
Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ noinst_PROGRAMS += tests/object_id_uniqueness_test
3636tests_object_id_uniqueness_test_SOURCES = tests/object_id_uniqueness_test.c
3737tests_object_id_uniqueness_test_LDADD =
3838
39+ check_PROGRAMS += tests/pkcs11v3test
40+ noinst_PROGRAMS += tests/pkcs11v3test
41+ tests_pkcs11v3test_SOURCES = tests/pkcs11v3test.c
42+ tests_pkcs11v3test_LDADD =
43+
3944if BUILD_STATIC
4045tests_pkcs11test_LDADD += src/libwolfpkcs11.la
4146tests_pkcs11mtt_LDADD += src/libwolfpkcs11.la
@@ -44,6 +49,7 @@ tests_token_path_test_LDADD += src/libwolfpkcs11.la
4449tests_rsa_session_persistence_test_LDADD += src/libwolfpkcs11.la
4550tests_debug_test_LDADD += src/libwolfpkcs11.la
4651tests_object_id_uniqueness_test_LDADD += src/libwolfpkcs11.la
52+ tests_pkcs11v3test_LDADD += src/libwolfpkcs11.la
4753else
4854tests_object_id_uniqueness_test_LDADD += src/libwolfpkcs11.la
4955endif
You can’t perform that action at this time.
0 commit comments