Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
4927afcd
Commit
4927afcd
authored
15 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
modify test4.12 to only check for nodes in the default partition
parent
fec57371
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
testsuite/expect/globals
+1
-1
1 addition, 1 deletion
testsuite/expect/globals
testsuite/expect/test4.12
+78
-13
78 additions, 13 deletions
testsuite/expect/test4.12
with
79 additions
and
14 deletions
testsuite/expect/globals
+
1
−
1
View file @
4927afcd
...
...
@@ -177,7 +177,7 @@ set end_of_line "\[\r\n\]"
set number "\[0-9\]+"
set float "\[0-9\]+\\.?\[0-9\]+"
set whitespace "\[ \t\n\r\f\v\]+"
set alpha_numeric_nodelist "$alpha_numeric_under\\\[?\[$alpha_numeric_under\]?\\\]"
set alpha_numeric_nodelist "$alpha_numeric_under\\\[?\[$alpha_numeric_under\]?\\\]
?
"
#
# Cache SlurmUser to check for SuperUser requests
#
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test4.12
+
78
−
13
View file @
4927afcd
...
...
@@ -282,12 +282,77 @@ proc allocate_and_quit { node proc_cnt total_procs } {
print_header $test_id
# find
me an idle node
# find
the default partition
log_user 0
spawn $scontrol show node
set def_part ""
set def_part_found 0
spawn $sinfo
expect {
-re "NodeName=($alpha_numeric_under) State=IDLE Procs=($number)(k?).* Sockets=($number) CoresPerSocket=($number) ThreadsPerCore=($number)" {
if {!$inode_found} {
-re "($alpha_numeric_under)\\\* " {
set def_part $expect_out(1,string)
set def_part_found 1
exp_continue
}
timeout {
send_user "\nFAILURE: sinfo not responding\n"
set exit_code 1
}
eof {
wait
}
}
log_user 1
if {!$def_part_found} {
send_user "\nFAILURE: could not default partition on the system\n"
exit 1
}
# find the nodes in the default partition
log_user 1
set def_hostlist ""
spawn $scontrol show part $def_part
expect {
-re " Nodes=($alpha_numeric_nodelist)" {
set def_hostlist $expect_out(1,string)
exp_continue
}
timeout {
send_user "\nFAILURE: scontrol not responding\n"
set exit_code 1
}
eof {
wait
}
}
set host_cnt 0
spawn $scontrol show hostnames $def_hostlist
expect {
-re "($alpha_numeric_under)" {
set host_name($host_cnt) $expect_out(1,string)
incr host_cnt
exp_continue
}
timeout {
send_user "\nFAILURE: scontrol not responding\n"
set exit_code 1
}
eof {
wait
}
}
log_user 1
if {$host_cnt == 0} {
send_user "\nFAILURE: could not any nodes in default partition\n"
exit 1
}
# find me an idle node in default partition
log_user 0
set inode_found 0
for {set host_inx 0} {($host_inx < $host_cnt) && ($inode_found == 0)} {incr host_inx} {
spawn $scontrol show node
expect {
-re "NodeName=($alpha_numeric_under) State=IDLE Procs=($number)(k?).* Sockets=($number) CoresPerSocket=($number) ThreadsPerCore=($number)" {
set inode_name $expect_out(1,string)
set inode_procs $expect_out(2,string)
if {[string compare $expect_out(3,string) ""]} {
...
...
@@ -297,21 +362,21 @@ expect {
set inode_cores_per_socket $expect_out(5,string)
set inode_threads_per_core $expect_out(6,string)
set inode_found 1
exp_continue
}
timeout {
send_user "\nFAILURE: scontrol not responding\n"
set exit_code 1
}
eof {
wait
}
exp_continue
}
timeout {
send_user "\nFAILURE: scontrol not responding\n"
set exit_code 1
}
eof {
wait
}
}
log_user 1
if {!$inode_found} {
send_user "\nFAILURE: couldn't find an idle node
o
n the
system
\n"
send_user "\nFAILURE: couldn't find an idle node
i
n the
default partition
\n"
exit 1
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment