[Lldb-commits] [lldb] [lldb] Fixed TestEchoCommands.test running on a remote target (PR #94127)

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Sat Jun 1 15:16:48 PDT 2024


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

EchoCommandsQuiet.out failed in case of a remote target because the platform selection and connection messages.

>From f27a61721ed817a4be73c78485b842c2dcb93e18 Mon Sep 17 00:00:00 2001
From: Dmitry Vassiliev <dvassiliev at accesssoftek.com>
Date: Sun, 2 Jun 2024 02:15:02 +0400
Subject: [PATCH] [lldb] Fixed TestEchoCommands.test running on a remote target

EchoCommandsQuiet.out failed in case of a remote target because the platform selection and connection messages.
---
 lldb/test/Shell/Settings/TestEchoCommands.test | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lldb/test/Shell/Settings/TestEchoCommands.test b/lldb/test/Shell/Settings/TestEchoCommands.test
index 234b9742bfa2a..ce78f91e1cbd4 100644
--- a/lldb/test/Shell/Settings/TestEchoCommands.test
+++ b/lldb/test/Shell/Settings/TestEchoCommands.test
@@ -2,6 +2,8 @@
 # RUN: %lldb -x -b -o 'settings set interpreter.echo-comment-commands false' -s %S/Inputs/EchoCommandsTest.in | FileCheck %S/Inputs/EchoCommandsNoComments.out
 # RUN: %lldb -x -b -o 'settings set interpreter.echo-commands false'         -s %S/Inputs/EchoCommandsTest.in | FileCheck %S/Inputs/EchoCommandsNone.out
 
+XFAIL: remote{{.*}}
+
 RUN: echo start >%t.file
 RUN: %lldb -x -b --source-quietly -s %S/Inputs/EchoCommandsTest.in >>%t.file
 RUN: echo done >>%t.file



More information about the lldb-commits mailing list