4 changes: 2 additions & 2 deletions lld/test/ELF/linkerscript.s
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# RUN: not ld.lld -o %t2 %t.script %t > %t.log 2>&1
# RUN: FileCheck -check-prefix=ERR-ENTRY %s < %t.log

# ERR-ENTRY: undefined symbol: _wrong_label
# ERR-ENTRY: Undefined symbol: _wrong_label

# -e has precedence over linker script's ENTRY.
# RUN: echo "ENTRY(_label)" > %t.script
Expand Down Expand Up @@ -104,7 +104,7 @@
# RUN: not ld.lld -o foo %t.script > %t.log 2>&1
# RUN: FileCheck -check-prefix=ERR1 %s < %t.log

# ERR1: unknown directive: FOO
# ERR1: Unknown directive: FOO

.globl _start, _label;
_start:
Expand Down
2 changes: 1 addition & 1 deletion lld/test/ELF/lto/duplicated.ll
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; REQUIRES: x86
; RUN: llvm-as %s -o %t.o
; RUN: not ld.lld -m elf_x86_64 %t.o %t.o -o %t.so -shared 2>&1 | FileCheck %s
; CHECK: duplicate symbol: f in {{.*}}.o and {{.*}}.o
; CHECK: Duplicate symbol: f in {{.*}}.o and {{.*}}.o
target triple = "x86_64-unknown-linux-gnu"
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"

Expand Down
2 changes: 1 addition & 1 deletion lld/test/ELF/sysroot.s
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Should not link because of undefined symbol _bar
// RUN: not ld.lld -o %t/r %t/m.o 2>&1 \
// RUN: | FileCheck --check-prefix=UNDEFINED %s
// UNDEFINED: undefined symbol: _bar
// UNDEFINED: Undefined symbol: _bar

// We need to be sure that there is no suitable library in the /lib directory
// RUN: not ld.lld -o %t/r %t/m.o -L/lib -l:libls.a 2>&1 \
Expand Down
2 changes: 1 addition & 1 deletion lld/test/ELF/tls-static.s
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
_start:
call __tls_get_addr

// CHECK: undefined symbol: __tls_get_addr
// CHECK: Undefined symbol: __tls_get_addr
2 changes: 1 addition & 1 deletion lld/test/ELF/undef-start.s
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
# RUN: not ld.lld %t -o %t2 2>&1 | FileCheck %s
# CHECK: undefined symbol: _start
# CHECK: Undefined symbol: _start
# REQUIRES: x86
4 changes: 2 additions & 2 deletions lld/test/ELF/undef.s
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
# RUN: not ld.lld %t -o %t2 2>&1 | FileCheck %s
# CHECK: undefined symbol: bar in {{.*}}
# CHECK: undefined symbol: foo in {{.*}}
# CHECK: Undefined symbol: bar in {{.*}}
# CHECK: Undefined symbol: foo in {{.*}}
# REQUIRES: x86

.globl _start
Expand Down