diff options
author | George Rimar <grimar@accesssoftek.com> | 2016-03-10 17:13:20 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2016-03-10 17:13:20 +0000 |
commit | 92be8e6d95e2df96d0f5c08c36880b22bb355a38 (patch) | |
tree | b7cb6cee15957b573ae9e33e0186a1b291c42f0f | |
parent | 1592cb9aa18fde2e186d5bf692b0219ef6d74572 (diff) | |
download | bcm5719-llvm-92be8e6d95e2df96d0f5c08c36880b22bb355a38.tar.gz bcm5719-llvm-92be8e6d95e2df96d0f5c08c36880b22bb355a38.zip |
Attemp to fix linux build bot fail after r263125
(http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/8662).
Test fails on linux only.
Original commit message:
[ELF] - Consistent spelling for error/warning messages
Previously error and warnings were not consistent in lld.
Some of them started from lowercase letter, others from
uppercase. Also there was one or two which had a dot at the end.
This patch changes all messages to start from uppercase letter if
they were not before.
Differential revision: http://reviews.llvm.org/D18045
llvm-svn: 263128
-rw-r--r-- | lld/test/ELF/invalid-linkerscript.test | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lld/test/ELF/invalid-linkerscript.test b/lld/test/ELF/invalid-linkerscript.test index e0881662b96..c205a5af5e9 100644 --- a/lld/test/ELF/invalid-linkerscript.test +++ b/lld/test/ELF/invalid-linkerscript.test @@ -15,40 +15,40 @@ # RUN: echo foobar > %t1 # RUN: not ld.lld %t1 no-such-file 2>&1 | FileCheck -check-prefix=ERR1 %s -# ERR1: unknown directive: foobar -# ERR1: cannot open no-such-file: +# ERR1: Unknown directive: foobar +# ERR1: Cannot open no-such-file: # RUN: echo "foo \"bar" > %t2 # RUN: not ld.lld %t2 no-such-file 2>&1 | FileCheck -check-prefix=ERR2 %s -# ERR2: unclosed quote -# ERR2: cannot open no-such-file: +# ERR2: Unclosed quote +# ERR2: Cannot open no-such-file: # RUN: echo "/*" > %t3 # RUN: not ld.lld %t3 no-such-file 2>&1 | FileCheck -check-prefix=ERR3 %s -# ERR3: unclosed comment -# ERR3: cannot open no-such-file: +# ERR3: Unclosed comment +# ERR3: Cannot open no-such-file: # RUN: echo "EXTERN (" > %t4 # RUN: not ld.lld %t4 no-such-file 2>&1 | FileCheck -check-prefix=ERR4 %s -# ERR4: unexpected EOF -# ERR4: cannot open no-such-file: +# ERR4: Unexpected EOF +# ERR4: Cannot open no-such-file: # RUN: echo "EXTERN (" > %t5 # RUN: not ld.lld %t5 no-such-file 2>&1 | FileCheck -check-prefix=ERR5 %s -# ERR5: unexpected EOF -# ERR5: cannot open no-such-file: +# ERR5: Unexpected EOF +# ERR5: Cannot open no-such-file: # RUN: echo "EXTERN xyz" > %t6 # RUN: not ld.lld %t6 no-such-file 2>&1 | FileCheck -check-prefix=ERR6 %s # ERR6: ( expected, but got xyz -# ERR6: cannot open no-such-file: +# ERR6: Cannot open no-such-file: # RUN: echo "INCLUDE /no/such/file" > %t7 # RUN: not ld.lld %t7 no-such-file 2>&1 | FileCheck -check-prefix=ERR7 %s -# ERR7: cannot open /no/such/file -# ERR7: cannot open no-such-file: +# ERR7: Cannot open /no/such/file +# ERR7: Cannot open no-such-file: # RUN: echo "OUTPUT_FORMAT(x y z)" > %t8 # RUN: not ld.lld %t8 no-such-file 2>&1 | FileCheck -check-prefix=ERR8 %s -# ERR8: unexpected token: y -# ERR8: cannot open no-such-file: +# ERR8: Unexpected token: y +# ERR8: Cannot open no-such-file: |