aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2008-04-07 13:12:42 +1000
committerBen Elliston <bje@gnu.org>2008-04-07 13:12:42 +1000
commitdcf70cbace29c446c77c5e1ea38f1bb223562722 (patch)
tree264074b5a7002d0b51273bb219edd4ffd15f1535
parent47b49b1ef908e8748a110ea12d057f4100793996 (diff)
downloaddejagnu-dcf70cbace29c446c77c5e1ea38f1bb223562722.zip
dejagnu-dcf70cbace29c446c77c5e1ea38f1bb223562722.tar.gz
dejagnu-dcf70cbace29c446c77c5e1ea38f1bb223562722.tar.bz2
* lib/utils.exp (diff): Open both files as binary.
-rw-r--r--ChangeLog4
-rw-r--r--lib/utils.exp2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 210c0f5..c72ffd0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-06 Daniel Jacobowitz <drow@false.org>
+
+ * lib/utils.exp (diff): Open both files as binary.
+
2008-04-06 Daniel Jacobowitz <dan@codesourcery.com>
* dejagnu.h (totals): Correct typos.
diff --git a/lib/utils.exp b/lib/utils.exp
index 9c9575d..6c9ff98 100644
--- a/lib/utils.exp
+++ b/lib/utils.exp
@@ -320,6 +320,7 @@ proc diff { file_1 file_2 } {
if {[file exists ${file_1}]} {
set file_a [open ${file_1} r]
+ fconfigure $file_a -encoding binary
} else {
warning "${file_1} doesn't exist"
return 0
@@ -327,6 +328,7 @@ proc diff { file_1 file_2 } {
if {[file exists ${file_2}]} {
set file_b [open ${file_2} r]
+ fconfigure $file_b -encoding binary
} else {
warning "${file_2} doesn't exist"
return 0