diff options
author | Vedant Kumar <vsk@apple.com> | 2018-03-01 03:03:38 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2018-03-01 03:03:38 +0000 |
commit | a32e84133ad2b7f8101497909edbc484c35dd3cd (patch) | |
tree | 4fd0a56498332b06c350703d727d4d5a97a47de6 /lldb/packages/Python/lldbsuite/test | |
parent | 10dc93c23288c0062c22c6f18f81d40265bd5648 (diff) | |
download | bcm5719-llvm-a32e84133ad2b7f8101497909edbc484c35dd3cd.tar.gz bcm5719-llvm-a32e84133ad2b7f8101497909edbc484c35dd3cd.zip |
[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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |