diff options
author | NingSun <ning.sun@intel.com> | 2018-02-08 08:34:03 -0800 |
---|---|---|
committer | NingSun <ning.sun@intel.com> | 2018-02-08 09:14:52 -0800 |
commit | 0c89b3ccba7c9b7332ab67ae1936aff51ca62367 (patch) | |
tree | 70c1b1d160d4c6d0a83395ca9a87c1264d0d3439 /SoftHSMv2/src/lib/test/README | |
parent | 945613b4db4e07f75d2bc7463db580ddfaa700fd (diff) |
Initial sshsm project structure
Issue-ID: AAF-94
Change-Id: I5e82fff418e7567b161acf9b98013a9b85ffc5b4
Signed-off-by: NingSun <ning.sun@intel.com>
Diffstat (limited to 'SoftHSMv2/src/lib/test/README')
-rw-r--r-- | SoftHSMv2/src/lib/test/README | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/SoftHSMv2/src/lib/test/README b/SoftHSMv2/src/lib/test/README new file mode 100644 index 0000000..d9e6cce --- /dev/null +++ b/SoftHSMv2/src/lib/test/README @@ -0,0 +1,17 @@ +To build for test of SoftHSM with static linking: +make p11test + +To build for testing another p11 module provided as shared library: +make p11test_DEPENDENCIES= p11test_LDADD= CPPFLAGS=-DP11M=\\\"./p11m.so\\\" p11test +Substitute ./p11m.so with the path to your shared library. +Note that nothing else of SoftHSMv2 has to be built in order to build the test of an external p11. + +To run the test with first a test summary and then specific output of each failure: +./p11test + +To get output of each test after it is executed: +./p11test direct + +To run a specific test: +./p11test ObjectTests::testArrayAttribute +Substitute 'ObjectTests::testArrayAttribute' with the test you want to run. |