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