Skip to content

Commit

Permalink
[lldbsuite] The test inside TestOverloadedFunctions.py has the wrong …
Browse files Browse the repository at this point in the history
…class name

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
  • Loading branch information
sstamenova committed Jul 12, 2018
1 parent 3250899 commit 7b68fa7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from lldbsuite.test import lldbutil


class CPPStaticMethodsTestCase(TestBase):
class OverloadedFunctionsTestCase(TestBase):

mydir = TestBase.compute_mydir(__file__)

Expand Down

0 comments on commit 7b68fa7

Please sign in to comment.