diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2016-05-05 16:01:15 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2016-05-05 16:01:15 +0000 |
commit | bcab6484ebaa974a7b88259c8bf8f3ec268d3f1f (patch) | |
tree | 2bbfdd77b3533f5f1515e7d27ae6059af39f8895 /lldb/packages/Python/lldbsuite | |
parent | 09ba254f108c15a04e4c1e79e62540786d404a10 (diff) | |
download | bcm5719-llvm-bcab6484ebaa974a7b88259c8bf8f3ec268d3f1f.tar.gz bcm5719-llvm-bcab6484ebaa974a7b88259c8bf8f3ec268d3f1f.zip |
fix argument usage for '-#' command line option
This was broken in the grand configuration change. Now
using -# works again.
llvm-svn: 268638
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index ef75ad91187..5f2e95fd084 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -1084,7 +1084,7 @@ def run_suite(): # mark __ignore_singleton__ flag as True so the signleton pattern is # not enforced. test_result.LLDBTestResult.__ignore_singleton__ = True - for i in range(count): + for i in range(configuration.count): result = unittest2.TextTestRunner(stream=sys.stderr, verbosity=v, |