From bb1face59d2cf94618627fd810eaa3ced9259f53 Mon Sep 17 00:00:00 2001 From: Don Lipari <lipari1@llnl.gov> Date: Wed, 16 Mar 2011 22:36:31 +0000 Subject: [PATCH] Fixed typo in three tests: interations -> iterations --- testsuite/expect/test1.26 | 8 ++++---- testsuite/expect/test7.2.prog.c | 2 +- testsuite/expect/test9.7 | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/testsuite/expect/test1.26 b/testsuite/expect/test1.26 index 32a5b7adfb7..e2bb45228d7 100755 --- a/testsuite/expect/test1.26 +++ b/testsuite/expect/test1.26 @@ -36,7 +36,7 @@ source ./globals set test_id "1.26" -set interations 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 < $interations} {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 != $interations} { - send_user "\nFAILURE: only $successes of $interations completed successfully\n" +if {$successes != $iterations} { + send_user "\nFAILURE: only $successes of $iterations completed successfully\n" } if {$exit_code == 0} { diff --git a/testsuite/expect/test7.2.prog.c b/testsuite/expect/test7.2.prog.c index bc54443fc89..e77f71958c3 100644 --- a/testsuite/expect/test7.2.prog.c +++ b/testsuite/expect/test7.2.prog.c @@ -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 interations 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); diff --git a/testsuite/expect/test9.7 b/testsuite/expect/test9.7 index ef8cb7fcb5d..190500291ef 100755 --- a/testsuite/expect/test9.7 +++ b/testsuite/expect/test9.7 @@ -35,7 +35,7 @@ source ./globals set test_id "9.7" set exit_code 0 set file_script "./test$test_id.bash" -set interations 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 $interations [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 * $interations * $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 { -- GitLab