about summary refs log tree commit diff homepage
path: root/test/Solver/LargeIntegers.pc
diff options
context:
space:
mode:
authorHristina Palikareva <h.palikareva@imperial.ac.uk>2013-10-15 14:54:40 +0100
committerHristina Palikareva <h.palikareva@imperial.ac.uk>2013-10-15 14:54:40 +0100
commit3294f19dfe4571538b21f2bd31cce0c4eea1ae83 (patch)
treef021a6fda776b165bb1d4785eb321f8f246e1610 /test/Solver/LargeIntegers.pc
parentad0f0bd772ab8f03967a83bb8960658bf6caafa4 (diff)
downloadklee-3294f19dfe4571538b21f2bd31cce0c4eea1ae83.tar.gz
Fixed nondeterministic behaviour in test case ./test/Solver/LargeIntegers.pc -- only 16 bytes of array a were initialised in Query 2, but values of 17 bytes were later required for comparison.
Diffstat (limited to 'test/Solver/LargeIntegers.pc')
-rw-r--r--test/Solver/LargeIntegers.pc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Solver/LargeIntegers.pc b/test/Solver/LargeIntegers.pc
index 99d1a61b..53ff3a51 100644
--- a/test/Solver/LargeIntegers.pc
+++ b/test/Solver/LargeIntegers.pc
@@ -11,7 +11,7 @@ array a[64] : w32 -> w8 = symbolic
 (query [] false [(Extract w5 60 (Concat w128 (w64 1) (w64 2)))])
 
 # RUN: grep -A 1 \"Query 2\" %t > %t2
-# RUN: grep \"Array 0:\ta.16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0\" %t2
+# RUN: grep \"Array 0:\ta.16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1\" %t2
 (query [(Eq 0x0102030405060708090A0B0C0D0E0F10 (ReadLSB w128 0 a))] 
        false 
        [] [a])