diff options
-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() { |