1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/tools/llvm-nm/numeric-sort.test
Fangrui Song d68dfedd72 [test] Use yaml2obj -o %t instead of > %t
To improve consistency and avoid unneeded shell feature (output
redirection).

While here, make other changes to improve consistency

--docnum 1 => --docnum=1
-docnum=x => --docnum=x
2020-01-21 17:20:18 -08:00

45 lines
1.2 KiB
Plaintext

# RUN: yaml2obj %s -o %t.o
# RUN: llvm-nm %t.o | FileCheck %s --check-prefix=DEFAULT
# RUN: llvm-nm --numeric-sort %t.o | FileCheck %s --check-prefix=NUMERIC
# RUN: llvm-nm -n %t.o | FileCheck %s --check-prefix=NUMERIC
# RUN: llvm-nm -v %t.o | FileCheck %s --check-prefix=NUMERIC
!ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
Sections:
- Name: .text
Type: SHT_PROGBITS
Symbols:
- Name: symbol_a
Section: .text
Binding: STB_LOCAL
Value: 0x100
- Name: symbol_b
Section: .text
Binding: STB_LOCAL
Value: 0x25
- Name: symbol_d
Section: .text
Binding: STB_LOCAL
Value: 0x25
- Name: symbol_c
Section: .text
Binding: STB_LOCAL
Value: 0x50
# The default is to sort by symbol name.
# DEFAULT: 0000000000000100 n symbol_a
# DEFAULT-NEXT: 0000000000000025 n symbol_b
# DEFAULT-NEXT: 0000000000000050 n symbol_c
# DEFAULT-NEXT: 0000000000000025 n symbol_d
# --numeric-sort sorts the symbols by value.
# NUMERIC: 0000000000000025 n symbol_b
# NUMERIC-NEXT: 0000000000000025 n symbol_d
# NUMERIC-NEXT: 0000000000000050 n symbol_c
# NUMERIC-NEXT: 0000000000000100 n symbol_a