From a32e84133ad2b7f8101497909edbc484c35dd3cd Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Thu, 1 Mar 2018 03:03:38 +0000 Subject: [test] Restore cleanup behavior in TestQuoting.py Before the change to compile tests out-of-tree, the cleanup classmethod in TestQuoting.py would remove a temp file. After the change it threw an exception due to a malformed call to getBuildArtifact(). Bring back the old behavior. llvm-svn: 326414 --- lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/packages/Python/lldbsuite/test/settings') diff --git a/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py b/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py index 0bf688a42ed..9265b47962b 100644 --- a/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py +++ b/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py @@ -22,7 +22,7 @@ class SettingsCommandTestCase(TestBase): @classmethod def classCleanup(cls): """Cleanup the test byproducts.""" - cls.RemoveTempFile(self.getBuildArtifact("stdout.txt")) + cls.RemoveTempFile("stdout.txt") @no_debug_info_test def test_no_quote(self): -- cgit v1.2.3