* lib/binutils-common.exp (regexp_diff): Use "==" instead of "eq".
authorDave Anglin <dave.anglin@nrc.ca>
Mon, 3 Jan 2011 16:53:28 +0000 (16:53 +0000)
committerDave Anglin <dave.anglin@nrc.ca>
Mon, 3 Jan 2011 16:53:28 +0000 (16:53 +0000)
binutils/testsuite/ChangeLog
binutils/testsuite/lib/binutils-common.exp

index 4b65fcf..faf6d99 100644 (file)
@@ -1,3 +1,7 @@
+2011-01-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       * lib/binutils-common.exp (regexp_diff): Use "==" instead of "eq".
+
 2010-12-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
 
        * binutils-all/copy-2.d: Change "hppa" to "hppa*" in not-target list.
index 424ca3d..8e2c36f 100644 (file)
@@ -237,7 +237,7 @@ proc regexp_diff { file_1 file_2 args } {
                    set diff_pass 1
                    break
                }
-               set negated [expr { [string index $line_b 0] eq "!" }]
+               set negated [expr { [string index $line_b 0] == "!" }]
                set line_bx [string range $line_b $negated end]
                set n [expr { $negated ? "! " : "" }]
                # Substitute on the reference.
@@ -275,7 +275,7 @@ proc regexp_diff { file_1 file_2 args } {
            set differences 1
            break
        } else {
-           set negated [expr { [string index $line_b 0] eq "!" }]
+           set negated [expr { [string index $line_b 0] == "!" }]
            set line_bx [string range $line_b $negated end]
            set n [expr { $negated ? "! " : "" }]
            set s [expr { $negated ? "  " : "" }]