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
bb1face5
Commit
bb1face5
authored
14 years ago
by
Don Lipari
Browse files
Options
Downloads
Patches
Plain Diff
Fixed typo in three tests: interations -> iterations
parent
67d167f7
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/test1.26
+4
-4
4 additions, 4 deletions
testsuite/expect/test1.26
testsuite/expect/test7.2.prog.c
+1
-1
1 addition, 1 deletion
testsuite/expect/test7.2.prog.c
testsuite/expect/test9.7
+3
-3
3 additions, 3 deletions
testsuite/expect/test9.7
with
8 additions
and
8 deletions
testsuite/expect/test1.26
+
4
−
4
View file @
bb1face5
...
...
@@ -36,7 +36,7 @@
source ./globals
set test_id "1.26"
set i
n
terations 100
set iterations 100
set exit_code 0
print_header $test_id
...
...
@@ -156,7 +156,7 @@ if {[string compare $host_1 $include_node]} {
set front_end [test_front_end]
set successes 0
for {set inx 0} {$inx < $i
n
terations} {incr inx} {
for {set inx 0} {$inx < $iterations} {incr inx} {
exec $bin_usleep 250000
set failures 0
...
...
@@ -256,8 +256,8 @@ for {set inx 0} {$inx < $interations} {incr inx} {
set exit_code 1
}
}
if {$successes != $i
n
terations} {
send_user "\nFAILURE: only $successes of $i
n
terations completed successfully\n"
if {$successes != $iterations} {
send_user "\nFAILURE: only $successes of $iterations completed successfully\n"
}
if {$exit_code == 0} {
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test7.2.prog.c
+
1
−
1
View file @
bb1face5
...
...
@@ -359,7 +359,7 @@ main (int argc, char **argv)
/* Replicate the very heavy load that MVAPICH2 puts on PMI
* This load exceeds that of MPICH2 by a very wide margin */
#if _DEBUG
printf
(
"Starting %d i
n
terations each with %d PMI_KVS_Put and
\n
"
printf
(
"Starting %d iterations each with %d PMI_KVS_Put and
\n
"
" one each PMI_KVS_Commit and KVS_Barrier
\n
"
,
BARRIER_CNT
,
PUTS_PER_BARRIER
);
fflush
(
stdout
);
...
...
This diff is collapsed.
Click to expand it.
testsuite/expect/test9.7
+
3
−
3
View file @
bb1face5
...
...
@@ -35,7 +35,7 @@ source ./globals
set test_id "9.7"
set exit_code 0
set file_script "./test$test_id.bash"
set i
n
terations 5
set iterations
5
set sleep_time 1
set task_cnt 10
...
...
@@ -53,7 +53,7 @@ if {[test_front_end] != 0} {
# Initiate $task_cnt parallel tasks
#
for {set inx 0} {$inx < $task_cnt} {incr inx} {
spawn $bin_bash $file_script $sinfo $srun $squeue $sleep_time $i
n
terations [test_bluegene]
spawn $bin_bash $file_script $sinfo $srun $squeue $sleep_time $iterations [test_bluegene]
set task_id($inx) $spawn_id
}
...
...
@@ -61,7 +61,7 @@ for {set inx 0} {$inx < $task_cnt} {incr inx} {
# Test output for successful completion messasge
#
set success_cnt 0
set timeout [expr $max_job_delay * $i
n
terations * $task_cnt]
set timeout [expr $max_job_delay * $iterations * $task_cnt]
for {set inx 0} {$inx < $task_cnt} {incr inx} {
set spawn_id $task_id($inx)
expect {
...
...
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