From 5f51a47a1772396df829e845886a8a7dcab9442b Mon Sep 17 00:00:00 2001 From: metworkbot Date: Mon, 28 Oct 2024 08:46:01 +0000 Subject: [PATCH] build: sync common files from github_organization_management repository --- .../0096_system_extra_dependencies/list.txt | 15 +++++++++++++-- .../0096_system_extra_dependencies/test.sh | 4 ++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/integration_tests/0096_system_extra_dependencies/list.txt b/integration_tests/0096_system_extra_dependencies/list.txt index 6898312..d79363e 100644 --- a/integration_tests/0096_system_extra_dependencies/list.txt +++ b/integration_tests/0096_system_extra_dependencies/list.txt @@ -9,7 +9,6 @@ libbz2.so.1 libc.so.6 libcairo.so.2 libcairo-gobject.so.2 -libcap.so.2 libcares.so.2 libcdt.so.5 libcgraph.so.6 @@ -119,7 +118,6 @@ libthread_db.so.1 libtiff.so.5 libtinfo.so.6 libtk8.6.so -libudev.so.1 libutil.so.1 libuuid.so.1 libunistring.so.2 @@ -146,3 +144,16 @@ libXtst.so.6 libwebp.so.7 libz.so.1 libzstd.so.1 +#mpich dependencies on fedora>=38 below +libcap.so.2 +libudev.so.1 +#mpich dependencies on fedora>=39 below +libefa.so.1 +libfabric.so.1 +libibverbs.so.1 +libnl-3.so.200 +libnl-route-3.so.200 +libnuma.so.1 +libpsm2.so.2 +librdmacm.so.1 +libyaksa.so.0 diff --git a/integration_tests/0096_system_extra_dependencies/test.sh b/integration_tests/0096_system_extra_dependencies/test.sh index 00d2a30..e34f8f2 100755 --- a/integration_tests/0096_system_extra_dependencies/test.sh +++ b/integration_tests/0096_system_extra_dependencies/test.sh @@ -1,8 +1,8 @@ #!/bin/bash -OK_DEPS=$(cat list.txt|xargs) -OK_NOT_FOUND=$(cat list_ok_not_found.txt |xargs) +OK_DEPS=$(cat list.txt|grep -v "#"|xargs) +OK_NOT_FOUND=$(cat list_ok_not_found.txt|grep -v "#"|xargs) #N=$(cat /etc/redhat-release 2>/dev/null |grep -c "^CentOS release 6") #if test "${N}" -eq 0; then