[Lldb-commits] [lldb] [lldb] Add support for NoneType to decorator skipIfBuildType (PR #145342)

2025-06-23 Thread Ivan Tadeu Ferreira Antunes Filho via lldb-commits
https://github.com/itf closed https://github.com/llvm/llvm-project/pull/145342 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Add support for NoneType to decorator skipIfBuildType (PR #145342)

2025-06-23 Thread Ivan Tadeu Ferreira Antunes Filho via lldb-commits
https://github.com/itf updated https://github.com/llvm/llvm-project/pull/145342 >From a79352fe1eac306b6065b1cba165b176ddc1376f Mon Sep 17 00:00:00 2001 From: Ivan Tadeu Ferreira Antunes Filho Date: Mon, 23 Jun 2025 11:30:09 -0400 Subject: [PATCH 1/3] [lldb] Add support to NoneType to decorator

[Lldb-commits] [lldb] [lldb-dap][test] Refactor runInTerminal Tests. (PR #144954)

2025-06-23 Thread Ivan Tadeu Ferreira Antunes Filho via lldb-commits
@@ -2,23 +2,35 @@ Test lldb-dap RestartRequest. """ -import os -from lldbsuite.test.decorators import * -from lldbsuite.test.lldbtest import line_number +from typing import Dict, Any, List + import lldbdap_testcase +from lldbsuite.test.decorators import skipIfWindows, skipIf,

[Lldb-commits] [lldb] [lldb] Add support for NoneType to decorator skipIfBuildType (PR #145342)

2025-06-23 Thread Ivan Tadeu Ferreira Antunes Filho via lldb-commits
https://github.com/itf updated https://github.com/llvm/llvm-project/pull/145342 >From a79352fe1eac306b6065b1cba165b176ddc1376f Mon Sep 17 00:00:00 2001 From: Ivan Tadeu Ferreira Antunes Filho Date: Mon, 23 Jun 2025 11:30:09 -0400 Subject: [PATCH 1/2] [lldb] Add support to NoneType to decorator

[Lldb-commits] [lldb] [lldb] Add support for NoneType to decorator skipIfBuildType (PR #145342)

2025-06-23 Thread Ivan Tadeu Ferreira Antunes Filho via lldb-commits
https://github.com/itf created https://github.com/llvm/llvm-project/pull/145342 Currently if cmake_build_type is None we error with `AttributeError: 'NoneType' object has no attribute 'lower'` if the decorator skipIfBuildType is used. This fixes the issue by first checking that cmake_build_type

[Lldb-commits] [lldb] [lldb][test] Free buffer to fix memory leak on test (PR #137979)

2025-04-30 Thread Ivan Tadeu Ferreira Antunes Filho via lldb-commits
https://github.com/itf closed https://github.com/llvm/llvm-project/pull/137979 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Free buffer to fix memory leak on test (PR #137979)

2025-04-30 Thread Ivan Tadeu Ferreira Antunes Filho via lldb-commits
https://github.com/itf created https://github.com/llvm/llvm-project/pull/137979 None >From 2949d9ab36b214137d9a60dc2a6eb88f9ba4a737 Mon Sep 17 00:00:00 2001 From: Ivan Tadeu Ferreira Antunes Filho Date: Wed, 30 Apr 2025 11:26:16 -0400 Subject: [PATCH] Free bugger and fix memory leak on test --