[PATCH] D82658: [FileCheck][NFC] Clean up RUN style in verbose.txt test
Joel E. Denny via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 29 15:50:56 PDT 2020
This revision was automatically updated to reflect the committed changes.
jdenny marked 2 inline comments as done.
Closed by commit rG632438726429: [FileCheck][NFC] Clean up RUN style in verbose.txt test (authored by jdenny).
Changed prior to commit:
https://reviews.llvm.org/D82658?vs=273726&id=274273#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82658/new/
https://reviews.llvm.org/D82658
Files:
llvm/test/FileCheck/verbose.txt
Index: llvm/test/FileCheck/verbose.txt
===================================================================
--- llvm/test/FileCheck/verbose.txt
+++ llvm/test/FileCheck/verbose.txt
@@ -1,9 +1,16 @@
-; RUN: %ProtectFileCheckOutput FileCheck -dump-input=never -input-file %s %s 2>&1 \
-; RUN: | FileCheck -check-prefix QUIET --allow-empty %s
-; RUN: %ProtectFileCheckOutput FileCheck -dump-input=never -v -input-file %s %s 2>&1 \
-; RUN: | FileCheck --strict-whitespace -check-prefix V %s
-; RUN: %ProtectFileCheckOutput FileCheck -dump-input=never -vv -input-file %s %s 2>&1 \
-; RUN: | FileCheck --strict-whitespace -check-prefixes V,VV %s
+; RUN: %ProtectFileCheckOutput \
+; RUN: FileCheck --dump-input=never --input-file %s %s 2>&1 | \
+; RUN: FileCheck --check-prefix QUIET --allow-empty %s
+
+; RUN: %ProtectFileCheckOutput \
+; RUN: FileCheck --dump-input=never -v --input-file %s %s 2>&1 | \
+; RUN: FileCheck --strict-whitespace --check-prefix V %s
+
+; RUN: %ProtectFileCheckOutput \
+; RUN: FileCheck --dump-input=never -vv --input-file %s %s 2>&1 | \
+; RUN: FileCheck --strict-whitespace --check-prefixes V,VV %s
+
+; END.
foo
bar
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D82658.274273.patch
Type: text/x-patch
Size: 1151 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200629/d6f8b2b0/attachment.bin>
More information about the llvm-commits
mailing list