From 265a73043d34af25d88a238b84ed9c0c34321348 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Mon, 7 Nov 2022 18:22:05 +0100 Subject: [PATCH] Use double hashes for non-run/check lines in lld/test/ELF/basic.s --- lld/test/ELF/basic.s | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lld/test/ELF/basic.s b/lld/test/ELF/basic.s index 6b17bf75..33c0194 100644 --- a/lld/test/ELF/basic.s +++ b/lld/test/ELF/basic.s @@ -6,7 +6,7 @@ # RUN: | FileCheck %s # RUN: ld.lld %t -o /dev/null -# exits with return code 42 on linux +## exits with return code 42 on linux .globl _start _start: mov $60, %rax @@ -201,19 +201,19 @@ _start: # CHECK-NEXT: } # CHECK-NEXT: ] -# Test for the response file (POSIX quoting style) +## Test for the response file (POSIX quoting style) # RUN: echo " -o %t2" > %t.responsefile # RUN: ld.lld %t --rsp-quoting=posix @%t.responsefile # RUN: llvm-readobj --file-headers --sections -l --symbols %t2 \ # RUN: | FileCheck %s -# Test for the response file (Windows quoting style) +## Test for the response file (Windows quoting style) # RUN: echo " c:\blah\foo" > %t.responsefile # RUN: not ld.lld --rsp-quoting=windows %t @%t.responsefile 2>&1 | FileCheck \ # RUN: %s --check-prefix=WINRSP # WINRSP: cannot open c:\blah\foo -# Test for the response file (invalid quoting style) +## Test for the response file (invalid quoting style) # RUN: not ld.lld --rsp-quoting=patatino %t 2>&1 | FileCheck %s \ # RUN: --check-prefix=INVRSP # INVRSP: invalid response file quoting: patatino -- 2.7.4