diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/tools/llvm-objdump/Inputs/libbogus11.a | 10 | ||||
-rw-r--r-- | llvm/test/tools/llvm-objdump/Inputs/libbogus12.a | 10 | ||||
-rw-r--r-- | llvm/test/tools/llvm-objdump/Inputs/libbogus13.a | 10 | ||||
-rw-r--r-- | llvm/test/tools/llvm-objdump/Inputs/libbogus14.a | 10 | ||||
-rw-r--r-- | llvm/test/tools/llvm-objdump/malformed-archives.test | 28 |
5 files changed, 0 insertions, 68 deletions
diff --git a/llvm/test/tools/llvm-objdump/Inputs/libbogus11.a b/llvm/test/tools/llvm-objdump/Inputs/libbogus11.a deleted file mode 100644 index 99a709da8d6..00000000000 --- a/llvm/test/tools/llvm-objdump/Inputs/libbogus11.a +++ /dev/null @@ -1,10 +0,0 @@ -!<arch> -hello.c 1444941273 ~97& 0 100644 102 ` -#include <stdio.h> -#include <stdlib.h> -int -main() -{ - printf("Hello World\n"); - return EXIT_SUCCESS; -} diff --git a/llvm/test/tools/llvm-objdump/Inputs/libbogus12.a b/llvm/test/tools/llvm-objdump/Inputs/libbogus12.a deleted file mode 100644 index fab3cfc4069..00000000000 --- a/llvm/test/tools/llvm-objdump/Inputs/libbogus12.a +++ /dev/null @@ -1,10 +0,0 @@ -!<arch> -hello.c 1444941273 124 #55! 100644 102 ` -#include <stdio.h> -#include <stdlib.h> -int -main() -{ - printf("Hello World\n"); - return EXIT_SUCCESS; -} diff --git a/llvm/test/tools/llvm-objdump/Inputs/libbogus13.a b/llvm/test/tools/llvm-objdump/Inputs/libbogus13.a deleted file mode 100644 index f6f80829186..00000000000 --- a/llvm/test/tools/llvm-objdump/Inputs/libbogus13.a +++ /dev/null @@ -1,10 +0,0 @@ -!<arch> -hello.c 1444941273 124 0 Feed 102 ` -#include <stdio.h> -#include <stdlib.h> -int -main() -{ - printf("Hello World\n"); - return EXIT_SUCCESS; -} diff --git a/llvm/test/tools/llvm-objdump/Inputs/libbogus14.a b/llvm/test/tools/llvm-objdump/Inputs/libbogus14.a deleted file mode 100644 index 003cc986fc9..00000000000 --- a/llvm/test/tools/llvm-objdump/Inputs/libbogus14.a +++ /dev/null @@ -1,10 +0,0 @@ -!<arch> -hello.c 1foobar273 124 0 100644 102 ` -#include <stdio.h> -#include <stdlib.h> -int -main() -{ - printf("Hello World\n"); - return EXIT_SUCCESS; -} diff --git a/llvm/test/tools/llvm-objdump/malformed-archives.test b/llvm/test/tools/llvm-objdump/malformed-archives.test index b8ba48d838e..a9733d5939d 100644 --- a/llvm/test/tools/llvm-objdump/malformed-archives.test +++ b/llvm/test/tools/llvm-objdump/malformed-archives.test @@ -58,31 +58,3 @@ # 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) - -# 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) - -# 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) - -# 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) - -# RUN: llvm-objdump -macho -archive-headers %p/Inputs/libbogus14.a \ -# RUN: 2>&1 | FileCheck -check-prefix=bogus14 %s - -# bogus14: -rw-r--r--124/0 102 (date: "1foobar273" contains non-decimal chars) hello.c - -# RUN: not llvm-ar tv %p/Inputs/libbogus14.a \ -# RUN: 2>&1 | FileCheck -check-prefix=bogus14a %s - -# bogus14a: truncated or malformed archive (characters in LastModified field in archive header are not all decimal numbers: '1foobar273' for the archive member header at offset 8) |