diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2022-08-02 13:54:57 +0200 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2022-08-02 18:28:35 +0200 |
commit | 5f347d3160f745b8ed1c1290a61956cdcc09a73a (patch) | |
tree | 774fc06321a68aa187cbacd87466b26668af3ebd /test/TEST-70-TPM2 | |
parent | mkosi: Update to latest commit (diff) | |
download | systemd-5f347d3160f745b8ed1c1290a61956cdcc09a73a.tar.xz systemd-5f347d3160f745b8ed1c1290a61956cdcc09a73a.zip |
test: install libgcc_s.so.1 explicitly if available
Since the library is dlopen()ed by libpthread and required during
pthread_exit()/pthread_cancel(), let's install it explicitly if available to
avoid unexpected fails in tests. This also consolidates all related
workarounds for this library across the test scripts.
Diffstat (limited to 'test/TEST-70-TPM2')
-rwxr-xr-x | test/TEST-70-TPM2/test.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/TEST-70-TPM2/test.sh b/test/TEST-70-TPM2/test.sh index baf75aaf11..90197a71b9 100755 --- a/test/TEST-70-TPM2/test.sh +++ b/test/TEST-70-TPM2/test.sh @@ -20,11 +20,6 @@ test_append_files() { install_dmevent generate_module_dependencies inst_binary tpm2_pcrextend - - # On Ubuntu, cryptsetup does not link against libgcc_s.so.1 - if get_bool "$LOOKS_LIKE_DEBIAN"; then - inst_library "/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)/libgcc_s.so.1" - fi } TEST_70_TPM_DEVICE="tpm-tis" |