diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2010-05-05 14:17:50 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2010-05-05 14:17:50 +0000 |
commit | 847d4311801b81716f9670f25ae97aace2740519 (patch) | |
tree | 9c2fe895c155cd4ec40423ce04f6f808de1ddd5b /gas/testsuite | |
parent | 1412f70bc66429290d396f9b0d19ac0851c019b5 (diff) | |
download | fsf-binutils-gdb-847d4311801b81716f9670f25ae97aace2740519.zip fsf-binutils-gdb-847d4311801b81716f9670f25ae97aace2740519.tar.gz fsf-binutils-gdb-847d4311801b81716f9670f25ae97aace2740519.tar.bz2 |
* read.c (cons_worker): Detect and reject unexpected string argument.
testsuite/
* gas/all/byte.s: New.
* gas/all/byte.l: New.
* gas/all/byte.d: New.
* gas/all/gas.exp: Add it.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gas/testsuite/gas/all/byte.d | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/all/byte.l | 3 | ||||
-rw-r--r-- | gas/testsuite/gas/all/byte.s | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/all/gas.exp | 2 |
5 files changed, 16 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index c9eae54..bed67b5 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2010-05-05 Nathan Sidwell <nathan@codesourcery.com> + + * gas/all/byte.s: New. + * gas/all/byte.l: New. + * gas/all/byte.d: New. + * gas/all/gas.exp: Add it. + 2010-04-29 Nathan Sidwell <nathan@codesourcery.com> * gas/arm/weakdef-1.s: New. diff --git a/gas/testsuite/gas/all/byte.d b/gas/testsuite/gas/all/byte.d new file mode 100644 index 0000000..739b9ce --- /dev/null +++ b/gas/testsuite/gas/all/byte.d @@ -0,0 +1,2 @@ +#name: bad byte directive +#error-output: byte.l diff --git a/gas/testsuite/gas/all/byte.l b/gas/testsuite/gas/all/byte.l new file mode 100644 index 0000000..a87bb71 --- /dev/null +++ b/gas/testsuite/gas/all/byte.l @@ -0,0 +1,3 @@ +[^:]*: Assembler messages: +[^:]*:1: Error: unexpected `"' in expression +[^:]*:2: Error: unexpected `"' in expression diff --git a/gas/testsuite/gas/all/byte.s b/gas/testsuite/gas/all/byte.s new file mode 100644 index 0000000..8d60938 --- /dev/null +++ b/gas/testsuite/gas/all/byte.s @@ -0,0 +1,2 @@ + .byte " " + .byte " " diff --git a/gas/testsuite/gas/all/gas.exp b/gas/testsuite/gas/all/gas.exp index 8008236..8e0483e 100644 --- a/gas/testsuite/gas/all/gas.exp +++ b/gas/testsuite/gas/all/gas.exp @@ -329,6 +329,8 @@ if { ![istarget "tic4x*-*-*"] && ![istarget "tic54x*-*-*"] && ![istarget "hppa*- run_dump_test relax } +run_dump_test byte + # .quad is 16 bytes on i960. if { ![istarget "i960-*-*"] } { run_dump_test quad |