[Lldb-commits] [PATCH] D10895: Fix dosep.py on windows after r240946
Pavel Labath
labath at google.com
Mon Jul 6 08:58:13 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL241459: Fix dosep.py on windows after r240946 (authored by labath).
Changed prior to commit:
http://reviews.llvm.org/D10895?vs=28942&id=29093#toc
Repository:
rL LLVM
http://reviews.llvm.org/D10895
Files:
lldb/trunk/test/dosep.py
Index: lldb/trunk/test/dosep.py
===================================================================
--- lldb/trunk/test/dosep.py
+++ lldb/trunk/test/dosep.py
@@ -67,12 +67,14 @@
output_lock = None
test_counter = None
total_tests = None
+dotest_options = None
-def setup_lock_and_counter(lock, counter, total):
- global output_lock, test_counter, total_tests
+def setup_global_variables(lock, counter, total, options):
+ global output_lock, test_counter, total_tests, dotest_options
output_lock = lock
test_counter = counter
total_tests = total
+ dotest_options = options
def update_status(name = None, command = None, output = None):
global output_lock, test_counter, total_tests
@@ -152,7 +154,7 @@
timeout_name = os.path.basename(os.path.splitext(name)[0]).upper()
- timeout = os.getenv("LLDB_%s_TIMEOUT" % timeout_name) or default_timeout
+ timeout = os.getenv("LLDB_%s_TIMEOUT" % timeout_name) or getDefaultTimeout(dotest_options.lldb_platform_name)
exit_status, pass_count, fail_count = call_with_timeout(command, timeout, name)
@@ -202,8 +204,8 @@
# calling each individually.
if num_threads > 1:
pool = multiprocessing.Pool(num_threads,
- initializer = setup_lock_and_counter,
- initargs = (output_lock, test_counter, total_tests))
+ initializer = setup_global_variables,
+ initargs = (output_lock, test_counter, total_tests, dotest_options))
test_results = pool.map(process_dir_worker, test_work_items)
else:
test_results = []
@@ -336,6 +338,7 @@
dotest_argv = shlex.split(dotest_option_string, posix=is_posix) if dotest_option_string else []
parser = dotest_args.create_parser()
+ global dotest_options
dotest_options = dotest_args.parse_args(parser, dotest_argv)
if not dotest_options.s:
@@ -372,9 +375,6 @@
if num_threads < 1:
num_threads = 1
- global default_timeout
- default_timeout = getDefaultTimeout(dotest_options.lldb_platform_name)
-
system_info = " ".join(platform.uname())
(timed_out, failed, passed, all_fails, all_passes) = walk_and_invoke(test_directory, test_subdir, dotest_argv, num_threads)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D10895.29093.patch
Type: text/x-patch
Size: 2243 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150706/6d6c0804/attachment.bin>
More information about the lldb-commits
mailing list