nm-universal-binary.test 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. RUN: llvm-nm -arch all %p/Inputs/macho-universal.x86_64.i386 \
  2. RUN: | FileCheck %s -check-prefix CHECK-OBJ
  3. RUN: llvm-nm -arch x86_64 %p/Inputs/macho-universal.x86_64.i386 \
  4. RUN: | FileCheck %s -check-prefix CHECK-OBJ-x86_64
  5. RUN: not llvm-nm -arch armv7m %p/Inputs/macho-universal.x86_64.i386 2>&1 \
  6. RUN: | FileCheck %s -check-prefix CHECK-OBJ-armv7m
  7. RUN: not llvm-nm -arch foobar %p/Inputs/macho-universal.x86_64.i386 2>&1 \
  8. RUN: | FileCheck %s -check-prefix CHECK-OBJ-foobar
  9. RUN: llvm-nm -arch all %p/Inputs/macho-universal-archive.x86_64.i386 \
  10. RUN: | FileCheck %s -check-prefix CHECK-AR
  11. RUN: llvm-nm -arch i386 %p/Inputs/macho-universal-archive.x86_64.i386 \
  12. RUN: | FileCheck %s -check-prefix CHECK-AR-i386
  13. RUN: llvm-nm -o -arch all %p/Inputs/macho-universal-archive.x86_64.i386 \
  14. RUN: | FileCheck %s -check-prefix CHECK-AR-o
  15. CHECK-OBJ: macho-universal.x86_64.i386 (for architecture x86_64):
  16. CHECK-OBJ: 0000000100000f60 T _main
  17. CHECK-OBJ: macho-universal.x86_64.i386 (for architecture i386):
  18. CHECK-OBJ: 00001fa0 T _main
  19. CHECK-OBJ-x86_64: 0000000100000000 T __mh_execute_header
  20. CHECK-OBJ-x86_64: 0000000100000f60 T _main
  21. CHECK-OBJ-x86_64: U dyld_stub_binder
  22. CHECK-OBJ-armv7m-NOT: Unknown architecture named
  23. CHECK-OBJ-armv7m: does not contain architecture
  24. CHECK-OBJ-foobar: Unknown architecture named
  25. CHECK-OBJ-foobar: does not contain architecture
  26. CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64):
  27. CHECK-AR: 0000000000000068 s EH_frame0
  28. CHECK-AR: 000000000000003b s L_.str
  29. CHECK-AR: 0000000000000000 T _main
  30. CHECK-AR: 0000000000000080 S _main.eh
  31. CHECK-AR: U _printf
  32. CHECK-AR: macho-universal-archive.x86_64.i386(foo.o) (for architecture i386):
  33. CHECK-AR: 00000008 D _bar
  34. CHECK-AR: 00000000 T _foo
  35. CHECK-AR-i386: macho-universal-archive.x86_64.i386(foo.o):
  36. CHECK-AR-i386: 00000008 D _bar
  37. CHECK-AR-i386: 00000000 T _foo
  38. CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 0000000000000068 s EH_frame0
  39. CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 000000000000003b s L_.str
  40. CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 0000000000000000 T _main
  41. CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: 0000000000000080 S _main.eh
  42. CHECK-AR-o: (for architecture x86_64):{{.*}}/macho-universal-archive.x86_64.i386:hello.o: U _printf
  43. CHECK-AR-o: (for architecture i386):{{.*}}/macho-universal-archive.x86_64.i386:foo.o: 00000008 D _bar
  44. CHECK-AR-o: (for architecture i386):{{.*}}/macho-universal-archive.x86_64.i386:foo.o: 00000000 T _foo