* lib/ld.exp (simple_diff): Indicate failure if files have different numbers of
authorKen Raeburn <raeburn@cygnus>
Fri, 28 Jan 1994 20:05:56 +0000 (20:05 +0000)
committerKen Raeburn <raeburn@cygnus>
Fri, 28 Jan 1994 20:05:56 +0000 (20:05 +0000)
lines.  Don't muck with $differences to avoid indicating a pass, just return.

Also got rid of trailing whitespace on some lines.

ld/testsuite/lib/ld.exp

index f4340d0f6a7e3cafb13fcfab2de4899d6cd2f212..659dfe299c617e0c117084a4334d1685390ba640 100644 (file)
@@ -139,25 +139,30 @@ proc simple_diff { file_1 file_2 } {
        }
     }
     close $file_b
-    
+
     for { set i 0 } { $i < [llength $list_a] } { incr i } {
        set line_a [lindex $list_a $i]
        set line_b [lindex $list_b $i]
-       
+
        verbose "\t$file_1: $i: $line_a\n" 3
        verbose "\t$file_2: $i: $line_b\n" 3
        if [string compare $line_a $line_b] then {
-           fail "Test: $target"
-           set differences 1   
-           
            verbose "\t$file_1: $i: $line_a\n" 1
            verbose "\t$file_2: $i: $line_b\n" 1
-           
+
            send_log "\t$file_1: $i: $line_a\n"
            send_log "\t$file_2: $i: $line_b\n"
+
+           fail "Test: $target"
+           return
        }
     }
     
+    if { [llength $list_a] != [llength $list_b] } {
+       fail "Test: $target"
+       return
+    }
+
     if $differences<1 then {
        pass "Test: $target"
     }
This page took 0.062991 seconds and 4 git commands to generate.