[llvm-commits] CVS: llvm/test/TableGen/DagDefSubst.ll DagIntSubst.ll

Reid Spencer reid at x10sys.com
Mon Apr 16 08:32:58 PDT 2007



Changes in directory llvm/test/TableGen:

DagDefSubst.ll updated: 1.1 -> 1.2
DagIntSubst.ll updated: 1.1 -> 1.2
---
Log message:

For PR1319: http://llvm.org/PR1319 :
Fix syntax of tests to ensure grep pattern is properly quoted.


---
Diffs of the changes:  (+3 -3)

 DagDefSubst.ll |    4 ++--
 DagIntSubst.ll |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/test/TableGen/DagDefSubst.ll
diff -u llvm/test/TableGen/DagDefSubst.ll:1.1 llvm/test/TableGen/DagDefSubst.ll:1.2
--- llvm/test/TableGen/DagDefSubst.ll:1.1	Thu Mar 30 16:49:59 2006
+++ llvm/test/TableGen/DagDefSubst.ll	Mon Apr 16 10:31:49 2007
@@ -1,5 +1,5 @@
-// RUN: tblgen %s | grep 'dag d = (X Y)' &&
-// RUN: tblgen %s | grep 'dag e = (Y X)'
+// RUN: tblgen %s | grep {dag d = (X Y)}
+// RUN: tblgen %s | grep {dag e = (Y X)}
 def X;
 
 class yclass;


Index: llvm/test/TableGen/DagIntSubst.ll
diff -u llvm/test/TableGen/DagIntSubst.ll:1.1 llvm/test/TableGen/DagIntSubst.ll:1.2
--- llvm/test/TableGen/DagIntSubst.ll:1.1	Tue Jan 31 00:01:40 2006
+++ llvm/test/TableGen/DagIntSubst.ll	Mon Apr 16 10:31:49 2007
@@ -1,4 +1,4 @@
-// RUN: tblgen %s | grep 'dag d = (X 13)'
+// RUN: tblgen %s | grep {dag d = (X 13)}
 def X;
 
 class C<int N> {






More information about the llvm-commits mailing list