From: Ludovic R. <no...@gi...> - 2021-05-06 13:05:52
|
Branch: refs/heads/master Home: https://github.com/OpenSC/OpenSC Commit: 2ea5ed8ddd7bad2b2620e73e9af93b27382e3f4b https://github.com/OpenSC/OpenSC/commit/2ea5ed8ddd7bad2b2620e73e9af93b27382e3f4b Author: Ludovic Rousseau <lud...@fr...> Date: 2021-05-06 (Thu, 06 May 2021) Changed paths: M tests/Makefile.am Log Message: ----------- Fix 'make check' when make --jobs= is used The error was: PASS: test-duplicate-symbols.sh PASS: test-pkcs11-tool-allowed-mechanisms.sh XFAIL: test-pkcs11-tool-test.sh XFAIL: test-pkcs11-tool-test-threads.sh PASS: test-manpage.sh FAIL: test-pkcs11-tool-sign-verify.sh ============================================================================ Testsuite summary for OpenSC 0.22.0-rc1 ============================================================================ ============================================================================ See tests/test-suite.log Please report to https://github.com/OpenSC/OpenSC/issues ============================================================================ This is because more than 1 test is executed at the same time. So card_cleanup() is called at the end of one test while another test is still running. The problem is easy to replicate using "make --jobs=2". |