brintos

brintos / llvm-project-archived public Read only

0
0
Text · 3.3 KiB · 246262e Raw
82 lines · plain
1RUN: llvm-dwarfdump -h 2>&1 | FileCheck --check-prefix=HELP %s --implicit-check-not=out-file2RUN: llvm-dwarfdump --help 2>&1 | FileCheck --check-prefix=HELP %s --implicit-check-not=out-file3HELP: USAGE: llvm-dwarfdump{{[^ ]*}} [options] <input object files or .dSYM bundles>4HELP: Color Options5HELP: --color6HELP: Generic Options7HELP: --help8HELP: --help-list9HELP: --version10HELP: Section-specific Dump Options11HELP: -a                         - Alias for --all12HELP: --all                      - Dump all debug info sections13HELP: --apple-names              - Dump the .apple_names section14HELP: --apple-namespaces         - Dump the .apple_namespaces section15HELP: --apple-objc               - Dump the .apple_objc section16HELP: --apple-types              - Dump the .apple_types section17HELP: --debug-abbrev             - Dump the .debug_abbrev section18HELP: --debug-addr               - Dump the .debug_addr section19HELP: --debug-aranges            - Dump the .debug_aranges section20HELP: --debug-cu-index           - Dump the .debug_cu_index section21HELP: --debug-frame[=<offset>]     - Dump the .debug_frame section22HELP: --debug-gnu-pubnames       - Dump the .debug_gnu_pubnames section23HELP: --debug-gnu-pubtypes       - Dump the .debug_gnu_pubtypes section24HELP: --debug-info[=<offset>]      - Dump the .debug_info section25HELP: --debug-line[=<offset>]      - Dump the .debug_line section26HELP: --debug-line-str           - Dump the .debug_line_str section27HELP: --debug-loc[=<offset>]       - Dump the .debug_loc section28HELP: --debug-loclists[=<offset>]  - Dump the .debug_loclists section29HELP: --debug-macro              - Dump the .debug_macro section30HELP: --debug-names              - Dump the .debug_names section31HELP: --debug-pubnames           - Dump the .debug_pubnames section32HELP: --debug-pubtypes           - Dump the .debug_pubtypes section33HELP: --debug-ranges             - Dump the .debug_ranges section34HELP: --debug-rnglists           - Dump the .debug_rnglists section35HELP: --debug-str                - Dump the .debug_str section36HELP: --debug-str-offsets        - Dump the .debug_str_offsets section37HELP: --debug-tu-index           - Dump the .debug_tu_index section38HELP: --debug-types[=<offset>]     - Dump the .debug_types section39HELP: --eh-frame                 - Alias for --debug-frame40HELP: --gdb-index                - Dump the .gdb_index section41HELP: Specific Options42HELP: -F43HELP: --arch=<string>44HELP: -c45HELP: --diff46HELP: -f47HELP: --find=<name>48HELP: -i49HELP: --ignore-case50HELP: --lookup=<address>51HELP: -n52HELP: --name=<pattern>53HELP: -o <filename>54HELP: -p55HELP: --parent-recurse-depth=<N>56HELP: --quiet57HELP: -r58HELP: --recurse-depth=<N>59HELP: --regex60HELP: --show-children61HELP: --show-form62HELP: --show-parents63HELP: --show-section-sizes64HELP: --statistics65HELP: --summarize-types66HELP: -u67HELP: --uuid68HELP: -v69HELP: --verbose70HELP: --verify71HELP: -x72HELP: @FILE73 74RUN: llvm-dwarfdump --version 2>&1 | FileCheck --check-prefix=VERSION %s75VERSION: {{ version }}76 77RUN: not llvm-dwarfdump -diff -verbose 2>&1 | FileCheck --check-prefix=INCOMPATIBLE %s78INCOMPATIBLE: error: incompatible arguments: specifying both -diff and -verbose is currently not supported79 80RUN: not llvm-dwarfdump --debug-names=0x0 2>&1 | FileCheck --check-prefix=FLAG %s81FLAG: for the --debug-names option: this is a flag and does not take a value82