about summary refs log tree commit diff homepage
path: root/test
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2014-01-12 19:05:27 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2014-01-20 13:21:31 +0000
commit32b0d6bac1a00afb948d64eb0e6390a31f7d8d92 (patch)
treef89afb1e5f23ebff23e6e4d0d16dd6987379c6f5 /test
parenta24c8a8b57eb355f28ec2890847a33c77143a1ef (diff)
downloadklee-32b0d6bac1a00afb948d64eb0e6390a31f7d8d92.tar.gz
Fixed Expr/Parser/Simplify.pc test for llvm-lit. Escaped quote issue.
Diffstat (limited to 'test')
-rw-r--r--test/Expr/Parser/Simplify.pc30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/Expr/Parser/Simplify.pc b/test/Expr/Parser/Simplify.pc
index 1a853b16..6d817b6f 100644
--- a/test/Expr/Parser/Simplify.pc
+++ b/test/Expr/Parser/Simplify.pc
@@ -3,38 +3,38 @@
 array a[64] : w32 -> w8 = symbolic
 
 # Check -- X u> Y ==> Y u< X
-# RUN: grep -A 2 \"# Query 1\" %t > %t2
-# RUN: grep \"(query .. false .(Ult (Read w8 1 a) (Read w8 0 a)).)\" %t2
+# RUN: grep -A 2 "# Query 1" %t > %t2
+# RUN: grep "(query .. false .(Ult (Read w8 1 a) (Read w8 0 a)).)" %t2
 (query [] false [(Ugt (Read w8 0 a) (Read w8 1 a))])
 
 # Check -- X u>= Y ==> Y u<= X
-# RUN: grep -A 2 \"# Query 2\" %t > %t2
-# RUN: grep \"(query .. false .(Ule (Read w8 1 a) (Read w8 0 a)).)\" %t2
+# RUN: grep -A 2 "# Query 2" %t > %t2
+# RUN: grep "(query .. false .(Ule (Read w8 1 a) (Read w8 0 a)).)" %t2
 (query [] false [(Uge (Read w8 0 a) (Read w8 1 a))])
 
 # Check -- X u> Y ==> Y u< X
-# RUN: grep -A 2 \"# Query 3\" %t > %t2
-# RUN: grep \"(query .. false .(Slt (Read w8 1 a) (Read w8 0 a)).)\" %t2
+# RUN: grep -A 2 "# Query 3" %t > %t2
+# RUN: grep "(query .. false .(Slt (Read w8 1 a) (Read w8 0 a)).)" %t2
 (query [] false [(Sgt (Read w8 0 a) (Read w8 1 a))])
 
 # Check -- X u>= Y ==> Y u<= X
-# RUN: grep -A 2 \"# Query 4\" %t > %t2
-# RUN: grep \"(query .. false .(Sle (Read w8 1 a) (Read w8 0 a)).)\" %t2
+# RUN: grep -A 2 "# Query 4" %t > %t2
+# RUN: grep "(query .. false .(Sle (Read w8 1 a) (Read w8 0 a)).)" %t2
 (query [] false [(Sge (Read w8 0 a) (Read w8 1 a))])
 
 # Check -- X != Y ==> !(X == Y)
-# RUN: grep -A 2 \"# Query 5\" %t > %t2
-# RUN: grep \"(query .. false .(Not (Eq (Read w8 0 a) (Read w8 1 a))).)\" %t2
+# RUN: grep -A 2 "# Query 5" %t > %t2
+# RUN: grep "(query .. false .(Not (Eq (Read w8 0 a) (Read w8 1 a))).)" %t2
 (query [] false [(Ne (Read w8 0 a) (Read w8 1 a))])
 
 # Check -- !(X or Y) ==> !X and !Y
-# RUN: grep -A 3 \"# Query 6$\" %t > %t2
-# RUN: grep \"(query .. false .(And (Not (Eq 0 (Read w8 0 a)))\" %t2
-# RUN: grep                       \"(Not (Eq 1 (Read w8 1 a))))\" %t2
+# RUN: grep -A 3 "# Query 6$" %t > %t2
+# RUN: grep "(query .. false .(And (Not (Eq 0 (Read w8 0 a)))" %t2
+# RUN: grep                       "(Not (Eq 1 (Read w8 1 a))))" %t2
 (query [] false [(Not (Or (Eq 0 (Read w8 0 a))
                           (Eq 1 (Read w8 1 a))))])
 
 # Check -- false == X ==> !X
-# RUN: grep -A 2 \"# Query 7\" %t > %t2
-# RUN: grep \"(query .. false .(Not (Extract 1 (Read w8 0 a))).)\" %t2
+# RUN: grep -A 2 "# Query 7" %t > %t2
+# RUN: grep "(query .. false .(Not (Extract 1 (Read w8 0 a))).)" %t2
 (query [] false [(Eq (Extract w1 1 (Read w8 0 a)) false)])