diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2014-05-27 20:53:49 +0100 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2014-05-27 20:53:49 +0100 |
commit | 02aca9ffab2d5a63e89f83d5eadb7133132c3b0a (patch) | |
tree | 673526b54101f72b42813d6f05edaba15f82b727 /Test/extractloops | |
parent | 75416c24e78d9992c10fbb86ba458e813acf943d (diff) |
Fix lit test suite when running Boogie under a path that contains
spaces.
Diffstat (limited to 'Test/extractloops')
-rw-r--r-- | Test/extractloops/detLoopExtract.bpl | 4 | ||||
-rw-r--r-- | Test/extractloops/detLoopExtract1.bpl | 4 | ||||
-rw-r--r-- | Test/extractloops/t1.bpl | 4 | ||||
-rw-r--r-- | Test/extractloops/t2.bpl | 4 | ||||
-rw-r--r-- | Test/extractloops/t3.bpl | 8 |
5 files changed, 12 insertions, 12 deletions
diff --git a/Test/extractloops/detLoopExtract.bpl b/Test/extractloops/detLoopExtract.bpl index b224aece..7e9d0629 100644 --- a/Test/extractloops/detLoopExtract.bpl +++ b/Test/extractloops/detLoopExtract.bpl @@ -1,5 +1,5 @@ -// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -deterministicExtractLoops -recursionBound:4 %s > %t
-// RUN: %diff %s.expect %t
+// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -deterministicExtractLoops -recursionBound:4 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
var g:int; var h:int; //not modified var k:int; //modified in a procedure call diff --git a/Test/extractloops/detLoopExtract1.bpl b/Test/extractloops/detLoopExtract1.bpl index 80646ef2..3791fab8 100644 --- a/Test/extractloops/detLoopExtract1.bpl +++ b/Test/extractloops/detLoopExtract1.bpl @@ -1,5 +1,5 @@ -// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -deterministicExtractLoops -recursionBound:4 %s > %t -// RUN: %diff %s.expect %t +// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -deterministicExtractLoops -recursionBound:4 "%s" > "%t" +// RUN: %diff "%s.expect" "%t" var g:int; procedure {:entrypoint} Foo(a:int) diff --git a/Test/extractloops/t1.bpl b/Test/extractloops/t1.bpl index 2f566a4c..a0ebb0b8 100644 --- a/Test/extractloops/t1.bpl +++ b/Test/extractloops/t1.bpl @@ -1,5 +1,5 @@ -// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 %s > %t
-// RUN: %diff %s.expect %t
+// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
var g: int;
diff --git a/Test/extractloops/t2.bpl b/Test/extractloops/t2.bpl index 5546eb86..d62733f7 100644 --- a/Test/extractloops/t2.bpl +++ b/Test/extractloops/t2.bpl @@ -1,5 +1,5 @@ -// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 %s > %t
-// RUN: %diff %s.expect %t
+// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
var g: int;
diff --git a/Test/extractloops/t3.bpl b/Test/extractloops/t3.bpl index d3afa8d5..023a9adb 100644 --- a/Test/extractloops/t3.bpl +++ b/Test/extractloops/t3.bpl @@ -1,7 +1,7 @@ -// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -recursionBound:2 %s > %t
-// RUN: %diff %s.rb2.expect %t
-// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -recursionBound:4 %s > %t
-// RUN: %diff %s.rb4.expect %t
+// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -recursionBound:2 "%s" > "%t"
+// RUN: %diff "%s.rb2.expect" "%t"
+// RUN: %boogie -stratifiedInline:1 -extractLoops -removeEmptyBlocks:0 -coalesceBlocks:0 -recursionBound:4 "%s" > "%t"
+// RUN: %diff "%s.rb4.expect" "%t"
var g: int;
procedure foo()
|