Skip to content
Snippets Groups Projects
Commit dcb46cdb authored by Tim Wickberg's avatar Tim Wickberg
Browse files

Correct part of test21.36 - "lost jobs" became "runawayjobs" with no space.

parent cbcb53a5
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env expect #!/usr/bin/env expect
############################################################################ ############################################################################
# Purpose: Test of SLURM functionality # Purpose: Test of SLURM functionality
# Validates that sacctmgr runaway jobs returns runaway jobs # Validates that sacctmgr show runawayjobs returns runawayjobs
# #
# Output: "TEST: #.#" followed by "SUCCESS" if test was successful, OR # Output: "TEST: #.#" followed by "SUCCESS" if test was successful, OR
# "FAILURE: ..." otherwise with an explanation of the failure, OR # "FAILURE: ..." otherwise with an explanation of the failure, OR
...@@ -201,11 +201,11 @@ if {[archive_load $sql_query]} { ...@@ -201,11 +201,11 @@ if {[archive_load $sql_query]} {
endit endit
} }
# Test sacctmgr show runaway jobs # Test sacctmgr show runawayjobs
set list_job 0 set list_job 0
# Use temp conf file to use different cluster name. # Use temp conf file to use different cluster name.
set env(SLURM_CONF) $test_conf_file set env(SLURM_CONF) $test_conf_file
spawn $sacctmgr show -i runaway jobs spawn $sacctmgr show -i runawayjobs $cluster
expect { expect {
-re "NOTE: Runaway jobs" { -re "NOTE: Runaway jobs" {
set list_job 1 set list_job 1
...@@ -228,7 +228,7 @@ if {$list_job != 1} { ...@@ -228,7 +228,7 @@ if {$list_job != 1} {
# Check that jobs were fixed # Check that jobs were fixed
set list_job 0 set list_job 0
spawn $sacctmgr show -i runaway jobs spawn $sacctmgr show -i runawayjobs $cluster
expect { expect {
-re "No runaway jobs found" { -re "No runaway jobs found" {
set list_job 1 set list_job 1
......
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