[Lldb-commits] [lldb] r196308 - Remove print statement when successfully setting the platform's working directory.
Greg Clayton
gclayton at apple.com
Tue Dec 3 11:22:46 PST 2013
Author: gclayton
Date: Tue Dec 3 13:22:45 2013
New Revision: 196308
URL: http://llvm.org/viewvc/llvm-project?rev=196308&view=rev
Log:
Remove print statement when successfully setting the platform's working directory.
Modified:
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=196308&r1=196307&r2=196308&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Tue Dec 3 13:22:45 2013
@@ -1692,7 +1692,6 @@ class TestBase(Base):
self.mydir)
error = lldb.remote_platform.MakeDirectory(remote_test_dir, 0700)
if error.Success():
- print "successfully made remote directory '%s'" % (remote_test_dir)
lldb.remote_platform.SetWorkingDirectory(remote_test_dir)
else:
print "error: making remote directory '%s': %s" % (remote_test_dir, error)
More information about the lldb-commits
mailing list