[llvm-commits] CVS: llvm/test/Feature/globalredefinition2.ll globalredefinition3.ll packed_struct.ll
Reid Spencer
reid at x10sys.com
Sat Apr 14 15:27:26 PDT 2007
Changes in directory llvm/test/Feature:
globalredefinition2.ll updated: 1.3 -> 1.4
globalredefinition3.ll updated: 1.4 -> 1.5
packed_struct.ll updated: 1.7 -> 1.8
---
Log message:
Try some alternative syntax.
---
Diffs of the changes: (+5 -5)
globalredefinition2.ll | 4 ++--
globalredefinition3.ll | 4 ++--
packed_struct.ll | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
Index: llvm/test/Feature/globalredefinition2.ll
diff -u llvm/test/Feature/globalredefinition2.ll:1.3 llvm/test/Feature/globalredefinition2.ll:1.4
--- llvm/test/Feature/globalredefinition2.ll:1.3 Sat Apr 14 11:40:08 2007
+++ llvm/test/Feature/globalredefinition2.ll Sat Apr 14 17:27:05 2007
@@ -1,6 +1,6 @@
; Test that redefinitions of globals produces an error in llvm-upgrade
-; RUN: llvm-upgrade < %s -o /dev/null -f |& \
-; RUN: grep "Renaming global variable 'B' to.*linkage errors"
+; RUN: llvm-upgrade < %s -o /dev/null -f |& grep \
+; RUN: "Renaming global variable 'B' to.*linkage errors"
%B = global int 7
%B = global int 7
Index: llvm/test/Feature/globalredefinition3.ll
diff -u llvm/test/Feature/globalredefinition3.ll:1.4 llvm/test/Feature/globalredefinition3.ll:1.5
--- llvm/test/Feature/globalredefinition3.ll:1.4 Sat Apr 14 11:40:08 2007
+++ llvm/test/Feature/globalredefinition3.ll Sat Apr 14 17:27:05 2007
@@ -1,5 +1,5 @@
-; RUN: ignore llvm-as < %s -o /dev/null -f |& \
-; RUN: grep "Redefinition of global variable named 'B'"
+; RUN: ignore llvm-as < %s -o /dev/null -f |& grep \
+; RUN: "Redefinition of global variable named 'B'"
; END.
@B = global i32 7
Index: llvm/test/Feature/packed_struct.ll
diff -u llvm/test/Feature/packed_struct.ll:1.7 llvm/test/Feature/packed_struct.ll:1.8
--- llvm/test/Feature/packed_struct.ll:1.7 Sat Apr 14 11:40:08 2007
+++ llvm/test/Feature/packed_struct.ll Sat Apr 14 17:27:05 2007
@@ -2,7 +2,7 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
; RUN: not grep cast %t2.ll
-; RUN: grep '\<{' %t2.ll
+; RUN: grep {\<\{} %t2.ll
; END.
%struct.anon = type <{ i8, i32, i32, i32 }>
More information about the llvm-commits
mailing list