[llvm] 6324387 - [FileCheck][NFC] Clean up RUN style in verbose.txt test
Joel E. Denny via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 29 15:36:54 PDT 2020
Author: Joel E. Denny
Date: 2020-06-29T18:35:11-04:00
New Revision: 632438726429859b80a68721bf91daec2d8b7b2a
URL: https://github.com/llvm/llvm-project/commit/632438726429859b80a68721bf91daec2d8b7b2a
DIFF: https://github.com/llvm/llvm-project/commit/632438726429859b80a68721bf91daec2d8b7b2a.diff
LOG: [FileCheck][NFC] Clean up RUN style in verbose.txt test
Reviewed By: jhenderson, thopre
Differential Revision: https://reviews.llvm.org/D82658
Added:
Modified:
llvm/test/FileCheck/verbose.txt
Removed:
################################################################################
diff --git a/llvm/test/FileCheck/verbose.txt b/llvm/test/FileCheck/verbose.txt
index f852702a9b1f..45123b5cdd10 100644
--- a/llvm/test/FileCheck/verbose.txt
+++ b/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
More information about the llvm-commits
mailing list