2014-06-30 18:45:23 +00:00
|
|
|
RUN: llvm-nm -arch all %p/Inputs/macho-universal.x86_64.i386 \
|
2014-05-14 21:18:50 +00:00
|
|
|
RUN: | FileCheck %s -check-prefix CHECK-OBJ
|
2014-06-30 18:45:23 +00:00
|
|
|
RUN: llvm-nm -arch x86_64 %p/Inputs/macho-universal.x86_64.i386 \
|
|
|
|
RUN: | FileCheck %s -check-prefix CHECK-OBJ-x86_64
|
2014-08-08 16:18:29 +00:00
|
|
|
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
|
2014-06-30 18:45:23 +00:00
|
|
|
RUN: llvm-nm -arch all %p/Inputs/macho-universal-archive.x86_64.i386 \
|
2014-05-14 21:18:50 +00:00
|
|
|
RUN: | FileCheck %s -check-prefix CHECK-AR
|
2014-06-30 18:45:23 +00:00
|
|
|
RUN: llvm-nm -arch i386 %p/Inputs/macho-universal-archive.x86_64.i386 \
|
|
|
|
RUN: | FileCheck %s -check-prefix CHECK-AR-i386
|
2014-07-24 23:31:52 +00:00
|
|
|
RUN: llvm-nm -o -arch all %p/Inputs/macho-universal-archive.x86_64.i386 \
|
|
|
|
RUN: | FileCheck %s -check-prefix CHECK-AR-o
|
2013-06-18 15:03:28 +00:00
|
|
|
|
2014-06-19 22:03:18 +00:00
|
|
|
CHECK-OBJ: macho-universal.x86_64.i386 (for architecture x86_64):
|
2014-05-14 21:18:50 +00:00
|
|
|
CHECK-OBJ: 0000000100000f60 T _main
|
2014-06-19 22:03:18 +00:00
|
|
|
CHECK-OBJ: macho-universal.x86_64.i386 (for architecture i386):
|
2014-05-14 21:18:50 +00:00
|
|
|
CHECK-OBJ: 00001fa0 T _main
|
|
|
|
|
2014-06-30 18:45:23 +00:00
|
|
|
CHECK-OBJ-x86_64: 0000000100000000 T __mh_execute_header
|
|
|
|
CHECK-OBJ-x86_64: 0000000100000f60 T _main
|
|
|
|
CHECK-OBJ-x86_64: U dyld_stub_binder
|
|
|
|
|
2014-08-08 16:18:29 +00:00
|
|
|
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
|
|
|
|
|
2014-06-19 22:03:18 +00:00
|
|
|
CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64):
|
2014-05-14 21:18:50 +00:00
|
|
|
CHECK-AR: 0000000000000068 s EH_frame0
|
|
|
|
CHECK-AR: 000000000000003b s L_.str
|
|
|
|
CHECK-AR: 0000000000000000 T _main
|
|
|
|
CHECK-AR: 0000000000000080 S _main.eh
|
2014-05-20 23:04:47 +00:00
|
|
|
CHECK-AR: U _printf
|
2014-06-19 22:03:18 +00:00
|
|
|
CHECK-AR: macho-universal-archive.x86_64.i386(foo.o) (for architecture i386):
|
2014-06-19 22:49:21 +00:00
|
|
|
CHECK-AR: 00000008 D _bar
|
2014-05-14 21:18:50 +00:00
|
|
|
CHECK-AR: 00000000 T _foo
|
2014-06-30 18:45:23 +00:00
|
|
|
|
|
|
|
CHECK-AR-i386: macho-universal-archive.x86_64.i386(foo.o):
|
|
|
|
CHECK-AR-i386: 00000008 D _bar
|
|
|
|
CHECK-AR-i386: 00000000 T _foo
|
2014-07-24 23:31:52 +00:00
|
|
|
|
|
|
|
CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 0000000000000068 s EH_frame0
|
|
|
|
CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 000000000000003b s L_.str
|
|
|
|
CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 0000000000000000 T _main
|
|
|
|
CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 0000000000000080 S _main.eh
|
|
|
|
CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: U _printf
|
|
|
|
CHECK-AR-o: (for architecture i386):{{.*}}/macho-universal-archive.x86_64.i386:foo.o: 00000008 D _bar
|
|
|
|
CHECK-AR-o: (for architecture i386):{{.*}}/macho-universal-archive.x86_64.i386:foo.o: 00000000 T _foo
|