[lldbsuite] The test inside TestOverloadedFunctions.py has the wrong class name
authorStella Stamenova <stilis@microsoft.com>
Thu, 12 Jul 2018 23:02:33 +0000 (23:02 +0000)
committerStella Stamenova <stilis@microsoft.com>
Thu, 12 Jul 2018 23:02:33 +0000 (23:02 +0000)
Summary: It looks like the test file was copied from TestCPPStaticMethods.py because they have the same name. This means that the two tests will try to write to the same output files and will either overwrite each other's output or occasionally cause failures because they can't both access the same file.

Reviewers: asmith, zturner

Reviewed By: zturner

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D49261

llvm-svn: 336960

lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py

index 996396d..7f68eb8 100644 (file)
@@ -8,7 +8,7 @@ from lldbsuite.test.lldbtest import *
 from lldbsuite.test import lldbutil
 
 
-class CPPStaticMethodsTestCase(TestBase):
+class OverloadedFunctionsTestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)