From c98cc39e500dc1ece3d1eadff9e09b1a2b076fcc Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 23 Jan 2019 00:13:47 +0000 Subject: 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 --- lldb/packages/Python/lldbsuite/test/lldbtest.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test') 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: -- cgit v1.2.3