Skip to content

Commit 55480af

Browse files
committed
Code climate: fix next batch of "; " occurences
1 parent bdafa32 commit 55480af

File tree

19 files changed

+49
-49
lines changed

19 files changed

+49
-49
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
; CHECK: hello1
2-
; CHECK: hello2
1+
CHECK: hello1
2+
CHECK: hello2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
; CHECK: hello1
2-
; CHECK: hello2
1+
CHECK: hello1
2+
CHECK: hello2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
; CHECK: {{^Hello world$}}
1+
CHECK: {{^Hello world$}}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
; CHECK: Hello world
1+
CHECK: Hello world
22

tests/integration/tests/examples/lit-and-filecheck/01-pass.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
; RUN: gcc "%s" -o %S/hello-world-1 && %S/hello-world-1 | %FILECHECK_EXEC %s
3-
; CHECK: Hello world
2+
RUN: gcc "%s" -o %S/hello-world-1 && %S/hello-world-1 | %FILECHECK_EXEC %s
3+
CHECK: Hello world
44
*/
55

66
#include <stdio.h>

tests/integration/tests/examples/lit-and-filecheck/02-fail.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
; RUN: gcc "%s" -o %S/hello-world-2 && %S/hello-world-2 | %FILECHECK_EXEC %s; test $? = 1
3-
; CHECK: Wrong line
2+
RUN: gcc "%s" -o %S/hello-world-2 && %S/hello-world-2 | %FILECHECK_EXEC %s; test $? = 1
3+
CHECK: Wrong line
44
*/
55

66
#include <stdio.h>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: printf "String1" | %FILECHECK_EXEC "%s" --check-prefix STRING1
2-
; RUN: printf "String2" | %FILECHECK_EXEC "%s" --check-prefix STRING2
3-
; STRING1: String1
4-
; STRING2: String2
1+
RUN: printf "String1" | %FILECHECK_EXEC "%s" --check-prefix STRING1
2+
RUN: printf "String2" | %FILECHECK_EXEC "%s" --check-prefix STRING2
3+
STRING1: String1
4+
STRING2: String2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
; RUN: %expect_exit 2 %FILECHECK_EXEC | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
1+
RUN: %expect_exit 2 %FILECHECK_EXEC | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
22

3-
; CHECK: <check-file> not specified
3+
CHECK: <check-file> not specified
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %expect_exit 2 %FILECHECK_EXEC "file/does/not/exist" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
1+
RUN: %expect_exit 2 %FILECHECK_EXEC "file/does/not/exist" | %FILECHECK_TESTER_EXEC "%s" --match-full-lines
22

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

3-
; CHECK: error: no check strings found with prefix 'CHECK:'
4-
; CHECK-EMPTY
3+
CHECK: error: no check strings found with prefix 'CHECK:'
4+
CHECK-EMPTY

0 commit comments

Comments
 (0)