diff options
author | Justin Bogner <mail@justinbogner.com> | 2016-10-26 22:37:52 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2016-10-26 22:37:52 +0000 |
commit | 31d8b7d21d54beeab4eccc60887db798b025235f (patch) | |
tree | a2d34225fff702e98de41df4d06c613594d40841 /llvm/test/tools/llvm-objdump | |
parent | ebeeab87a1770ea5bbae07455a0a2cfa5343201f (diff) | |
download | bcm5719-llvm-31d8b7d21d54beeab4eccc60887db798b025235f.tar.gz bcm5719-llvm-31d8b7d21d54beeab4eccc60887db798b025235f.zip |
llvm-objdump: Make some error messages more consistent
Most of the version of report_error were quoting the filename and
printing a colon between the file name and the error message, but this
one wasn't doing either of those. Fix the output to be more
consistent.
llvm-svn: 285252
Diffstat (limited to 'llvm/test/tools/llvm-objdump')
-rw-r--r-- | llvm/test/tools/llvm-objdump/malformed-archives.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/tools/llvm-objdump/malformed-archives.test b/llvm/test/tools/llvm-objdump/malformed-archives.test index b8ba48d838e..b241a6b7f2f 100644 --- a/llvm/test/tools/llvm-objdump/malformed-archives.test +++ b/llvm/test/tools/llvm-objdump/malformed-archives.test @@ -47,35 +47,35 @@ # RUN: %p/Inputs/libbogus8.a \ # RUN: 2>&1 | FileCheck -check-prefix=bogus8 %s -# bogus8: libbogus8.a(???) truncated or malformed archive (long name length: 1234 extends past the end of the member or archive for archive member header at offset 86) +# bogus8: libbogus8.a(???): truncated or malformed archive (long name length: 1234 extends past the end of the member or archive for archive member header at offset 86) # RUN: not llvm-objdump -s %p/Inputs/libbogus9.a \ # RUN: 2>&1 | FileCheck -check-prefix=bogus9 %s -# bogus9: libbogus9.a(???) truncated or malformed archive (long name offset characters after the '/' are not all decimal numbers: '&a25*' for archive member header at offset 94) +# bogus9: libbogus9.a(???): truncated or malformed archive (long name offset characters after the '/' are not all decimal numbers: '&a25*' for archive member header at offset 94) # RUN: not llvm-objdump -s %p/Inputs/libbogus10.a \ # RUN: 2>&1 | FileCheck -check-prefix=bogus10 %s -# bogus10: libbogus10.a(???) truncated or malformed archive (long name offset 507 past the end of the string table for archive member header at offset 94) +# bogus10: libbogus10.a(???): truncated or malformed archive (long name offset 507 past the end of the string table for archive member header at offset 94) # RUN: not llvm-objdump -macho -archive-headers \ # RUN: %p/Inputs/libbogus11.a \ # RUN: 2>&1 | FileCheck -check-prefix=bogus11 %s -# bogus11: libbogus11.a(hello.c) truncated or malformed archive (characters in UID field in archive header are not all decimal numbers: '~97&' for the archive member header at offset 8) +# bogus11: libbogus11.a(hello.c): truncated or malformed archive (characters in UID field in archive header are not all decimal numbers: '~97&' for the archive member header at offset 8) # RUN: not llvm-objdump -macho -archive-headers \ # RUN: %p/Inputs/libbogus12.a \ # RUN: 2>&1 | FileCheck -check-prefix=bogus12 %s -# bogus12: libbogus12.a(hello.c) truncated or malformed archive (characters in GID field in archive header are not all decimal numbers: '#55!' for the archive member header at offset 8) +# bogus12: libbogus12.a(hello.c): truncated or malformed archive (characters in GID field in archive header are not all decimal numbers: '#55!' for the archive member header at offset 8) # RUN: not llvm-objdump -macho -archive-headers \ # RUN: %p/Inputs/libbogus13.a \ # RUN: 2>&1 | FileCheck -check-prefix=bogus13 %s -# bogus13: libbogus13.a(hello.c) truncated or malformed archive (characters in AccessMode field in archive header are not all decimal numbers: 'Feed' for the archive member header at offset 8) +# bogus13: libbogus13.a(hello.c): truncated or malformed archive (characters in AccessMode field in archive header are not all decimal numbers: 'Feed' for the archive member header at offset 8) # RUN: llvm-objdump -macho -archive-headers %p/Inputs/libbogus14.a \ # RUN: 2>&1 | FileCheck -check-prefix=bogus14 %s |