diff options
author | Pavel Labath <labath@google.com> | 2018-03-15 16:52:37 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-03-15 16:52:37 +0000 |
commit | 28d3e1ac41e957c4cc03d7cade8ff39de65f0682 (patch) | |
tree | 71bd61d5dccc81105d023b0c5b4e0c6809fb24e2 /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | 6aca33534ba6a2a1f2d9b8992e9b70e7c8d57e27 (diff) | |
download | bcm5719-llvm-28d3e1ac41e957c4cc03d7cade8ff39de65f0682.tar.gz bcm5719-llvm-28d3e1ac41e957c4cc03d7cade8ff39de65f0682.zip |
[dotest] remove confirm_directory_exclusivity remnants
llvm-svn: 327643
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 3d10418a8ca..318c2a4cc42 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -70,15 +70,6 @@ from . import test_categories from lldbsuite.support import encoded_file from lldbsuite.support import funcutils -# dosep.py starts lots and lots of dotest instances -# This option helps you find if two (or more) dotest instances are using the same -# directory at the same time -# Enable it to cause test failures and stderr messages if dotest instances try to run in -# the same directory simultaneously -# it is disabled by default because it litters the test directories with -# ".dirlock" files -debug_confirm_directory_exclusivity = False - # See also dotest.parseOptionsAndInitTestdirs(), where the environment variables # LLDB_COMMAND_TRACE and LLDB_DO_CLEANUP are set from '-t' and '-r dir' # options. @@ -586,10 +577,6 @@ class Base(unittest2.TestCase): exc_type, exc_value, exc_tb = sys.exc_info() traceback.print_exception(exc_type, exc_value, exc_tb) - if debug_confirm_directory_exclusivity: - cls.dir_lock.release() - del cls.dir_lock - # Restore old working directory. if traceAlways: print("Restore dir to:", cls.oldcwd, file=sys.stderr) |