[Lldb-commits] [lldb] a701dc8 - Revert "Fixed typos in TestLldbGdbServer.py"
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Sat Feb 5 15:03:47 PST 2022
Author: Adrian Prantl
Date: 2022-02-05T14:54:37-08:00
New Revision: a701dc8edae6886da0f5b3de793a23d6afeb0a01
URL: https://github.com/llvm/llvm-project/commit/a701dc8edae6886da0f5b3de793a23d6afeb0a01
DIFF: https://github.com/llvm/llvm-project/commit/a701dc8edae6886da0f5b3de793a23d6afeb0a01.diff
LOG: Revert "Fixed typos in TestLldbGdbServer.py"
This reverts commit cf93a085754e221f73a2877c946dcb2beb6039d7.
Added:
Modified:
lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
index 12f3b5886d381..c6ecaf88b1be8 100644
--- a/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
+++ b/lldb/test/API/tools/lldb-server/TestLldbGdbServer.py
@@ -1044,7 +1044,7 @@ def test_qSupported_returns_known_stub_features(self):
self.assertTrue(len(supported_dict) > 0)
@skipIf(compiler="clang", compiler_version=['<', '14.0'])
- @skipIf(dwarf_version=['<','3'])
+ @skipIf(dwarf_version=['<',3'4'])
def test_qSupported_auvx(self):
expected = ('+' if lldbplatformutil.getPlatform()
in ["freebsd", "linux", "netbsd"] else '-')
@@ -1350,7 +1350,7 @@ def test_P_and_p_thread_suffix_work(self):
@skipIfWindows # No pty support to test any inferior output
@add_test_categories(["llgs"])
@skipIf(compiler="clang", compiler_version=['<', '14.0'])
- @skipIf(dwarf_version=['<', '3'])
+ @skipIf(dwarf_version=['3', '4'])
def test_launch_via_A(self):
self.build()
exe_path = self.getBuildArtifact("a.out")
@@ -1377,7 +1377,7 @@ def test_launch_via_A(self):
@skipIfWindows # No pty support to test any inferior output
@add_test_categories(["llgs"])
@skipIf(compiler="clang", compiler_version=['<', '14.0'])
- @skipIf(dwarf_version=['<','3'])
+ @skipIf(dwarf_version=['<',3'4'])
def test_launch_via_vRun(self):
self.build()
exe_path = self.getBuildArtifact("a.out")
@@ -1421,7 +1421,7 @@ def test_launch_via_vRun_no_args(self):
@skipIfWindows # No pty support to test any inferior output
@add_test_categories(["llgs"])
@skipIf(compiler="clang", compiler_version=['<', '14.0'])
- @skipIf(dwarf_version=['<', '3'])
+ @skipIf(dwarf_version=['3', '4'])
def test_QEnvironment(self):
self.build()
exe_path = self.getBuildArtifact("a.out")
More information about the lldb-commits
mailing list