summaryrefslogtreecommitdiffstats
path: root/lldb/test/progress.py
Commit message (Collapse)AuthorAgeFilesLines
* Preparation for turning lldbsuite into a Python package.Zachary Turner2015-10-271-154/+0
| | | | | | | | | | | The idea behind this patch is to expose the meat of LLDB's Python infrastructure (test suite, scripts, etc) as a single package. This makes reusability and code sharing among sub-packages easy. Differential Revision: http://reviews.llvm.org/D14131 llvm-svn: 251460
* Rename `lldb_shared` to `use_lldb_suite`.Zachary Turner2015-10-271-1/+1
| | | | llvm-svn: 251444
* Make uses of unicode literals portable.Zachary Turner2015-10-231-12/+15
| | | | | | | | | Six provides six.u() which resolves to either u"" or "" depending on Python version, and and six.unichr() which resolves to either unichr() or chr() depending on Python version. Use these functions anywhere where we were relying on u"" or unichr(). llvm-svn: 251139
* Python3 - Wrap more statements in calls to list()Zachary Turner2015-10-231-1/+1
| | | | llvm-svn: 251129
* Convert print statements to print function calls.Zachary Turner2015-10-191-1/+3
| | | | | | | | | This patch was generating by running `2to3` on the files in the lldb/test directory. This patch should be NFC, but it does introduce the `from __future__ import print_function` line, which will break future uses of the print statement. llvm-svn: 250763
* The new progress bar mode was losing us information compared to the old dots ↵Enrico Granata2013-02-091-0/+40
| | | | | | | | | | mode in that we would have no way of knowing about test failures (short of peeking into the test result directory.. and you're not supposed to peek!) Added a new line of information that reports the count of tests that pass, fail or have other things happen to them. Again no flag to have the dots back. If you care, let us know! llvm-svn: 174784
* <rdar://problem/13176279>Enrico Granata2013-02-081-0/+109
The LLDB test suite now shows a progress bar instead of dots when not in verbose mode If you crave the dots, make your Terminal window smaller than 10 columns :-) (or ask for a flag to have the dots come back on demand) llvm-svn: 174777
OpenPOWER on IntegriCloud