Skip to content
Snippets Groups Projects
Commit 362d63f5 authored by Albert Gil's avatar Albert Gil
Browse files

Testsuite - Improve test3.2 moving skip and forcing admin level


Logic related to "authorized" removed as it was just skipping.

Bug 10810

Signed-off-by: default avatarScott Jackson <scottmo@schedmd.com>
parent 1815cbc2
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
############################################################################ ############################################################################
source ./globals source ./globals
set authorized 1
set job_runnable 0 set job_runnable 0
set part_name "" set part_name ""
set part_old_state "" set part_old_state ""
...@@ -36,6 +35,10 @@ set part_new_state "" ...@@ -36,6 +35,10 @@ set part_new_state ""
set read_state "" set read_state ""
set timeout $max_job_delay set timeout $max_job_delay
if {![is_super_user]} {
skip "Test needs admin to update partition state"
}
# Execute a srun job in the specified partition name # Execute a srun job in the specified partition name
# Returns true if srun timedout with a DOWN state message, false otherwise # Returns true if srun timedout with a DOWN state message, false otherwise
proc check_part_down { part_name } { proc check_part_down { part_name } {
...@@ -136,23 +139,6 @@ if {$job_runnable == 0} { ...@@ -136,23 +139,6 @@ if {$job_runnable == 0} {
# #
spawn $scontrol update PartitionName=$part_name State=$part_new_state spawn $scontrol update PartitionName=$part_name State=$part_new_state
expect { expect {
-re "slurm_update error: ($re_word_str) ($re_word_str)" {
set access_err 0
set err_msg1 $expect_out(1,string)
set err_msg2 $expect_out(2,string)
if {[string compare $err_msg1 "Invalid"] == 0} {
set access_err 1
}
if {[string compare $err_msg2 "user"] == 0} {
set access_err 1
}
if {$access_err == 1} {
skip "User not authorized to change slurm state"
} else {
set authorized 0
}
exp_continue
}
timeout { timeout {
fail "scontrol not responding" fail "scontrol not responding"
} }
...@@ -177,9 +163,7 @@ expect { ...@@ -177,9 +163,7 @@ expect {
wait wait
} }
} }
if {$authorized == 1} { subtest {[string compare $read_state $part_new_state] == 0} "scontrol should be able to change the partition state"
subtest {[string compare $read_state $part_new_state] == 0} "scontrol should be able to change the partition state"
}
# #
# Confirm that a DOWN partition does not run any jobs # Confirm that a DOWN partition does not run any jobs
...@@ -224,6 +208,4 @@ expect { ...@@ -224,6 +208,4 @@ expect {
wait wait
} }
} }
if {$authorized == 1} { subtest {[string compare $read_state $part_old_state] == 0} "scontrol should be able to change the partition state"
subtest {[string compare $read_state $part_old_state] == 0} "scontrol should be able to change the partition state"
}
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