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
e38a1e0d
Commit
e38a1e0d
authored
16 years ago
by
Joseph P. Donaghy
Browse files
Options
Downloads
Patches
Plain Diff
Initial checkin of test for --helpformat option of sacct.
parent
b8c5e7b3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
testsuite/expect/Makefile.am
+1
-0
1 addition, 0 deletions
testsuite/expect/Makefile.am
testsuite/expect/README
+2
-1
2 additions, 1 deletion
testsuite/expect/README
testsuite/expect/test12.5
+156
-0
156 additions, 0 deletions
testsuite/expect/test12.5
with
159 additions
and
1 deletion
testsuite/expect/Makefile.am
+
1
−
0
View file @
e38a1e0d
...
@@ -213,6 +213,7 @@ EXTRA_DIST = \
...
@@ -213,6 +213,7 @@ EXTRA_DIST = \
test12.2.prog.c
\
test12.2.prog.c
\
test12.3
\
test12.3
\
test12.4
\
test12.4
\
test12.5
\
test13.1
\
test13.1
\
test14.1
\
test14.1
\
test14.2
\
test14.2
\
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/README
+
2
−
1
View file @
e38a1e0d
...
@@ -354,7 +354,8 @@ test12.1 Test sacct --help option.
...
@@ -354,7 +354,8 @@ test12.1 Test sacct --help option.
test12.2 Test validity/accuracy of accounting data for exit code,
test12.2 Test validity/accuracy of accounting data for exit code,
memory and real-time information along with stating a running job.
memory and real-time information along with stating a running job.
test12.3 Test sacct --allusers option.
test12.3 Test sacct --allusers option.
test12.3 Test sacct --brief option.
test12.4 Test sacct --brief option.
test12.5 Test sacct --helpformat option.
test13.# Testing of switch plugins
test13.# Testing of switch plugins
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test12.5
0 → 100755
+
156
−
0
View file @
e38a1e0d
#!/usr/bin/expect
############################################################################
# Purpose: Test of SLURM functionality
# Test sacct --helpformat option.
#
# Output: "TEST: #.#" followed by "SUCCESS" if test was successful, OR
# "FAILURE: ..." otherwise with an explanation of the failure, OR
# anything else indicates a failure mode that must be investigated.
############################################################################
# Copyright (C) 2008-2009 TheLawrence Livermore National Security, LLC .
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
# Written by Joseph Donaghy <donaghy1@llnl.gov>
# LLNL-CODE-402394.
#
# This file is part of SLURM, a resource management program.
# For details, see <http://www.llnl.gov/linux/slurm/>.
#
# SLURM is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along
# with SLURM; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
############################################################################
source ./globals
set test_id "12.5"
set exit_code 0
set matches 0
set not_support 0
print_header $test_id
################################################################
#
# Proc: sacct
#
# Purpose: Pass sacct options and test
#
# Returns: Number of matches.
#
# Input: Switch options -e and --helpformat
#
################################################################
proc sacct_job { soption } {
global sacct
set exit_code 0
set matches 0
set not_support 0
send_user "sacct -$soption\n"
spawn $sacct -$soption
expect {
-re "SLURM accounting storage is disabled" {
set not_support 1
exp_continue
}
-re "AllocCPUS Account AssocID AveCPU" {
incr matches
exp_continue
}
-re "AvePages AveRSS AveVSize BlockID" {
incr matches
exp_continue
}
-re "Cluster CPUTime CPUTimeRAW Elapsed" {
incr matches
exp_continue
}
-re "Eligible End ExitCode GID" {
incr matches
exp_continue
}
-re "Group JobID JobName NodeList" {
incr matches
exp_continue
}
-re "MaxPages MaxPagesNode MaxPagesTask MaxRSS" {
incr matches
exp_continue
}
-re "MaxRSSNode MaxRSSTask MaxVSize MaxVSizeNode" {
incr matches
exp_continue
}
-re "MaxVSizeTask MinCPU MinCPUNode MinCPUTask" {
incr matches
exp_continue
}
-re "NCPUS NNodes NTasks Priority" {
incr matches
exp_continue
}
-re "Partition QOS QOSRAW ReqCPUS" {
incr matches
exp_continue
}
-re "Reserved ResvCPU ResvCPURAW Start" {
incr matches
exp_continue
}
-re "State Submit Suspended SystemCPU" {
incr matches
exp_continue
}
-re "Timelimit TotalCPU UID User" {
incr matches
exp_continue
}
-re "UserCPU WCKey WCKeyID" {
incr matches
exp_continue
}
timeout {
send_user "\nFAILURE: sacct not responding\n"
set exit_code 1
}
eof {
wait
}
}
if {$not_support != 0} {
send_user "\nWARNING: can not test without accounting enabled\n"
exit 0
}
if {$matches != 14} {
send_user "\nFAILURE: sacct -$soption failed ($matches)\n"
set exit_code 1
}
return $matches
}
################################################################
set matches [sacct_job -helpformat]
if {$matches != 14} {
send_user "\nFAILURE: sacct --allusers failed ($matches)\n"
set exit_code 1
}
set matches [sacct_job e]
if {$matches != 14} {
send_user "\nFAILURE: sacct -a failed ($matches)\n"
set exit_code 1
}
if {$exit_code == 0} {
send_user "\nSUCCESS\n"
}
exit $exit_code
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