From 5fff4b75ca0d72759f7ded4c96fc5493d917a3a9 Mon Sep 17 00:00:00 2001 From: Alex Langford Date: Mon, 8 Aug 2022 11:01:13 -0700 Subject: [PATCH] [lldb] Pass TestExternCSymbols.py on Windows This test previously was expected to fail on windows. As of my previous patch (1d2a62afaf7561e331e2f3daf3937d14225b21bf) this test now passes on windows consistently. This patch adjusts the expectations of the test accordingly. --- lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py b/lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py index b1b7e17..c8308c1 100644 --- a/lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py +++ b/lldb/test/API/lang/cpp/extern_c/TestExternCSymbols.py @@ -1,4 +1,4 @@ from lldbsuite.test import lldbinline from lldbsuite.test import decorators -lldbinline.MakeInlineTest(__file__, globals(), lldbinline.expectedFailureAll(oslist=["windows"])) +lldbinline.MakeInlineTest(__file__, globals()) -- 2.7.4