commit | 1132152db44c44add40be000ca838db02d778108 | [log] [tgz] |
---|---|---|
author | Zachary Turner <zturner@google.com> | Wed Sep 09 18:25:13 2015 +0000 |
committer | Zachary Turner <zturner@google.com> | Wed Sep 09 18:25:13 2015 +0000 |
tree | 15ffe9ff545dfff3f4335330c2d5024327f553d5 | |
parent | d16550de924e2b728394dcc1141f6291d5a98968 [diff] |
Don't allow duplicate names for tests. We had 2 tests named TestCPPBreakpoints.py. If one of those tests failed, both of them would be reported as failures and contribute to the failure count. There may be other examples of duplicate test names, and we should fix those as we find them. llvm-svn: 247173
diff --git a/lldb/test/lang/cpp/breakpoints/Makefile b/lldb/test/lang/cpp/breakpoint-commands/Makefile similarity index 100% rename from lldb/test/lang/cpp/breakpoints/Makefile rename to lldb/test/lang/cpp/breakpoint-commands/Makefile
diff --git a/lldb/test/lang/cpp/breakpoints/TestCPPBreakpoints.py b/lldb/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py similarity index 98% rename from lldb/test/lang/cpp/breakpoints/TestCPPBreakpoints.py rename to lldb/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py index a856523..e38bd46 100644 --- a/lldb/test/lang/cpp/breakpoints/TestCPPBreakpoints.py +++ b/lldb/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
@@ -7,7 +7,7 @@ import lldb from lldbtest import * -class CPPBreakpointTestCase(TestBase): +class CPPBreakpointCommandsTestCase(TestBase): mydir = TestBase.compute_mydir(__file__)
diff --git a/lldb/test/lang/cpp/breakpoints/nested.cpp b/lldb/test/lang/cpp/breakpoint-commands/nested.cpp similarity index 100% rename from lldb/test/lang/cpp/breakpoints/nested.cpp rename to lldb/test/lang/cpp/breakpoint-commands/nested.cpp