[llvm] r290070 - [FileCheck] Fix --strict-whitespace --match-full-lines -- add test-case

Tom de Vries via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 18 13:04:47 PST 2016


Author: vries
Date: Sun Dec 18 15:04:47 2016
New Revision: 290070

URL: http://llvm.org/viewvc/llvm-project?rev=290070&view=rev
Log:
[FileCheck] Fix --strict-whitespace --match-full-lines -- add test-case

Add test-case that was missing in "[FileCheck] Fix --strict-whitespace
--match-full-lines" commit.

Added:
    llvm/trunk/test/FileCheck/strict-whitespace-match-full-lines.txt

Added: llvm/trunk/test/FileCheck/strict-whitespace-match-full-lines.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FileCheck/strict-whitespace-match-full-lines.txt?rev=290070&view=auto
==============================================================================
--- llvm/trunk/test/FileCheck/strict-whitespace-match-full-lines.txt (added)
+++ llvm/trunk/test/FileCheck/strict-whitespace-match-full-lines.txt Sun Dec 18 15:04:47 2016
@@ -0,0 +1,14 @@
+; RUN: sed 's/^;.*$//' %s \
+; RUN: | FileCheck --strict-whitespace --match-full-lines %s
+
+bla1
+bla2
+ bla3
+bla4 
+ bla5 
+
+; CHECK-LABEL:bla1
+; CHECK-NEXT:bla2
+; CHECK-NEXT: bla3
+; CHECK-NEXT:bla4 
+; CHECK-NEXT: bla5 




More information about the llvm-commits mailing list