Skip to content
Snippets Groups Projects
Commit 50d2c60b authored by Morris Jette's avatar Morris Jette
Browse files

Merge branch 'slurm-2.6'

parents 7acf05fb 063fd7f4
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
...@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment