History log of /external/llvm/utils/lit/lit/main.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
8f4aab8c2fe095ce1286fc1bd0bdd9157ed00398 07-Aug-2013 NAKAMURA Takumi <geek4civic@gmail.com> Lit: Resurrect --no-execute dropped in r187852.

For now, builders in bb.pgr.jp are using it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187886 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
b35a1733607b07f36c3617932b67debb375a15c5 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Use modern absolute/relative import style.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187860 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
2e10ff28f24a26829ae9a43fc49b91eb974489ef 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Avoid use of iterator .next() method.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187858 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
0d038e3e8852bf4fde949136ca9c2815f64febd0 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Use .write() methods instead of print statement.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187857 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
4f2469c40c9020af2cf39ec0af518b6caba0a588 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Use dual-compatible print() syntax where possible.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187856 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
0b714f768605c9f5d3c8caf2b5708e617b82f86f 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Remove use of deprecated parameter tuple unpacking.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187855 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
91142b1125aabd86d2307f340abc53351c4a7d94 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Drop --no-execute, which isn't generally useful.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187852 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
3915c080ccdd872893412c0a8eaa29f2cec05761 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Add a --show-tests option.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187850 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
cd594283f7b5ab7031a0da25c26f4dd81e491433 07-Aug-2013 Daniel Dunbar <daniel@zuster.org> [lit] Remove dead ignoreStdError argument.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187849 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
ba460864440b4dd192bd2809f913babe0cf07031 19-Jul-2013 Nico Rieck <nico.rieck@gmail.com> lit: Support cancellation on Windows

The current machinery using KeyboardInterrupt for canceling doesn't work
with multiple threads on Windows as it just cancels the currently run tests
but the runners continue.

We install a handler for Ctrl-C which stops the provider from providing any
more tests to the runners. Together with aborting all currently running
tests, this brings lit to a halt.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186695 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
e94bd36dc715bc05aff35e04528dbc409a87d97c 11-Apr-2013 Daniel Dunbar <daniel@zuster.org> lit: Shorten a metavar to make --help look nicer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179248 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
47896090f30fe9f37a776b46e285b1d6d8b1ad9b 31-Jan-2013 Daniel Dunbar <daniel@zuster.org> [lit] Move unittest adaptor code into discovery module.
- Also, add a test for it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174019 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
3d4a973ee4a2a134dd3df34a64a0a16256a5306c 31-Jan-2013 Daniel Dunbar <daniel@zuster.org> [lit] Move discovery code into its own module.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174014 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
41169f2a0e341f48d71acc0997ec954ee70289fd 18-Jan-2013 Dmitri Gribenko <gribozavr@gmail.com> Remove support for Tcl test format since nobody uses it


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172794 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
c797f2e9c7121c7a8c859ad2a8ede8f8639e4ff5 17-Aug-2012 NAKAMURA Takumi <geek4civic@gmail.com> lit: Show actually created count of threads. The incorrect threads count is printed if the number of tests are less than the number of default threads.

Thanks to Vinson Lee, reported in PR13620.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162078 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
61318736ee089055a6a029da2eaf6dfcb54cf7a4 03-Mar-2012 Duncan Sands <baldrick@free.fr> Honour --config-prefix also for lit.local.cfg.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151977 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
7434c9a053789c04d73bb58df41ad6fdf6a84e6a 18-Jan-2012 Daniel Dunbar <daniel@zuster.org> [lit] Add a --filter option which is useful when dealing with virtual test
paths.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148362 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
7c12837916e647a9225fe2433f826588f2f28726 30-Aug-2011 Andrew Trick <atrick@apple.com> Lit option for ignoring stderr output.

This is useful for testing a build a temporarily hand instrumented
build.
Patch by arrowdodger!


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138804 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py
ff2dcd3ce94d2a982950e6c61a0eb1ae39c885e0 15-Sep-2010 Daniel Dunbar <daniel@zuster.org> lit: Rename main lit module to main.py, lit/lit/lit.py was a bit too, err,
alliterate.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113922 91177308-0d34-0410-b5e6-96231b3b80d8
/external/llvm/utils/lit/lit/main.py