Index: packages/Python/lldbsuite/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py =================================================================== --- packages/Python/lldbsuite/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py +++ packages/Python/lldbsuite/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py @@ -76,4 +76,4 @@ # Continue and expect to find the output emitted by the firing of our stop hook. child.sendline('continue') - child.expect_exact('(uint32_t) ::g_val = ') + child.expect_exact('(uint32_t) g_val = ') Index: packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py =================================================================== --- packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py +++ packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py @@ -16,7 +16,6 @@ mydir = TestBase.compute_mydir(__file__) - @expectedFailureAll(bugnumber="llvm.org/pr28548", compiler="gcc") def test_breakpoints_func_auto(self): """Test that we can set breakpoints correctly by basename to find all functions whose basename is "func".""" self.build() @@ -36,7 +35,6 @@ name = bp_loc.GetAddress().GetFunction().GetName() self.assertTrue(name in names, "make sure breakpoint locations are correct for 'func' with eFunctionNameTypeAuto") - @expectedFailureAll(bugnumber="llvm.org/pr28548", compiler="gcc") def test_breakpoints_func_full(self): """Test that we can set breakpoints correctly by fullname to find all functions whose fully qualified name is "func" (no namespaces).""" Index: packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py =================================================================== --- packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py +++ packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py @@ -49,7 +49,7 @@ self.runCmd("breakpoint set -n foo") self.runCmd("continue") self.expect("thread backtrace", - substrs = ["`::foo()", "lang=c++"]) + substrs = ["`foo()", "lang=c++"]) # Make sure we can evaluate an expression requiring C++11 # (note: C++11 is enabled by default for C++). self.expect("expr foo != nullptr", Index: source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp =================================================================== --- source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp +++ source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp @@ -26,7 +26,6 @@ { if (m_entries[0].name) { - m_qualified_name.append("::"); m_qualified_name.append(m_entries[0].name); } }