diff options
author | Paul Brook <paul@codesourcery.com> | 2005-05-05 03:11:24 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2005-05-05 03:11:24 +0000 |
commit | 5cfd5a0c98ac5b7526514b7d3764be9ce0714900 (patch) | |
tree | 1d9cadb64aacfccd8af885535e87e1f23da962ac /gas | |
parent | ae380b457346a93dc674ab191fbfbd0dd92c2583 (diff) | |
download | fsf-binutils-gdb-5cfd5a0c98ac5b7526514b7d3764be9ce0714900.zip fsf-binutils-gdb-5cfd5a0c98ac5b7526514b7d3764be9ce0714900.tar.gz fsf-binutils-gdb-5cfd5a0c98ac5b7526514b7d3764be9ce0714900.tar.bz2 |
2005-05-05 Paul Brook <paul@codesourcery.com>
gas/testsuite/
* lib/gas-defs.exp (regexp_diff): Pass test if last line is "#...".
ld/testsuite/
* lib/ld-lib.exp (regexp_diff): Pass test if last line is "#...".
* ld-elfweak/elfweak.exp: Run size2.d.
* ld-elfwaek/size2.d: New file.
* ld-elfwaek/size2a.s: New file.
* ld-elfwaek/size2b.s: New file.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/lib/gas-defs.exp | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 2504e0c..d49061a 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-05-05 Paul Brook <paul@codesourcery.com> + + * lib/gas-defs.exp (regexp_diff): Pass test if last line is "#...". + 2005-04-26 H.J. Lu <hongjiu.lu@intel.com> * gas/all/assign.s: Make `x' and `y' global. diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp index 9f93373..87efa5e 100644 --- a/gas/testsuite/lib/gas-defs.exp +++ b/gas/testsuite/lib/gas-defs.exp @@ -663,6 +663,7 @@ proc regexp_diff { file_1 file_2 } { } elseif [ string match "#..." $line_b ] { if { [gets $file_b line_b] == $eof } { set end_2 1 + set diff_pass 1 break } verbose "looking for \"^$line_b$\"" 3 |