Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code climate: fix next batch of "; " occurences #180

Merged
merged 4 commits into from
Dec 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
; CHECK: hello1
; CHECK: hello2
CHECK: hello1
CHECK: hello2
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
; CHECK: hello1
; CHECK: hello2
CHECK: hello1
CHECK: hello2
Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK: {{^Hello world$}}
CHECK: {{^Hello world$}}
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
; CHECK: Hello world
CHECK: Hello world

4 changes: 2 additions & 2 deletions tests/integration/tests/examples/lit-and-filecheck/01-pass.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
; RUN: gcc "%s" -o %S/hello-world-1 && %S/hello-world-1 | %FILECHECK_EXEC %s
; CHECK: Hello world
RUN: gcc "%s" -o %S/hello-world-1 && %S/hello-world-1 | %FILECHECK_EXEC %s
CHECK: Hello world
*/

#include <stdio.h>
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/tests/examples/lit-and-filecheck/02-fail.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
; RUN: gcc "%s" -o %S/hello-world-2 && %S/hello-world-2 | %FILECHECK_EXEC %s; test $? = 1
; CHECK: Wrong line
RUN: gcc "%s" -o %S/hello-world-2 && %S/hello-world-2 | %FILECHECK_EXEC %s; test $? = 1
CHECK: Wrong line
*/

#include <stdio.h>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: printf "String1" | %FILECHECK_EXEC "%s" --check-prefix STRING1
; RUN: printf "String2" | %FILECHECK_EXEC "%s" --check-prefix STRING2
; STRING1: String1
; STRING2: String2
RUN: printf "String1" | %FILECHECK_EXEC "%s" --check-prefix STRING1
RUN: printf "String2" | %FILECHECK_EXEC "%s" --check-prefix STRING2
STRING1: String1
STRING2: String2
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; RUN: %expect_exit 2 %FILECHECK_EXEC | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
RUN: %expect_exit 2 %FILECHECK_EXEC | %FILECHECK_TESTER_EXEC "%s" --match-full-lines

; CHECK: <check-file> not specified
CHECK: <check-file> not specified
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: %expect_exit 2 %FILECHECK_EXEC "file/does/not/exist" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
RUN: %expect_exit 2 %FILECHECK_EXEC "file/does/not/exist" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines

; CHECK: Could not open check file 'file/does/not/exist': No such file or directory
; CHECK-EMPTY:
CHECK: Could not open check file 'file/does/not/exist': No such file or directory
CHECK-EMPTY:
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: %printf "" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
RUN: %printf "" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines

; CHECK: error: no check strings found with prefix 'CHECK:'
; CHECK-EMPTY
CHECK: error: no check strings found with prefix 'CHECK:'
CHECK-EMPTY
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: %printf "" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
RUN: %printf "" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines

; CHECK: error: no check strings found with prefix 'CHECK:'
; CHECK-EMPTY
CHECK: error: no check strings found with prefix 'CHECK:'
CHECK-EMPTY
Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK-NOT: {{.+}}
CHECK-NOT: {{.+}}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK-NOT: {{.+}}
CHECK-NOT: {{.+}}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: %cat "%S/filecheck.input" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" | %FILECHECK_TESTER_EXEC "%s"
RUN: %cat "%S/filecheck.input" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" | %FILECHECK_TESTER_EXEC "%s"

; CHECK: FileCheck error: '-' is empty.
; CHECK: FileCheck command line: {{.*}}.check{{$}}
CHECK: FileCheck error: '-' is empty.
CHECK: FileCheck command line: {{.*}}.check{{$}}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; RUN: %cat "%S/filecheck.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix STRING1
; RUN: %cat "%S/filecheck.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix STRING2
; RUN: %cat "%S/filecheck.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix STRING3
RUN: %cat "%S/filecheck.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix STRING1
RUN: %cat "%S/filecheck.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix STRING2
RUN: %cat "%S/filecheck.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix STRING3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: %cat "%S/filecheck.input" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix FOO | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %cat "%S/filecheck.input" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix FOO | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines

; CHECK:error: no check strings found with prefix 'FOO:'
; CHECK-EMPTY:
CHECK:error: no check strings found with prefix 'FOO:'
CHECK-EMPTY:
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: %cat "%S/filecheck.input" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix "GARBAGE1.23.4.2" | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %cat "%S/filecheck.input" | %expect_exit 2 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix "GARBAGE1.23.4.2" | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines

; CHECK:Supplied check-prefix is invalid! Prefixes must be unique and start with a letter and contain only alphanumeric characters, hyphens and underscores
; CHECK-EMPTY:
CHECK:Supplied check-prefix is invalid! Prefixes must be unique and start with a letter and contain only alphanumeric characters, hyphens and underscores
CHECK-EMPTY:
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; CHECK: string 1
; OTHER-CHECK: string 2
; ANOTHER-CHECK: string 3
; YET_ANOTHER-CHECK: string 4
CHECK: string 1
OTHER-CHECK: string 2
ANOTHER-CHECK: string 3
YET_ANOTHER-CHECK: string 4
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
; RUN: %cat "%S/filecheck.1.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix CHECK
; RUN: %cat "%S/filecheck.2.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix CHECK
RUN: %cat "%S/filecheck.1.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix CHECK
RUN: %cat "%S/filecheck.2.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix CHECK

; RUN: %cat "%S/filecheck.2.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix OTHER-CHECK
; RUN: %cat "%S/filecheck.3.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix OTHER-CHECK
RUN: %cat "%S/filecheck.2.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix OTHER-CHECK
RUN: %cat "%S/filecheck.3.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix OTHER-CHECK

; RUN: %cat "%S/filecheck.3.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix ANOTHER-CHECK
; RUN: %cat "%S/filecheck.4.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix ANOTHER-CHECK
RUN: %cat "%S/filecheck.3.input" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --check-prefix ANOTHER-CHECK
RUN: %cat "%S/filecheck.4.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --check-prefix ANOTHER-CHECK
26 changes: 13 additions & 13 deletions tests/integration/tests/options/--help/sample.itest
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
; RUN: %expect_exit 0 %FILECHECK_EXEC --help | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %expect_exit 0 %FILECHECK_EXEC --help | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines

; CHECK:{{^USAGE: [Ff]ile[Cc]heck.* \[options\] <check-file>$}}
; CHECK-EMPTY:
; CHECK-NEXT:OPTIONS:
; CHECK-EMPTY:
CHECK:{{^USAGE: [Ff]ile[Cc]heck.* \[options\] <check-file>$}}
CHECK-EMPTY:
CHECK-NEXT:OPTIONS:
CHECK-EMPTY:

; FileCheck C++ prints options without -- but with - only.
; FileCheck.py is made consistent so below we use regex matches to accomodate
; for both - and -- versions.
; CHECK:General options:
; CHECK-EMPTY:
; CHECK:{{^ --?match-full-lines - Require all positive matches to cover an entire input line.$}}
; CHECK-NEXT:{{^ ?Allows leading and trailing whitespace if --strict-whitespace$}}
; CHECK-NEXT:{{^ ?is not also passed.$}}
; CHECK-NEXT:{{^ --?strict-whitespace - Do not treat all horizontal whitespace as equivalent$}}
CHECK:General options:
CHECK-EMPTY:
CHECK:{{^ --?match-full-lines - Require all positive matches to cover an entire input line.$}}
CHECK-NEXT:{{^ ?Allows leading and trailing whitespace if --strict-whitespace$}}
CHECK-NEXT:{{^ ?is not also passed.$}}
CHECK-NEXT:{{^ --?strict-whitespace - Do not treat all horizontal whitespace as equivalent$}}

; CHECK:{{Generic [Oo]ptions:}}
; CHECK-EMPTY:
CHECK:{{Generic [Oo]ptions:}}
CHECK-EMPTY:
Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK: string 1
CHECK: string 1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
; RUN: %cat "%S/filecheck.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not error | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %cat "%S/filecheck.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not error | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines

; CHECK:command line:1:22: error: CHECK-NOT: excluded string found in input
; CHECK:-implicit-check-not='error'
; CHECK: ^
; CHECK:<stdin>:1:1: note: found here
; CHECK:error
; CHECK:^~~~~
CHECK:command line:1:22: error: CHECK-NOT: excluded string found in input
CHECK:-implicit-check-not='error'
CHECK: ^
CHECK:<stdin>:1:1: note: found here
CHECK:error
CHECK:^~~~~
Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK: string 1
CHECK: string 1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
; RUN: %cat "%S/filecheck.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not error | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %cat "%S/filecheck.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not error | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines

; CHECK:{{^.*}}filecheck.check:1:10: error: CHECK: expected string not found in input
; CHECK:; CHECK: string 1
; CHECK: ^
; CHECK:<stdin>:1:1: note: scanning from here
; CHECK:error
; CHECK:^
CHECK:{{^.*}}filecheck.check:1:8: error: CHECK: expected string not found in input
CHECK:CHECK: string 1
CHECK: ^
CHECK:<stdin>:1:1: note: scanning from here
CHECK:error
CHECK:^
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
; CHECK-NOT: error
; CHECK: string 1
CHECK-NOT: error
CHECK: string 1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
; RUN: %cat "%S/filecheck.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not error | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %cat "%S/filecheck.input" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not error | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines

; CHECK:command line:1:22: error: CHECK-NOT: excluded string found in input
; CHECK:-implicit-check-not='error'
; CHECK: ^
; CHECK:<stdin>:1:1: note: found here
; CHECK:error
; CHECK:^~~~~
CHECK:command line:1:22: error: CHECK-NOT: excluded string found in input
CHECK:-implicit-check-not='error'
CHECK: ^
CHECK:<stdin>:1:1: note: found here
CHECK:error
CHECK:^~~~~
Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK:Foo
CHECK:Foo
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
; RUN: %printf "someerrorsome\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not "error" | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines --check-prefix CHECK-BEFORE
RUN: %printf "someerrorsome\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not "error" | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines --check-prefix CHECK-BEFORE

; CHECK-BEFORE:command line:1:22: error: CHECK-NOT: excluded string found in input
; CHECK-BEFORE:-implicit-check-not='error'
; CHECK-BEFORE: ^
; CHECK-BEFORE:<stdin>:1:5: note: found here
; CHECK-BEFORE:someerrorsome
; CHECK-BEFORE: ^~~~~
CHECK-BEFORE:command line:1:22: error: CHECK-NOT: excluded string found in input
CHECK-BEFORE:-implicit-check-not='error'
CHECK-BEFORE: ^
CHECK-BEFORE:<stdin>:1:5: note: found here
CHECK-BEFORE:someerrorsome
CHECK-BEFORE: ^~~~~

; RUN: %printf "Foo\nsomeerrorsome" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not "error" | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines --check-prefix CHECK-AFTER
RUN: %printf "Foo\nsomeerrorsome" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not "error" | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines --check-prefix CHECK-AFTER

; CHECK-AFTER:command line:1:22: error: CHECK-NOT: excluded string found in input
; CHECK-AFTER:-implicit-check-not='error'
; CHECK-AFTER: ^
; CHECK-AFTER:<stdin>:2:5: note: found here
; CHECK-AFTER:someerrorsome
; CHECK-AFTER: ^~~~~
CHECK-AFTER:command line:1:22: error: CHECK-NOT: excluded string found in input
CHECK-AFTER:-implicit-check-not='error'
CHECK-AFTER: ^
CHECK-AFTER:<stdin>:2:5: note: found here
CHECK-AFTER:someerrorsome
CHECK-AFTER: ^~~~~

Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK:Foo
CHECK:Foo
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
; RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error "
; RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace
; RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --match-full-lines
; RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace --match-full-lines
RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error "
RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace
RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --match-full-lines
RUN: %printf "error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace --match-full-lines

; RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error "
; RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace
; RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --match-full-lines
; RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace --match-full-lines
RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error "
RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace
RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --match-full-lines
RUN: %printf "error \nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace --match-full-lines

; RUN: %printf " error\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
; RUN: %printf " error\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
; RUN: %printf " error\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --match-full-lines | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
; RUN: %printf " error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace --match-full-lines
RUN: %printf " error\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %printf " error\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %printf " error\nFoo" | %expect_exit 1 %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --match-full-lines | %FILECHECK_TESTER_EXEC "%s" --strict-whitespace --match-full-lines
RUN: %printf " error\nFoo" | %expect_exit 0 --expect-no-content %FILECHECK_EXEC "%S/filecheck.check" --implicit-check-not " error " --strict-whitespace --match-full-lines

; CHECK:command line:1:22: error: CHECK-NOT: excluded string found in input
; CHECK:-implicit-check-not=' error '
; CHECK: ^
; CHECK:<stdin>:1:1: note: found here
; CHECK: error
; CHECK:^~~~~~
CHECK:command line:1:22: error: CHECK-NOT: excluded string found in input
CHECK:-implicit-check-not=' error '
CHECK: ^
CHECK:<stdin>:1:1: note: found here
CHECK: error
CHECK:^~~~~~
Original file line number Diff line number Diff line change
@@ -1 +1 @@
; CHECK:Hello
CHECK:Hello
Loading