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
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From: Egbert Eich <eich@suse.com>
|
|
Date: Wed Jun 15 08:41:45 2022 +0200
|
|
Subject: Fix test 38.11
|
|
Patch-mainline: Not yet
|
|
Git-repo: https://github.com/SchedMD/slurm
|
|
Git-commit: 235768790cb2e9cf011e6d08116a468ebec71582
|
|
References:
|
|
|
|
Signed-off-by: Egbert Eich <eich@suse.com>
|
|
Signed-off-by: Egbert Eich <eich@suse.de>
|
|
---
|
|
testsuite/expect/test38.11 | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
diff --git a/testsuite/expect/test38.11 b/testsuite/expect/test38.11
|
|
index d2c07d60c7..bf5d10ecc9 100755
|
|
--- a/testsuite/expect/test38.11
|
|
+++ b/testsuite/expect/test38.11
|
|
@@ -99,9 +99,9 @@ make_bash_script $script "
|
|
$srun -N1 -n1 --het-group=0 mkdir -p $tmp_dir/$node1
|
|
$srun -N1 -n1 --het-group=1 mkdir -p $tmp_dir/$node2
|
|
|
|
-$sbcast -f -j$het_job_id $srun $tmp_dir/file
|
|
-$sbcast -f -j${het_job_id}+0 $srun $tmp_dir/$node1/file_comp0
|
|
-$sbcast -f -j${het_job_id}+1 $srun $tmp_dir/$node2/file_comp1
|
|
+$sbcast -f -j\$SLURM_JOBID $srun $tmp_dir/file
|
|
+$sbcast -f -j\$SLURM_JOBID $srun $tmp_dir/$node1/file_comp0
|
|
+$sbcast -f -j\$((SLURM_JOBID+1)) $srun $tmp_dir/$node2/file_comp1
|
|
|
|
echo -n \"\nChecking node 1: \"
|
|
$srun -Q -N1 -n1 --het-group=1 ls $tmp_dir/file
|