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
5710073a
Commit
5710073a
authored
4 years ago
by
Scott Jackson
Committed by
Albert Gil
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Testsuite - Temporarily capture database dump to debug test 12.3
Bug 9681
parent
392c1fae
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testsuite/expect/inc12.3.1
+20
-1
20 additions, 1 deletion
testsuite/expect/inc12.3.1
with
20 additions
and
1 deletion
testsuite/expect/inc12.3.1
+
20
−
1
View file @
5710073a
...
@@ -30,9 +30,28 @@ source ./globals_accounting
...
@@ -30,9 +30,28 @@ source ./globals_accounting
proc inc12_3_1 {job_id_1 job_id_2 job_name_1 job_name_2 test_acct} {
proc inc12_3_1 {job_id_1 job_id_2 job_name_1 job_name_2 test_acct} {
global sacct
global sacct
# TODO: Temporary variables to debug bug 9681 (remove once fixed)
set username [get_my_user_name]
set hostname [string trimright [run_command_output "hostname -s"]]
log_info "Search for job ID $job_id_1 having name $job_name_1"
log_info "Search for job ID $job_id_1 having name $job_name_1"
set output [run_command_output -fail "$sacct -A '$test_acct' --name=$job_name_1 -X -P -o jobid -v -v"]
set output [run_command_output -fail "$sacct -A '$test_acct' --name=$job_name_1 -X -P -o jobid -v -v"]
subtest [regexp -line "^$job_id_1$" $output] "sacct should show job $job_id_1 as having name $job_name_1"
# TODO: Temporarily breakup subtest to debug bug 9681 (restore once fixed)
#subtest [regexp -line "^$job_id_1$" $output] "sacct should show job $job_id_1 as having name $job_name_1"
if [regexp -line "^$job_id_1$" $output] {
subpass "sacct should show job $job_id_1 as having name $job_name_1"
} else {
if {$hostname eq "knl2" && $username eq "jenkins"} {
global slurm_dir
set dbd_dict [get_config -dbd]
set database_user [dict get $dbd_dict "StorageUser"]
set database_host [dict get $dbd_dict "StorageHost"]
set database_port [dict get $dbd_dict "StoragePort"]
set database_name [dict get $dbd_dict "StorageLoc"]
run_command "mysqldump -u $database_user -h $database_host -P $database_port $database_name > $slurm_dir/log/slurmdb.sql"
}
subfail "sacct should show job $job_id_1 as having name $job_name_1"
}
subtest {![regexp -line "^$job_id_2$" $output]} "sacct should not show job $job_id_2 as having name $job_name_1"
subtest {![regexp -line "^$job_id_2$" $output]} "sacct should not show job $job_id_2 as having name $job_name_1"
log_info "Search for job ID $job_id_2 having name $job_name_2"
log_info "Search for job ID $job_id_2 having name $job_name_2"
...
...
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