xref: /llvm-project/llvm/test/tools/llvm-readobj/MachO/needed-libs.test (revision c0da287c30c9f511ccb07fdd42c997be2caea9ec)
1dbf520f6SGeorgii Rymar# RUN: yaml2obj %s -o %t.o
2dbf520f6SGeorgii Rymar# RUN: llvm-readobj --needed-libs %t.o | FileCheck %s
3dbf520f6SGeorgii Rymar
4dbf520f6SGeorgii Rymar# CHECK:      NeededLibraries [
5dbf520f6SGeorgii Rymar# CHECK-NEXT:   /usr/lib/libSystem.B.dylib
6dbf520f6SGeorgii Rymar# CHECK-NEXT: ]
7dbf520f6SGeorgii Rymar
8dbf520f6SGeorgii Rymar!mach-o
9dbf520f6SGeorgii RymarFileHeader:
10dbf520f6SGeorgii Rymar  magic:           0xFEEDFACF
11dbf520f6SGeorgii Rymar  cputype:         0x01000007
12dbf520f6SGeorgii Rymar  cpusubtype:      0x00000003
13dbf520f6SGeorgii Rymar  filetype:        0x00000001
14dbf520f6SGeorgii Rymar  ncmds:           1
15dbf520f6SGeorgii Rymar  sizeofcmds:      56
16dbf520f6SGeorgii Rymar  flags:           0x00002000
17dbf520f6SGeorgii Rymar  reserved:        0x00000000
18dbf520f6SGeorgii RymarLoadCommands:
19dbf520f6SGeorgii Rymar  - cmd:             LC_LOAD_DYLIB
20dbf520f6SGeorgii Rymar    cmdsize:         56
21dbf520f6SGeorgii Rymar    dylib:
22dbf520f6SGeorgii Rymar      name:            24
23dbf520f6SGeorgii Rymar      timestamp:       2
24dbf520f6SGeorgii Rymar      current_version: 81985536
25dbf520f6SGeorgii Rymar      compatibility_version: 65536
26*c0da287cSFangrui Song    Content:         /usr/lib/libSystem.B.dylib
27