diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-08 16:18:29 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-08-08 16:18:29 +0000 |
commit | 40f5446d841395b1a6266838af82df8da40ab65f (patch) | |
tree | bf2edab8e6af2336615ba1a9a5de9215370bee17 /llvm/test/Object/nm-universal-binary.test | |
parent | cdba84c0d309be4312b08d0e7daa293c5305eba4 (diff) | |
download | bcm5719-llvm-40f5446d841395b1a6266838af82df8da40ab65f.tar.gz bcm5719-llvm-40f5446d841395b1a6266838af82df8da40ab65f.zip |
pr20589: Fix duplicated arch flag.
llvm-svn: 215216
Diffstat (limited to 'llvm/test/Object/nm-universal-binary.test')
-rw-r--r-- | llvm/test/Object/nm-universal-binary.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/Object/nm-universal-binary.test b/llvm/test/Object/nm-universal-binary.test index 732445e778b..0cced1829c3 100644 --- a/llvm/test/Object/nm-universal-binary.test +++ b/llvm/test/Object/nm-universal-binary.test @@ -2,6 +2,10 @@ RUN: llvm-nm -arch all %p/Inputs/macho-universal.x86_64.i386 \ RUN: | FileCheck %s -check-prefix CHECK-OBJ RUN: llvm-nm -arch x86_64 %p/Inputs/macho-universal.x86_64.i386 \ RUN: | FileCheck %s -check-prefix CHECK-OBJ-x86_64 +RUN: not llvm-nm -arch armv7m %p/Inputs/macho-universal.x86_64.i386 2>&1 \ +RUN: | FileCheck %s -check-prefix CHECK-OBJ-armv7m +RUN: not llvm-nm -arch foobar %p/Inputs/macho-universal.x86_64.i386 2>&1 \ +RUN: | FileCheck %s -check-prefix CHECK-OBJ-foobar RUN: llvm-nm -arch all %p/Inputs/macho-universal-archive.x86_64.i386 \ RUN: | FileCheck %s -check-prefix CHECK-AR RUN: llvm-nm -arch i386 %p/Inputs/macho-universal-archive.x86_64.i386 \ @@ -18,6 +22,12 @@ CHECK-OBJ-x86_64: 0000000100000000 T __mh_execute_header CHECK-OBJ-x86_64: 0000000100000f60 T _main CHECK-OBJ-x86_64: U dyld_stub_binder +CHECK-OBJ-armv7m-NOT: Unknown architecture named +CHECK-OBJ-armv7m: does not contain architecture + +CHECK-OBJ-foobar: Unknown architecture named +CHECK-OBJ-foobar: does not contain architecture + CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64): CHECK-AR: 0000000000000068 s EH_frame0 CHECK-AR: 000000000000003b s L_.str |