diff options
Diffstat (limited to 'lld/test/ELF/linkerscript-sections-padding.s')
-rw-r--r-- | lld/test/ELF/linkerscript-sections-padding.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/ELF/linkerscript-sections-padding.s b/lld/test/ELF/linkerscript-sections-padding.s index eb2c9193ec9..c6f43336664 100644 --- a/lld/test/ELF/linkerscript-sections-padding.s +++ b/lld/test/ELF/linkerscript-sections-padding.s @@ -23,13 +23,13 @@ # RUN: echo "SECTIONS { .mysec : { *(.mysec*) } =99 }" > %t.script # RUN: not ld.lld -o %t.out --script %t.script %t 2>&1 \ # RUN: | FileCheck --check-prefix=ERR %s -# ERR: Filler should be a HEX value +# ERR: filler should be a HEX value ## Filler should be a hex value (2): # RUN: echo "SECTIONS { .mysec : { *(.mysec*) } =0x99XX }" > %t.script # RUN: not ld.lld -o %t.out --script %t.script %t 2>&1 \ # RUN: | FileCheck --check-prefix=ERR2 %s -# ERR2: Not a HEX value: XX +# ERR2: not a HEX value: XX .section .mysec.1,"a" .align 16 |