Skip to content

Commit 36359ed

Browse files
committed
[lldb][Type Completion][test] Un-XFAIL tests that pass with most recent redecl-completion fixes
These were fixed in swiftlang#8659. (cherry picked from commit 582bd6d)
1 parent 28b7a3e commit 36359ed

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

lldb/test/API/functionalities/limit-debug-info/TestLimitDebugInfo.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ def _check_incomplete_frame_variable_output(self):
183183
for command, expect_items in command_expect_pairs:
184184
self.expect(command, substrs=expect_items)
185185

186-
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
187186
@skipIf(bugnumber="pr46284", debug_info="gmodules")
188187
@skipIfWindows # Clang emits type info even with -flimit-debug-info
189188
# Requires DW_CC_pass_by_* attributes from Clang 7 to correctly call
@@ -224,7 +223,6 @@ def test_one_and_two_debug(self):
224223

225224
self._check_incomplete_frame_variable_output()
226225

227-
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
228226
@skipIf(bugnumber="pr46284", debug_info="gmodules")
229227
@skipIfWindows # Clang emits type info even with -flimit-debug-info
230228
# Requires DW_CC_pass_by_* attributes from Clang 7 to correctly call
@@ -293,7 +291,6 @@ def test_two_debug(self):
293291

294292
self._check_incomplete_frame_variable_output()
295293

296-
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
297294
@skipIf(bugnumber="pr46284", debug_info="gmodules")
298295
@skipIfWindows # Clang emits type info even with -flimit-debug-info
299296
# Requires DW_CC_pass_by_* attributes from Clang 7 to correctly call

lldb/test/API/lang/c/shared_lib/TestSharedLib.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,10 @@ def common_test_expr(self, preload_symbols):
2626

2727
self.expect("expression GetMeASubFoo(my_foo_ptr)", startstr="(sub_foo *) $")
2828

29-
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
3029
def test_expr(self):
3130
"""Test that types work when defined in a shared library and forward-declared in the main executable"""
3231
self.common_test_expr(True)
3332

34-
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
3533
def test_expr_no_preload(self):
3634
"""Test that types work when defined in a shared library and forward-declared in the main executable, but with preloading disabled"""
3735
self.common_test_expr(False)

lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99

1010
class SharedLibStrippedTestCase(TestBase):
11-
@expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'true'))
1211
@expectedFailureAll(oslist=["windows"])
1312
def test_expr(self):
1413
"""Test that types work when defined in a shared library and forwa/d-declared in the main executable"""

0 commit comments

Comments
 (0)