diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-06-28 00:53:54 -0700 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-06-28 00:53:54 -0700 |
commit | 97628c5279f6b82173833573f0906ee5d2ece99f (patch) | |
tree | 6113e51fabd766b7805a8fd3e51bd6c9999de2b7 | |
parent | fe530cab7e1b8e6a935b92fff44229641623dbfa (diff) |
Try to unbreak the tests added in
7f4e6b0fab58bb3028cd0f1734fc97b3feafefdf under Windows.
-rw-r--r-- | Test/commandline/multiple_procs_verify_one.bpl | 2 | ||||
-rw-r--r-- | Test/commandline/multiple_procs_verify_one_request_twice.bpl | 2 | ||||
-rw-r--r-- | Test/commandline/multiple_procs_verify_two.bpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Test/commandline/multiple_procs_verify_one.bpl b/Test/commandline/multiple_procs_verify_one.bpl index eaaa9af4..5eaef4b1 100644 --- a/Test/commandline/multiple_procs_verify_one.bpl +++ b/Test/commandline/multiple_procs_verify_one.bpl @@ -1,5 +1,5 @@ // RUN: %boogie -proc:foo "%s" > "%t" -// RUN: %OutputCheck --file-to-check %t %s +// RUN: %OutputCheck --file-to-check "%t" "%s" // CHECK-L: Boogie program verifier finished with 1 verified, 0 errors // Only this procedure should be verified, the others should be ignored diff --git a/Test/commandline/multiple_procs_verify_one_request_twice.bpl b/Test/commandline/multiple_procs_verify_one_request_twice.bpl index fe9c44ba..7c6ee34e 100644 --- a/Test/commandline/multiple_procs_verify_one_request_twice.bpl +++ b/Test/commandline/multiple_procs_verify_one_request_twice.bpl @@ -1,5 +1,5 @@ // RUN: %boogie -proc:foo -proc:foo "%s" > "%t" -// RUN: %OutputCheck --file-to-check %t %s +// RUN: %OutputCheck --file-to-check "%t" "%s" // CHECK-L: Boogie program verifier finished with 1 verified, 0 errors // Although the command line requests two verify this procedure twice we should diff --git a/Test/commandline/multiple_procs_verify_two.bpl b/Test/commandline/multiple_procs_verify_two.bpl index 9e3fb0c6..b089bd5b 100644 --- a/Test/commandline/multiple_procs_verify_two.bpl +++ b/Test/commandline/multiple_procs_verify_two.bpl @@ -1,5 +1,5 @@ // RUN: %boogie -proc:foo -proc:bar "%s" > "%t" -// RUN: %OutputCheck --file-to-check %t %s +// RUN: %OutputCheck --file-to-check "%t" "%s" // CHECK-L: Boogie program verifier finished with 2 verified, 0 errors procedure foo() { |