| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
This is the conclusion of an effort to get LLDB's Python code
structured into a bona-fide Python package. This has a number
of benefits, but most notably the ability to more easily share
Python code between different but related pieces of LLDB's Python
infrastructure (for example, `scripts` can now share code with
`test`).
llvm-svn: 251532
|
|
|
|
| |
llvm-svn: 251444
|
|
|
|
| |
llvm-svn: 251329
|
|
|
|
|
|
|
|
|
| |
Python3 has no analogue to sys.maxint since ints in Python 3 have
arbitrary size. However, the distinction was not actually important
in any of these cases, and in a few cases using maxint was already
a bug to begin with.
llvm-svn: 251306
|
|
|
|
| |
llvm-svn: 251305
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Apparently there were tons of instances I missed last time, I
guess I accidentally ran 2to3 non-recursively. This should be
every occurrence of a print statement fixed to use a print function
as well as from __future__ import print_function being added to
every file.
After this patch print statements will stop working everywhere in
the test suite, and the print function should be used instead.
llvm-svn: 251121
|
|
|
|
|
|
| |
--results-file=/dev/stdout" works again.
llvm-svn: 250952
|
|
|
|
| |
llvm-svn: 250580
|
|
|
|
| |
llvm-svn: 250478
|
|
|
|
|
|
| |
out so they are more aligned.
llvm-svn: 250353
|
|
|
|
| |
llvm-svn: 250248
|
|
|
|
|
|
| |
use yet.
llvm-svn: 249600
|
|
|
|
|
|
| |
Also added the elapsed time display to the status bar.
llvm-svn: 248450
|
|
|
|
|
|
| |
Typing the shortcut key ('.' for 'pass', 'e' for 'error', etc) will toggle the visibility of the test in the Results window.
llvm-svn: 248290
|
|
|
|
|
|
|
|
|
|
| |
and lldbcurses at the module level.
Added key press handling and a first responder system and the ability for windows that can be first responders to be selected and have key presses routed to the first resonder, delegates and also travel up the parent chain.
Remove the temp file that was being created.
llvm-svn: 248232
|
|
curses is implemented. Try it out with:
./dotest.py --results-formatter=test_results.Curses --results-file=/dev/stdout
llvm-svn: 248072
|