forked from OSchip/llvm-project
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
This commit is contained in:
parent
42a07e8545
commit
06b89fe646
|
@ -13,7 +13,7 @@ class BreakpointCommandTestCase(TestBase):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def classCleanup(cls):
|
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")
|
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||||
def test_with_dsym(self):
|
def test_with_dsym(self):
|
||||||
|
|
Loading…
Reference in New Issue