[lld] [lld][test] filecheck typo fixes (PR #93471)
via llvm-commits
llvm-commits at lists.llvm.org
Mon May 27 06:02:52 PDT 2024
https://github.com/klensy created https://github.com/llvm/llvm-project/pull/93471
Few more fixes
Still left ones:
```
lld\test\ELF\pack-dyn-relocs.s:196:4-20: unknown prefix "ANDROID64-HEADERS"; probably missing `llvm-readobj -S --dynamic-table` for android64
lld\test\ELF\ppc64-reloc-addr.s unknown prefix "HEXBE-NEXT"
lld\test\MachO\export-options.s unknown prefix "REEXPORT-NEXT"
lld\test\MachO\weak-definition-over-dysym.s "PREFER-NONWEAK-OBJECT". looks like some of "PREFER-WEAK-OBJECT" should be "PREFER-NONWEAK-OBJECT"
```
>From 8e2ac0381ffa43f02c7871bda4abc2fbb67333c3 Mon Sep 17 00:00:00 2001
From: klensy <nightouser at gmail.com>
Date: Mon, 27 May 2024 15:52:25 +0300
Subject: [PATCH] filecheck typo fixes
---
lld/test/COFF/duplicate.test | 2 +-
lld/test/COFF/pdb-local-constants.test | 2 +-
lld/test/ELF/arm-gotoff.s | 10 +++++-----
lld/test/ELF/lto/sparcv9.ll | 2 +-
lld/test/MachO/compact-unwind-foldings.s | 4 ++--
lld/test/MachO/eh-frame.s | 4 ++--
lld/test/MachO/invalid/undef-debug.s | 2 +-
lld/test/wasm/tag-section.ll | 2 +-
8 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/lld/test/COFF/duplicate.test b/lld/test/COFF/duplicate.test
index 76c88b070ff37..3e97cbe318ea6 100644
--- a/lld/test/COFF/duplicate.test
+++ b/lld/test/COFF/duplicate.test
@@ -6,7 +6,7 @@ RUN: not lld-link /out:beta.dll /dll alpha.obj beta.obj alpha.lib 2>&1 | FileChe
CHECK-ALPHA: error: duplicate symbol: f
CHECK-ALPHA: defined at {{.*}}alpha.obj
-CHECK-APLHA: defined at alpha.dll
+CHECK-ALPHA: defined at alpha.dll
RUN: llc -mtriple x86_64-windows-msvc -filetype obj -o gamma.obj %S/Inputs/gamma.ll
RUN: not lld-link /out:gamma.exe /subsystem:console /entry:mainCRTStartup gamma.obj alpha.lib 2>&1 | FileCheck %s -check-prefix CHECK-GAMMA
diff --git a/lld/test/COFF/pdb-local-constants.test b/lld/test/COFF/pdb-local-constants.test
index 3a9538252ed80..4e8e8c0ee865b 100644
--- a/lld/test/COFF/pdb-local-constants.test
+++ b/lld/test/COFF/pdb-local-constants.test
@@ -18,4 +18,4 @@ CHECK-NEXT: type = 0x1002 (const int), value = 321
CHECK: Symbols
CHECK: 220 | S_CONSTANT [size = 12] `i`
-CHECK-NEXT type = 0x0074 (int), value = 123
\ No newline at end of file
+CHECK-NEXT: type = 0x0074 (int), value = 123
\ No newline at end of file
diff --git a/lld/test/ELF/arm-gotoff.s b/lld/test/ELF/arm-gotoff.s
index 0a6ea3ab0dad9..989f9d5c4714e 100644
--- a/lld/test/ELF/arm-gotoff.s
+++ b/lld/test/ELF/arm-gotoff.s
@@ -54,14 +54,14 @@
// DISASM: Disassembly of section .text:
// DISASM-EMPTY:
-// DISASM-NEXT :_start:
-// DISASM-NEXT 11114: 1e ff 2f e1 bx lr
+// DISASM-NEXT: _start:
+// DISASM-NEXT: 11114: 1e ff 2f e1 bx lr
// Offset 0 from .got = bar
-// DISASM 11118: 00 10 00 00
+// DISASM: 11118: 00 10 00 00
// Offset 10 from .got = obj
-// DISASM-NEXT 1111c: 0a 10 00 00
+// DISASM-NEXT: 1111c: 0a 10 00 00
// Offset 15 from .got = obj +5
-// DISASM-NEXT 11120: 0f 10 00 00
+// DISASM-NEXT: 11120: 0f 10 00 00
.syntax unified
.globl _start
_start:
diff --git a/lld/test/ELF/lto/sparcv9.ll b/lld/test/ELF/lto/sparcv9.ll
index a4cdc6eafa403..9ffdd988b6964 100644
--- a/lld/test/ELF/lto/sparcv9.ll
+++ b/lld/test/ELF/lto/sparcv9.ll
@@ -5,7 +5,7 @@
; RUN: ld.lld %t.bc -o %t
; RUN: llvm-readobj -h %t | FileCheck %s
-; CHECK Class: 64-bit
+; CHECK: Class: 64-bit
; CHECK: DataEncoding: BigEndian
; CHECK: Machine: EM_SPARCV9
diff --git a/lld/test/MachO/compact-unwind-foldings.s b/lld/test/MachO/compact-unwind-foldings.s
index 18511da772144..0e97e708cf139 100644
--- a/lld/test/MachO/compact-unwind-foldings.s
+++ b/lld/test/MachO/compact-unwind-foldings.s
@@ -23,8 +23,8 @@
## Check that [1] offset starts at c's address + 3 (its length).
# CHECK-LABEL: Contents of __unwind_info section:
# CHECK: Top level indices: (count = 2)
-# CHECK-NEXT : [0]: function offset=[[#%#.7x,MAIN_ADDR]]
-# CHECK-NEXT : [1]: function offset=[[#%#.7x,C_ADDR + 3]]
+# CHECK-NEXT: [0]: function offset=[[#%#.7x,MAIN_ADDR]]
+# CHECK-NEXT: [1]: function offset=[[#%#.7x,C_ADDR + 3]]
#--- fold-tail.s
.text
diff --git a/lld/test/MachO/eh-frame.s b/lld/test/MachO/eh-frame.s
index 64fd364c87a59..70c04d2cec2d4 100644
--- a/lld/test/MachO/eh-frame.s
+++ b/lld/test/MachO/eh-frame.s
@@ -66,8 +66,8 @@
# CHECK: [2]: function offset=0x[[#%.8x,H - BASE]], LSDA offset=0x[[#%.8x,EXCEPT2 - BASE]]
# CHECK: Second level indices:
# CHECK: Second level index[0]:
-# CHECK [0]: function offset=0x[[#%.8x,F - BASE]], encoding[{{.*}}]=0x52{{.*}}
-# CHECK [1]: function offset=0x[[#%.8x,NO_UNWIND - BASE]], encoding[{{.*}}]=0x00000000
+# CHECK: [0]: function offset=0x[[#%.8x,F - BASE]], encoding[{{.*}}]=0x52{{.*}}
+# CHECK: [1]: function offset=0x[[#%.8x,NO_UNWIND - BASE]], encoding[{{.*}}]=0x00000000
# CHECK: [2]: function offset=0x[[#%.8x,G - BASE]], encoding[{{.*}}]=0x0[[#%x,DWARF_ENC]][[#%.6x, G_DWARF_OFF:]]
# CHECK: [3]: function offset=0x[[#%.8x,H - BASE]], encoding[{{.*}}]=0x0[[#%x,DWARF_ENC]][[#%.6x, H_DWARF_OFF:]]
# CHECK: [4]: function offset=0x[[#%.8x,MY_PERSONALITY - BASE]], encoding[{{.*}}]=0x00000000
diff --git a/lld/test/MachO/invalid/undef-debug.s b/lld/test/MachO/invalid/undef-debug.s
index 7cf75fa898274..0990687d19750 100644
--- a/lld/test/MachO/invalid/undef-debug.s
+++ b/lld/test/MachO/invalid/undef-debug.s
@@ -6,7 +6,7 @@
# CHECK-NEXT: >>> referenced by test.c:3
# CHECK-NEXT: >>> {{.*}}.o:(symbol _main+0x0)
# CHECK-NEXT: >>> referenced by test.c:2
-# CHECK-NEXT >>> {{.*}}.o:(symbol _ptr+0x0)
+# CHECK-NEXT: >>> {{.*}}.o:(symbol _ptr+0x0)
## This is the output of `clang -g2 -O2 -fdebug-compilation-dir=. -fno-ident` called on the following file, with the
## Apple DWARF tables removed:
diff --git a/lld/test/wasm/tag-section.ll b/lld/test/wasm/tag-section.ll
index 4decdb58f952a..c85c798ff5e53 100644
--- a/lld/test/wasm/tag-section.ll
+++ b/lld/test/wasm/tag-section.ll
@@ -44,7 +44,7 @@ define void @_start() {
; NOPIC: - Type: GLOBAL
; NOPIC-EXPORT-ALL: - Type: EXPORT
-; NOPIC-EXPORT-ALL-NEXT Exports:
+; NOPIC-EXPORT-ALL-NEXT: Exports:
; NOPIC-EXPORT-ALL: - Name: __cpp_exception
; NOPIC-EXPORT-ALL: Kind: TAG
; NOPIC-EXPORT-ALL: Index: 0
More information about the llvm-commits
mailing list