Author: Shubham Sandeep Rastogi Date: 2022-01-27T14:12:24-08:00 New Revision: cf93a085754e221f73a2877c946dcb2beb6039d7
URL: https://github.com/llvm/llvm-project/commit/cf93a085754e221f73a2877c946dcb2beb6039d7 DIFF: https://github.com/llvm/llvm-project/commit/cf93a085754e221f73a2877c946dcb2beb6039d7.diff LOG: Fixed typos in TestLldbGdbServer.py Fixed more typos 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 c6ecaf88b1be..12f3b5886d38 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'4']) + @skipIf(dwarf_version=['<','3']) 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', '4']) + @skipIf(dwarf_version=['<', '3']) 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'4']) + @skipIf(dwarf_version=['<','3']) 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', '4']) + @skipIf(dwarf_version=['<', '3']) def test_QEnvironment(self): self.build() exe_path = self.getBuildArtifact("a.out") _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits