diff options
author | wuestholz <unknown> | 2015-09-30 03:12:53 +0200 |
---|---|---|
committer | wuestholz <unknown> | 2015-09-30 03:12:53 +0200 |
commit | 13dcb53b7dde21f887d87c47608f81082e7efbb3 (patch) | |
tree | 37a32a3b11274558753d71285cafb04a473d059a | |
parent | 69ed5bac5efbc0ac64f26b6dadf81bcfec9a0b5b (diff) |
Fix two test cases that failed if the path to "DafnySever.exe" contained spaces.
-rw-r--r-- | Test/server/minimal.transcript | 2 | ||||
-rw-r--r-- | Test/server/simple-session.transcript | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Test/server/minimal.transcript b/Test/server/minimal.transcript index 9625fb00..394fd921 100644 --- a/Test/server/minimal.transcript +++ b/Test/server/minimal.transcript @@ -1,4 +1,4 @@ -# RUN: %server "%s" > "%t"
+# RUN: "%server" "%s" > "%t"
# RUN: %diff "%s.expect" "%t"
verify
eyJhcmdzIjpbIi9jb21waWxlOjAiLCIvbm9sb2dvIiwiL3ByaW50VG9vbHRpcHMiLCIvdGltZUxp
diff --git a/Test/server/simple-session.transcript b/Test/server/simple-session.transcript index 26539267..d095f6dd 100644 --- a/Test/server/simple-session.transcript +++ b/Test/server/simple-session.transcript @@ -1,4 +1,4 @@ -# RUN: %server "%s" > "%t"
+# RUN: "%server" "%s" > "%t"
# RUN: %diff "%s.expect" "%t"
verify
eyJhcmdzIjpbIi9jb21waWxlOjAiLCIvbm9sb2dvIiwiL3ByaW50VG9vbHRpcHMiLCIvdGltZUxp
|