diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-02-24 22:47:41 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-02-24 22:47:41 +0000 |
| commit | 1c576054cbfb9dfcacd2ee9d209792ccc95327cc (patch) | |
| tree | 86a6cb9941ff97067d705fae287cc0dd9dd2fc7c | |
| parent | e8c7d77955a7b02af88ee12aac336698164673ca (diff) | |
| download | bcm5719-llvm-1c576054cbfb9dfcacd2ee9d209792ccc95327cc.tar.gz bcm5719-llvm-1c576054cbfb9dfcacd2ee9d209792ccc95327cc.zip | |
Make test more portable.
We just need to show that an error is printed, so no need to check for a
system dependent message.
llvm-svn: 261802
| -rw-r--r-- | lld/test/ELF/invalid-linkerscript.test | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lld/test/ELF/invalid-linkerscript.test b/lld/test/ELF/invalid-linkerscript.test index 1b6d7e2681f..e0881662b96 100644 --- a/lld/test/ELF/invalid-linkerscript.test +++ b/lld/test/ELF/invalid-linkerscript.test @@ -9,46 +9,46 @@ # RUN: mkdir -p %t.dir -## Note that we are using "cannot open no-such-file: No such file or directory" -## as a marker that the linker keep going when it found an error. That specific -## error message is not related to the linker script tests. +## Note that we are using "cannot open no-such-file: " as a marker that the +## linker keep going when it found an error. That specific error message is not +## related to the linker script tests. # 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: No such file or directory +# 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: No such file or directory +# 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: No such file or directory +# 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: No such file or directory +# 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: No such file or directory +# 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: No such file or directory +# 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: No such file or directory +# 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: No such file or directory +# ERR8: cannot open no-such-file: |

