[Lldb-commits] [lldb] [lldb] Fixed the TestDebuggerAPI test running on a remote target (PR #93829)

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Thu May 30 07:34:39 PDT 2024


https://github.com/slydiman created https://github.com/llvm/llvm-project/pull/93829

Recently we have disabled this test for Windows host and Linux target. Now we faced the same issue #92419 in case of Linux x86_64 host and Linux Aarch64 target.

>From f932af998824b633e91460c6b03d66014ecca799 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Thu, 30 May 2024 18:33:19 +0400
Subject: [PATCH] [lldb] Fixed the TestDebuggerAPI test running on a remote
 target

Recently we have disabled this test for Windows host and Linux target. Now we faced the same issue #92419 in case of Linux x86_64 host and Linux Aarch64 target.
---
 lldb/test/API/python_api/debugger/TestDebuggerAPI.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lldb/test/API/python_api/debugger/TestDebuggerAPI.py b/lldb/test/API/python_api/debugger/TestDebuggerAPI.py
index a007a87ca93e9..646ccce36530d 100644
--- a/lldb/test/API/python_api/debugger/TestDebuggerAPI.py
+++ b/lldb/test/API/python_api/debugger/TestDebuggerAPI.py
@@ -92,7 +92,6 @@ def get_cache_line_size():
         self.assertEqual(get_cache_line_size(), new_cache_line_size)
 
     @expectedFailureAll(
-        hostoslist=["windows"],
         remote=True,
         bugnumber="github.com/llvm/llvm-project/issues/92419",
     )



More information about the lldb-commits mailing list