[Lldb-commits] [lldb] r116025 - /lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
Johnny Chen
johnny.chen at apple.com
Thu Oct 7 17:50:36 PDT 2010
Author: johnny
Date: Thu Oct 7 19:50:36 2010
New Revision: 116025
URL: http://llvm.org/viewvc/llvm-project?rev=116025&view=rev
Log:
Pass '-f' option to rm command so that it won't report an error if the file to
be removed does not exist for any reason.
Modified:
lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
Modified: lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py?rev=116025&r1=116024&r2=116025&view=diff
==============================================================================
--- lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py (original)
+++ lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py Thu Oct 7 19:50:36 2010
@@ -13,7 +13,7 @@
@classmethod
def classCleanup(cls):
- system(["/bin/sh", "-c", "rm output.txt"])
+ system(["/bin/sh", "-c", "rm -f output.txt"])
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):
More information about the lldb-commits
mailing list