summaryrefslogtreecommitdiff
path: root/Test/lit.site.cfg
Commit message (Collapse)AuthorAge
* Report the python version being used when executing lit.Gravatar Dan Liew2014-05-28
|
* Fix lit test suite when running Boogie under a path that containsGravatar Dan Liew2014-05-27
| | | | spaces.
* Added simple python implementation of diff to replace using theGravatar Dan Liew2014-05-27
| | | | | ``fc`` tool on windows because it is buggy when tests are run concurrently.
* Remove solver executable check under windows at the requestGravatar Dan Liew2014-05-12
| | | | | of Valentin Wüstholz because under Windows Boogie looks in other locations for Z3.
* Convert houd12.bpl into a OutputCheck style test and also passGravatar Dan Liew2014-05-12
| | | | --dump-file-to-check flag to OutputCheck by default to ease debugging
* Prevent lit tests from running on OSX/Linux if mono is not inGravatar Dan Liew2014-05-11
| | | | the user's PATH
* Made lit tests slightly less fragile under OSX/Linux by passing flags to ignoreGravatar Dan Liew2014-05-11
| | | | DOS line endings and whitespace to diff tool.
* Added a sanity check to lit configuration so tests won't runGravatar Dan Liew2014-05-10
| | | | if solver executables are missing.
* Enabled the inline lit tests. In order to support expansion2.bplGravatar Dan Liew2014-05-07
| | | | | | we now require the OutputCheck tool. The lit.site.cfg file has been taught to require that this tool is in the user's PATH before testing starts.
* For lit tests running on Windows pass /W flag to the fc toolGravatar Dan Liew2014-05-06
| | | | | | | so that all whitespace (including mismatching line endings due to DOS vs UNIX) are ignored. This fixes the test1/Arrays.bpl test under Windows. It's quite suprising this issue didn't come up earlier.
* Pass -useBaseNameForFileName option to Boogie when running tests.Gravatar Dan Liew2014-04-06
| | | | | | | | | This is needed because the expected test output contains just the basename of the .bpl files in error messages but lit passes an absolute path to Boogie so without this option error messages would contain absolute paths which would cause the tests to fail. Now all the houdini tests pass when driven by lit.
* Added basic lit configuration file for running tests.Gravatar Dan Liew2014-04-06