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
50d2c60b
Commit
50d2c60b
authored
11 years ago
by
Morris Jette
Browse files
Options
Downloads
Plain Diff
Merge branch 'slurm-2.6'
parents
7acf05fb
063fd7f4
No related branches found
Branches containing commit
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
+37
-0
37 additions, 0 deletions
testsuite/expect/globals
testsuite/expect/test21.30
+3
-0
3 additions, 0 deletions
testsuite/expect/test21.30
with
40 additions
and
0 deletions
testsuite/expect/globals
+
37
−
0
View file @
50d2c60b
...
@@ -1009,6 +1009,43 @@ proc test_account_storage { } {
...
@@ -1009,6 +1009,43 @@ proc test_account_storage { } {
return $account_storage
return $account_storage
}
}
################################################################
#
# Proc: test_enforce_limits
#
# Purpose: Determine resouce limits are enforced
# This is based upon
# the value of AccountingStorageEnforce in the slurm.conf.
#
# Returns 1 if the system is enforcing limits, 0 otherwise
#
################################################################
proc test_enforce_limits { } {
global alpha_numeric_comma scontrol
log_user 0
set enforce_limits 0
spawn $scontrol show config
expect {
-re "AccountingStorageEnforce *= ($alpha_numeric_comma)" {
if {[string first "safe" $expect_out(1,string)] != -1 } {
set enforce_limits 1
}
if {[string first "limits" $expect_out(1,string)] != -1 } {
set enforce_limits 1
}
exp_continue
}
eof {
wait
}
}
log_user 1
return $enforce_limits
}
################################################################
################################################################
#
#
# Proc: test_using_slurmdbd
# Proc: test_using_slurmdbd
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test21.30
+
3
−
0
View file @
50d2c60b
...
@@ -171,6 +171,9 @@ proc endit { } {
...
@@ -171,6 +171,9 @@ proc endit { } {
if { [test_account_storage] == 0 } {
if { [test_account_storage] == 0 } {
send_user "\nWARNING: This test can't be run without a usable AccountStorageType\n"
send_user "\nWARNING: This test can't be run without a usable AccountStorageType\n"
exit 0
exit 0
} elseif { [test_enforce_limits] == 0 } {
send_user "\nWARNING: This test can't be run without a usable AccountingStorageEnforce\n"
exit 0
}
}
if { [test_limits_enforced] == 0 } {
if { [test_limits_enforced] == 0 } {
send_user "\nWARNING: This test can't be run without enforcing limits\n"
send_user "\nWARNING: This test can't be run without enforcing limits\n"
...
...
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