Egbert Eich
7d13a7ba97
- Package the Slurm testsuite for QA purposes. * Fixes for test suite: Keep-logs-of-skipped-test-when-running-test-cases-sequentially.patch Fix-test-21.41.patch Fix-test-38.11.patch Fix-test-32.8.patch Fix-test-3.13.patch Fix-test7.2-to-find-libpmix-under-lib64-as-well.patch * Add documentation: README_Testsuite.md - Allow log in as user 'slurm'. This allows admins to run certain priviledged commands more easily without becoming root. OBS-URL: https://build.opensuse.org/request/show/988732 OBS-URL: https://build.opensuse.org/package/show/network:cluster/slurm?expand=0&rev=207
27 lines
948 B
Diff
27 lines
948 B
Diff
From: Egbert Eich <eich@suse.com>
|
|
Date: Sat Jul 2 11:25:11 2022 +0200
|
|
Subject: Fix test7.2 to find libpmix under lib64 as well
|
|
Patch-mainline: Not yet
|
|
Git-repo: https://github.com/SchedMD/slurm
|
|
Git-commit: 4771b96995f90a64a828aac16a10bd56db61a711
|
|
References:
|
|
|
|
Signed-off-by: Egbert Eich <eich@suse.com>
|
|
Signed-off-by: Egbert Eich <eich@suse.de>
|
|
---
|
|
testsuite/expect/test7.2 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
diff --git a/testsuite/expect/test7.2 b/testsuite/expect/test7.2
|
|
index 9d1f1a2dee..f63ecd643e 100755
|
|
--- a/testsuite/expect/test7.2
|
|
+++ b/testsuite/expect/test7.2
|
|
@@ -42,7 +42,7 @@ if {[get_config_param "SwitchType"] eq "switch/cray"} {
|
|
skip "This test is incompatible with Cray systems"
|
|
}
|
|
|
|
-if { [file exists ${slurm_dir}/lib/libpmi.so] == 0 } {
|
|
+if { ![file exists ${slurm_dir}/lib/libpmi.so] && ![file exists ${slurm_dir}/lib64/libpmi.so]} {
|
|
skip "PMI library not compiled, can't perform pmi testing"
|
|
}
|
|
|