Skip to content

Commit 51fba01

Browse files
committed
Rename test variables
1 parent 5e249ee commit 51fba01

File tree

1 file changed

+35
-35
lines changed
  • cross-project-tests/tools/llvm-objdump/ARM

1 file changed

+35
-35
lines changed

cross-project-tests/tools/llvm-objdump/ARM/plt.c

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
// REQUIRES: ld.lld
44

55
// RUN: %clang --target=armv6a-none-linux-gnueabi -fuse-ld=lld \
6-
// RUN: -nostdlib -nostdinc -shared %s -o %t1
6+
// RUN: -nostdlib -nostdinc -shared %s -o %t.v6a
77
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
8-
// RUN: -d %t1 | FileCheck %s --check-prefixes=CHECK,LE
8+
// RUN: -d %t.v6a | FileCheck %s --check-prefixes=CHECK,LE
99

1010
// Test PLT section parsing on armeb.
1111

1212
// RUN: %clang --target=armv6aeb-none-linux-gnueabi -fuse-ld=lld \
13-
// RUN: -nostdlib -nostdinc -shared %s -o %t2
13+
// RUN: -nostdlib -nostdinc -shared %s -o %t.v6aeb
1414
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
15-
// RUN: -d %t2 | FileCheck %s --check-prefixes=CHECK,BE
16-
// RUN: obj2yaml %t2 | FileCheck %s --check-prefixes=NOBE8
15+
// RUN: -d %t.v6aeb | FileCheck %s --check-prefixes=CHECK,BE
16+
// RUN: obj2yaml %t.v6aeb | FileCheck %s --check-prefixes=NOBE8
1717

1818
// Test PLT section parsing on armeb with be8.
1919

2020
// RUN: %clang --target=armv7aeb-none-linux-gnueabi -fuse-ld=lld \
21-
// RUN: -nostdlib -nostdinc -shared %s -o %t3
21+
// RUN: -nostdlib -nostdinc -shared %s -o %t.v7aeb
2222
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
23-
// RUN: -d %t3 | FileCheck %s --check-prefixes=CHECK,BE
24-
// RUN: obj2yaml %t3 | FileCheck %s --check-prefixes=BE8
23+
// RUN: -d %t.v7aeb | FileCheck %s --check-prefixes=CHECK,BE
24+
// RUN: obj2yaml %t.v7aeb | FileCheck %s --check-prefixes=BE8
2525

2626
// LE: file format elf32-littlearm
2727
// BE: file format elf32-bigarm
@@ -59,28 +59,28 @@
5959
// Test PLT section parsing on thumb.
6060

6161
// RUN: %clang --target=thumbv8.1m.main-none-linux-eabi \
62-
// RUN: -c %s -o %t4.o
63-
// RUN: ld.lld --shared %t4.o -o %t4
62+
// RUN: -c %s -o %t.v8.o
63+
// RUN: ld.lld --shared %t.v8.o -o %t.v8
6464
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
65-
// RUN: -d %t4 | FileCheck %s --check-prefixes=THUMB,LE
65+
// RUN: -d %t.v8 | FileCheck %s --check-prefixes=THUMB,LE
6666

6767
// Test PLT section parsing on thumbeb.
6868

6969
// RUN: %clang --target=thumbebv8.1m.main-none-linux-eabi \
70-
// RUN: -c %s -o %t5.o
71-
// RUN: ld.lld --shared %t5.o -o %t5
70+
// RUN: -c %s -o %t.v8eb.o
71+
// RUN: ld.lld --shared %t.v8eb.o -o %t.v8eb
7272
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
73-
// RUN: -d %t5 | FileCheck %s --check-prefixes=THUMB,BE
74-
// RUN: obj2yaml %t5 | FileCheck %s --check-prefixes=NOBE8
73+
// RUN: -d %t.v8eb | FileCheck %s --check-prefixes=THUMB,BE
74+
// RUN: obj2yaml %t.v8eb | FileCheck %s --check-prefixes=NOBE8
7575

7676
// Test PLT section parsing on thumbeb with be8.
7777

7878
// RUN: %clang --target=thumbebv8.1m.main-none-linux-eabi \
79-
// RUN: -c %s -o %t6.o
80-
// RUN: ld.lld --shared --be8 %t6.o -o %t6
79+
// RUN: -c %s -o %t.v8eb.be8.o
80+
// RUN: ld.lld --shared --be8 %t.v8eb.be8.o -o %t.v8eb.be8
8181
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
82-
// RUN: -d %t6 | FileCheck %s --check-prefixes=THUMB,BE
83-
// RUN: obj2yaml %t6 | FileCheck %s --check-prefixes=BE8
82+
// RUN: -d %t.v8eb.be8 | FileCheck %s --check-prefixes=THUMB,BE
83+
// RUN: obj2yaml %t.v8eb.be8 | FileCheck %s --check-prefixes=BE8
8484

8585
// THUMB: Disassembly of section .text:
8686
// THUMB-EMPTY:
@@ -124,27 +124,27 @@
124124

125125
// RUN: %clang --target=armv6a-none-linux-gnueabi -fuse-ld=lld \
126126
// RUN: -Xlinker --script=%t.long.script -nostdlib -nostdinc \
127-
// RUN: -shared %s -o %t7
127+
// RUN: -shared %s -o %t.v6a.long
128128
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
129-
// RUN: -d %t7 | FileCheck %s --check-prefixes=CHECKLONG,LE
129+
// RUN: -d %t.v6a.long | FileCheck %s --check-prefixes=CHECKLONG,LE
130130

131131
// Test PLT section with long entries parsing on armeb.
132132

133133
// RUN: %clang --target=armv6aeb-none-linux-gnueabi -fuse-ld=lld \
134134
// RUN: -Xlinker --script=%t.long.script -nostdlib -nostdinc \
135-
// RUN: -shared %s -o %t8
135+
// RUN: -shared %s -o %t.v6aeb.long
136136
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
137-
// RUN: -d %t8 | FileCheck %s --check-prefixes=CHECKLONG,BE
138-
// RUN: obj2yaml %t8 | FileCheck %s --check-prefixes=NOBE8
137+
// RUN: -d %t.v6aeb.long | FileCheck %s --check-prefixes=CHECKLONG,BE
138+
// RUN: obj2yaml %t.v6aeb.long | FileCheck %s --check-prefixes=NOBE8
139139

140140
// Test PLT section with long entries parsing on armeb with be8.
141141

142142
// RUN: %clang --target=armv7aeb-none-linux-gnueabi -fuse-ld=lld \
143143
// RUN: -Xlinker --script=%t.long.script -nostdlib -nostdinc \
144-
// RUN: -shared %s -o %t9
144+
// RUN: -shared %s -o %t.v7aeb.long
145145
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
146-
// RUN: -d %t9 | FileCheck %s --check-prefixes=CHECKLONG,BE
147-
// RUN: obj2yaml %t9 | FileCheck %s --check-prefixes=BE8
146+
// RUN: -d %t.v7aeb.long | FileCheck %s --check-prefixes=CHECKLONG,BE
147+
// RUN: obj2yaml %t.v7aeb.long | FileCheck %s --check-prefixes=BE8
148148

149149
// CHECKLONG: Disassembly of section .text:
150150
// CHECKLONG-EMPTY:
@@ -184,27 +184,27 @@
184184

185185
// RUN: %clang --target=armv6a-none-linux-gnueabi -fuse-ld=lld \
186186
// RUN: -Xlinker --script=%t.mix.script -nostdlib -nostdinc \
187-
// RUN: -shared %s -o %t10
187+
// RUN: -shared %s -o %t.v6a.mix
188188
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
189-
// RUN: -d %t10 | FileCheck %s --check-prefixes=CHECKMIX,LE
189+
// RUN: -d %t.v6a.mix | FileCheck %s --check-prefixes=CHECKMIX,LE
190190

191191
// Test PLT section with mixed long and short entries parsing on armeb.
192192

193193
// RUN: %clang --target=armv6aeb-none-linux-gnueabi -fuse-ld=lld \
194194
// RUN: -Xlinker --script=%t.mix.script -nostdlib -nostdinc \
195-
// RUN: -shared %s -o %t11
195+
// RUN: -shared %s -o %t.v6aeb.mix
196196
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
197-
// RUN: -d %t11 | FileCheck %s --check-prefixes=CHECKMIX,BE
198-
// RUN: obj2yaml %t11 | FileCheck %s --check-prefixes=NOBE8
197+
// RUN: -d %t.v6aeb.mix | FileCheck %s --check-prefixes=CHECKMIX,BE
198+
// RUN: obj2yaml %t.v6aeb.mix | FileCheck %s --check-prefixes=NOBE8
199199

200200
// Test PLT section with mixed long and short entries parsing on armeb with be8.
201201

202202
// RUN: %clang --target=armv7aeb-none-linux-gnueabi -fuse-ld=lld \
203203
// RUN: -Xlinker --script=%t.mix.script -nostdlib -nostdinc \
204-
// RUN: -shared %s -o %t12
204+
// RUN: -shared %s -o %t.v7aeb.mix
205205
// RUN: llvm-objdump --no-show-raw-insn --no-print-imm-hex \
206-
// RUN: -d %t12 | FileCheck %s --check-prefixes=CHECKMIX,BE
207-
// RUN: obj2yaml %t12 | FileCheck %s --check-prefixes=BE8
206+
// RUN: -d %t.v7aeb.mix | FileCheck %s --check-prefixes=CHECKMIX,BE
207+
// RUN: obj2yaml %t.v7aeb.mix | FileCheck %s --check-prefixes=BE8
208208

209209
// CHECKMIX: Disassembly of section .text:
210210
// CHECKMIX-EMPTY:

0 commit comments

Comments
 (0)