summaryrefslogtreecommitdiff
path: root/Test/lit.site.cfg
diff options
context:
space:
mode:
authorGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-06-07 12:38:31 -0700
committerGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-06-07 12:38:31 -0700
commit191ff327c49796e8a64fae893520d878b32d3268 (patch)
tree3d52f1364c4d61f17dfea92fb5fcfcf65cd10afa /Test/lit.site.cfg
parent31788cd65340522fbc7dd84cd8d7192ccb8e6d91 (diff)
Fix the UseBaseNameForFileName flag; it shouldn't set the return code to zero.
The test suite relies on error codes all being zero (except for preprocessing errors), so add a flag for that (as suggested in a source comment).
Diffstat (limited to 'Test/lit.site.cfg')
-rw-r--r--Test/lit.site.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/lit.site.cfg b/Test/lit.site.cfg
index d0b3a85b..1fe593f4 100644
--- a/Test/lit.site.cfg
+++ b/Test/lit.site.cfg
@@ -91,7 +91,7 @@ if os.name == 'posix':
lit_config.fatal('Cannot find mono. Make sure it is your PATH')
# Expected output does not contain logo
-dafnyExecutable += ' -nologo'
+dafnyExecutable += ' -nologo -countVerificationErrors:0'
# We do not want absolute or relative paths in error messages, just the basename of the file
dafnyExecutable += ' -useBaseNameForFileName'