From ad5121bcac27030a198672315a3e5cbbb749e7ff Mon Sep 17 00:00:00 2001 From: thebaptiste Date: Mon, 28 Oct 2024 08:39:14 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20authorize=20mp=C3=AEch=20dependencies?= =?UTF-8?q?=20for=20fedora>=3D39?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../0096_system_extra_dependencies/list.txt | 15 +++++++++++++-- .../0096_system_extra_dependencies/test.sh | 4 ++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/common_files/integration_tests/0096_system_extra_dependencies/list.txt b/common_files/integration_tests/0096_system_extra_dependencies/list.txt index 6898312..d79363e 100644 --- a/common_files/integration_tests/0096_system_extra_dependencies/list.txt +++ b/common_files/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/common_files/integration_tests/0096_system_extra_dependencies/test.sh b/common_files/integration_tests/0096_system_extra_dependencies/test.sh index 893572b..42721b6 100755 --- a/common_files/integration_tests/0096_system_extra_dependencies/test.sh +++ b/common_files/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