diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-01-23 00:13:47 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-01-23 00:13:47 +0000 |
commit | c98cc39e500dc1ece3d1eadff9e09b1a2b076fcc (patch) | |
tree | 3ae41930a369d6a2a10ec2fef3511e0da8a2370a /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | bcd08c16bb7678d1ddf8d511188b310cabd74bc0 (diff) | |
download | bcm5719-llvm-c98cc39e500dc1ece3d1eadff9e09b1a2b076fcc.tar.gz bcm5719-llvm-c98cc39e500dc1ece3d1eadff9e09b1a2b076fcc.zip |
Revert "[dotest] Add logging to investigate CI issue."
We figured out the issue so the logging is no longer necessary. It turns
out we were using a session format that was not unique for inline tests.
llvm-svn: 351902
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index bf3223709ae..161e8c61349 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -1228,12 +1228,7 @@ class Base(unittest2.TestCase): remove_file(dst) lldbutil.mkdir_p(os.path.dirname(dst)) - try: - os.rename(src, dst) - except OSError: - print("src (exists={}): {}".format(os.path.exists(src), src)) - print("dst (exists={}): {}".format(os.path.exists(dst), dst)) - raise + os.rename(src, dst) else: # success! (and we don't want log files) delete log files for log_file in log_files_for_this_test: |