diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-10-08 00:50:36 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-08 00:50:36 +0000 |
commit | 06b89fe6467693afa3d386b18724f4dc432e6317 (patch) | |
tree | 66c69c61050bb36892c6fa92fc17fb001575e2bb | |
parent | 42a07e8545cd61c39de05db7b343113a55337695 (diff) | |
download | bcm5719-llvm-06b89fe6467693afa3d386b18724f4dc432e6317.tar.gz bcm5719-llvm-06b89fe6467693afa3d386b18724f4dc432e6317.zip |
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.
llvm-svn: 116025
-rw-r--r-- | lldb/test/breakpoint_command/TestBreakpointCommand.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/breakpoint_command/TestBreakpointCommand.py b/lldb/test/breakpoint_command/TestBreakpointCommand.py index 5597ee94caf..d9e2ec67a80 100644 --- a/lldb/test/breakpoint_command/TestBreakpointCommand.py +++ b/lldb/test/breakpoint_command/TestBreakpointCommand.py @@ -13,7 +13,7 @@ class BreakpointCommandTestCase(TestBase): @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): |