Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | [lit] Implement --max-time support by using provider cancel method. | Daniel Dunbar | 2013-08-29 | 1 | -10/+16 | |
| | | | | llvm-svn: 189555 | |||||
* | [lit] Refactor test execution logic into lit.run.Run. | Daniel Dunbar | 2013-08-29 | 2 | -123/+158 | |
| | | | | llvm-svn: 189554 | |||||
* | [lit] Put display lock inside the ThreadResultsConsumer. | Daniel Dunbar | 2013-08-29 | 1 | -17/+9 | |
| | | | | llvm-svn: 189553 | |||||
* | [lit] Factor out a results consumer interface for test execution. | Daniel Dunbar | 2013-08-29 | 1 | -20/+44 | |
| | | | | | | - Also, change TestProvider interface to operate on test indices. llvm-svn: 189552 | |||||
* | [lit] Move top-level execute code into Run object. | Daniel Dunbar | 2013-08-29 | 4 | -41/+49 | |
| | | | | llvm-svn: 189551 | |||||
* | [lit] Factor out Run class to capture configuration + discovered tests. | Daniel Dunbar | 2013-08-29 | 2 | -18/+29 | |
| | | | | llvm-svn: 189550 | |||||
* | [lit] Change lit.Test.ResultCode to be unique across pickling. | Daniel Dunbar | 2013-08-29 | 1 | -0/+11 | |
| | | | | llvm-svn: 189549 | |||||
* | [lit] Add a TODO. | Daniel Dunbar | 2013-08-29 | 1 | -0/+29 | |
| | | | | llvm-svn: 189546 | |||||
* | [lit] Update shtest format to return lit.Test.Result objects. | Daniel Dunbar | 2013-08-29 | 1 | -40/+21 | |
| | | | | llvm-svn: 189545 | |||||
* | [lit] Update LitTestCase to support lit.Test.Result. | Daniel Dunbar | 2013-08-29 | 1 | -5/+13 | |
| | | | | llvm-svn: 189544 | |||||
* | [lit] Fix a couple lingering Py3 compat issues in ProgressBar. | Daniel Dunbar | 2013-08-21 | 1 | -4/+12 | |
| | | | | llvm-svn: 188951 | |||||
* | [lit] Lift XFAIL handling to core infrastructure. | Daniel Dunbar | 2013-08-21 | 3 | -36/+48 | |
| | | | | llvm-svn: 188949 | |||||
* | [lit] Allow formats to return lit.Test.Result instances directly. | Daniel Dunbar | 2013-08-21 | 2 | -10/+21 | |
| | | | | llvm-svn: 188948 | |||||
* | [lit] Factor out a separate Test.Result() object. | Daniel Dunbar | 2013-08-21 | 2 | -33/+40 | |
| | | | | llvm-svn: 188947 | |||||
* | [lit] Simplify --time-tests code. | Daniel Dunbar | 2013-08-21 | 1 | -11/+5 | |
| | | | | llvm-svn: 188946 | |||||
* | [lit] Extract TestFormat base class, for future use. | Daniel Dunbar | 2013-08-21 | 4 | -10/+10 | |
| | | | | llvm-svn: 188945 | |||||
* | [lit] Rewrite TODO list, and elaborate on some things. | Daniel Dunbar | 2013-08-16 | 1 | -12/+129 | |
| | | | | | | | - If anyone is interested in lit's feature set, I'd appreciate any comments on the elaborated items. llvm-svn: 188590 | |||||
* | [lit] Remove some done TODOs. | Daniel Dunbar | 2013-08-15 | 1 | -4/+0 | |
| | | | | llvm-svn: 188502 | |||||
* | [lit] Add test coverage of gtest format. | Daniel Dunbar | 2013-08-14 | 3 | -0/+57 | |
| | | | | llvm-svn: 188417 | |||||
* | [lit] Ensure test output is converted to strings where possible. | Daniel Dunbar | 2013-08-14 | 7 | -4/+63 | |
| | | | | | | - This cleans up the text output of failing tests when run under PY3. llvm-svn: 188416 | |||||
* | [lit] Support parsing scripts with inconsistent or invalid encodings. | Daniel Dunbar | 2013-08-14 | 2 | -12/+48 | |
| | | | | | | | | | | | | - For whatever reason, we have a lot of test files with bogus unicode characters. This patch allows those scripts to still be parsed on Python3 by changing the parsing logic to work on binary files, and only require the actual script commands to be convertible to ascii. - This patch has been tweaked to now ensure that the command strings are not of unicode type on Python 2.6-7. llvm-svn: 188398 | |||||
* | Revert r188376, "[lit] Support parsing scripts with inconsistent or invalid ↵ | Daniel Dunbar | 2013-08-14 | 2 | -45/+12 | |
| | | | | | | encodings.", this doesn't work yet for bots using the internal shell. llvm-svn: 188379 | |||||
* | [lit] Support parsing scripts with inconsistent or invalid encodings. | Daniel Dunbar | 2013-08-14 | 2 | -12/+45 | |
| | | | | | | | | | - For whatever reason, we have a lot of test files with bogus unicode characters. This patch allows those scripts to still be parsed on Python3 by changing the parsing logic to work on binary files, and only require the actual script commands to be convertible to ascii. llvm-svn: 188376 | |||||
* | [lit] Fix a relative import issue I missed earlier. | Daniel Dunbar | 2013-08-14 | 1 | -2/+4 | |
| | | | | llvm-svn: 188360 | |||||
* | [lit] Avoid StringIO. | Daniel Dunbar | 2013-08-14 | 1 | -19/+25 | |
| | | | | | | | - We barely used it, and it is very hard to use in a 2.5-3 compatible way because of changing expectations for its input types. llvm-svn: 188359 | |||||
* | [lit] Fix tests to execute lit with same python as invoked with. | Daniel Dunbar | 2013-08-14 | 3 | -3/+6 | |
| | | | | llvm-svn: 188358 | |||||
* | [lit] Factor ShTest format script command parsing from other processing. | Daniel Dunbar | 2013-08-14 | 1 | -17/+32 | |
| | | | | llvm-svn: 188357 | |||||
* | [lit] Move executeCommand() into lit.util. | Daniel Dunbar | 2013-08-14 | 4 | -23/+23 | |
| | | | | llvm-svn: 188356 | |||||
* | [lit] Move formats into their own subpackage. | Daniel Dunbar | 2013-08-14 | 4 | -117/+130 | |
| | | | | llvm-svn: 188355 | |||||
* | Lit: Introduce "%/[STpst] into parseIntegratedTestScript(), to normalize ↵ | NAKAMURA Takumi | 2013-08-14 | 1 | -0/+9 | |
| | | | | | | substitutions. llvm-svn: 188348 | |||||
* | [lit] Support use of setup.py from other directories. | Daniel Dunbar | 2013-08-13 | 1 | -1/+8 | |
| | | | | llvm-svn: 188309 | |||||
* | [lit] Remove old ExamplesTests directory. | Daniel Dunbar | 2013-08-09 | 23 | -262/+0 | |
| | | | | | | | - The actual tests have better coverage than those, and they weren't useful anymore. llvm-svn: 188110 | |||||
* | [lit] Move ManyTests examples to lit/examples/many-tests. | Daniel Dunbar | 2013-08-09 | 3 | -1/+18 | |
| | | | | llvm-svn: 188109 | |||||
* | [lit] Drop deprecated aliases for lit and old module names. | Daniel Dunbar | 2013-08-09 | 3 | -14/+0 | |
| | | | | llvm-svn: 188108 | |||||
* | [lit] Update lit's own tests to use lit_config and lit package, as appropriate. | Daniel Dunbar | 2013-08-09 | 11 | -4/+15 | |
| | | | | llvm-svn: 188107 | |||||
* | [lit] Fix typo. | Daniel Dunbar | 2013-08-09 | 1 | -1/+1 | |
| | | | | | | - Noticed by edward-san (IRC). llvm-svn: 188096 | |||||
* | [lit] Rename lit.{TestFormats,Util} to their aliased names {formats,util}. | Daniel Dunbar | 2013-08-09 | 7 | -20/+24 | |
| | | | | | | | - With compatibility hack in lit.__init__, so this hopefully shouldn't break anything. llvm-svn: 188040 | |||||
* | [lit] Inject the lit specific config object as 'lit_config' when loading ↵ | Daniel Dunbar | 2013-08-09 | 1 | -0/+1 | |
| | | | | | | | | | | config files. - Injecting it as 'lit' is gross, since that name should be used to refer to the actual package. For now both are available so it is possibly to cleanup test config files incrementally. llvm-svn: 188039 | |||||
* | [lit] Split TestingConfig.frompath() into separate ctor and load methods. | Daniel Dunbar | 2013-08-09 | 3 | -51/+58 | |
| | | | | llvm-svn: 188038 | |||||
* | [lit] Eliminate mustExist parameter from TestingConfig.frompath(). | Daniel Dunbar | 2013-08-09 | 3 | -37/+34 | |
| | | | | llvm-svn: 188034 | |||||
* | [lit] Only create config copies when a local config file is present. | Daniel Dunbar | 2013-08-09 | 2 | -5/+12 | |
| | | | | llvm-svn: 188033 | |||||
* | [lit] Eliminate parent argument from TestingConfig.frompath(), which is ↵ | Daniel Dunbar | 2013-08-09 | 3 | -6/+12 | |
| | | | | | | effectively unused. llvm-svn: 188032 | |||||
* | [lit] Change --show-{tests,suites} to exit after printing. | Daniel Dunbar | 2013-08-08 | 2 | -11/+9 | |
| | | | | | | - This is a more sensible behavior than printing and also running tests. llvm-svn: 188009 | |||||
* | [lit] Remove --repeat option, which wasn't that useful. | Daniel Dunbar | 2013-08-08 | 3 | -18/+0 | |
| | | | | llvm-svn: 188008 | |||||
* | [lit] Eliminate some nested imports. | Daniel Dunbar | 2013-08-08 | 4 | -13/+8 | |
| | | | | llvm-svn: 188007 | |||||
* | [lit] Remove on_clone member, which is no longer used. | Daniel Dunbar | 2013-08-08 | 1 | -12/+7 | |
| | | | | llvm-svn: 188006 | |||||
* | [lit] Remove unnecessary list copy. | Daniel Dunbar | 2013-08-07 | 1 | -1/+1 | |
| | | | | llvm-svn: 187934 | |||||
* | [lit] Always list individual UNRESOLVED tests. | Daniel Dunbar | 2013-08-07 | 1 | -2/+3 | |
| | | | | llvm-svn: 187933 | |||||
* | [lit] Explicitly convert dict items() result to a list. | Daniel Dunbar | 2013-08-07 | 1 | -1/+1 | |
| | | | | llvm-svn: 187932 | |||||
* | [lit] Make string encoding issues explicit. | Daniel Dunbar | 2013-08-07 | 2 | -1/+6 | |
| | | | | llvm-svn: 187931 |