summaryrefslogtreecommitdiffstats
path: root/clang/utils/test/TestingConfig.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove old test runner, this has moved to LLVM/utils/lit and all known clientsDaniel Dunbar2009-09-221-27/+0
| | | | | | | have been updated. - Please let me know of any problems. llvm-svn: 82524
* Add --vg-arg option to clang test runner.Daniel Dunbar2009-09-041-0/+1
| | | | | | | | - Passes additional argument through to valgrind. Also, don't run valgrind with --leak-check=no by default. llvm-svn: 80981
* lit: Add internal script execution.Daniel Dunbar2009-08-011-0/+1
| | | | | | | | | | | | | | | | | | | | - Off by default, you can test it with the --no-sh argument. - For me it works for all but 3 tests, but there a number of FIXMEs and QOI issues: o Redirection isn't completely accurate -- in practice it can't portably be, but I would like to error out if someone writes something which isn't going to work. This is the source of the 3 test failures. o Some pipe configurations have the potential to deadlock. o It is significantly slower when multithreaded. I believe this is due to locking happening under the hood, there is probably some kind of solution but I haven't investigated yet. o Log output is ugly. llvm-svn: 77784
* lit: Pull a few more variables into the TestingConfig object.Daniel Dunbar2009-08-011-2/+6
| | | | llvm-svn: 77772
* MultiTestRunner: Simplify, cleanup, and rename!Daniel Dunbar2009-07-311-0/+21
- MultiTestRunner will eventually be renamed to 'lit', for LLVM integrated tester/testing. This has the pros of being pronouncable and short. - "Project" level configuration lives in 'lit.cfg', which is also what lit uses to find the root testing directory in some cases. This can be overridden for use in project files which want to precisely specify where things are. - TestRunner.py is not longer able to be invoked directly. - Moved some code to Util.py. - Introduced a configuration object. - Cleaned up --help, removed a few not-very-useful options. - Tried not to break anything that works. :) llvm-svn: 77665
OpenPOWER on IntegriCloud