[Lldb-commits] [lldb] 4456afc - Revert "[lldb] fix lldb-server test failures on windows (#164843)"

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 23 13:56:23 PDT 2025


Author: Adrian Prantl
Date: 2025-10-23T13:56:14-07:00
New Revision: 4456afcf0bcb29d3ba5670dbc583ee5ea00a01f3

URL: https://github.com/llvm/llvm-project/commit/4456afcf0bcb29d3ba5670dbc583ee5ea00a01f3
DIFF: https://github.com/llvm/llvm-project/commit/4456afcf0bcb29d3ba5670dbc583ee5ea00a01f3.diff

LOG: Revert "[lldb] fix lldb-server test failures on windows (#164843)"

This reverts commit 930b36cfbbc873fe6c329b95e1c56c6ae1ea1d94.

Reverting because it depends on 5fc40a5f2bedaf6ca3f024aa2a91c5f4ce187061.

Added: 
    

Modified: 
    lldb/test/Shell/lldb-server/TestPlatformErrorMessages.test
    lldb/test/Shell/lldb-server/TestPlatformHelp.test

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/lldb-server/TestPlatformErrorMessages.test b/lldb/test/Shell/lldb-server/TestPlatformErrorMessages.test
index 7d3b37aa5fc39..d8af31ebaca52 100644
--- a/lldb/test/Shell/lldb-server/TestPlatformErrorMessages.test
+++ b/lldb/test/Shell/lldb-server/TestPlatformErrorMessages.test
@@ -22,4 +22,4 @@ LOGFILE_MISSING: error: --log-file: missing argument
 RUN: %platformserver --log-channels 2>&1 | FileCheck --check-prefixes=LOGCHANNELS_MISSING,ALL %s
 LOGCHANNELS_MISSING: error: --log-channels: missing argument
 
-ALL: Use 'lldb-server{{(\.exe)?}} {{p|platform}} --help' for a complete list of options.
+ALL: Use 'lldb-server {{p|platform}} --help' for a complete list of options.

diff  --git a/lldb/test/Shell/lldb-server/TestPlatformHelp.test b/lldb/test/Shell/lldb-server/TestPlatformHelp.test
index c5ced8a318100..119bbcaaabf14 100644
--- a/lldb/test/Shell/lldb-server/TestPlatformHelp.test
+++ b/lldb/test/Shell/lldb-server/TestPlatformHelp.test
@@ -5,9 +5,9 @@ RUN: %lldb-server p -h 2>&1 | FileCheck %s
 RUN: %lldb-server platform --help 2>&1 | FileCheck %s
 RUN: %lldb-server platform -h 2>&1 | FileCheck %s
 
-CHECK: OVERVIEW: lldb-server{{(\.exe)?}} platform
+CHECK: OVERVIEW: lldb-server platform
 
-CHECK: USAGE: lldb-server{{(\.exe)?}} {{p|platform}} [options] --listen <[host]:port> {{\[}}[--] program args...]
+CHECK: USAGE: lldb-server {{p|platform}} [options] --listen <[host]:port> {{\[}}[--] program args...]
 
 CHECK: CONNECTION OPTIONS:
 CHECK: --gdbserver-port <port>
@@ -33,8 +33,8 @@ CHECK: Acts as a platform server for remote debugging
 
 CHECK: EXAMPLES
 CHECK: # Listen on port 1234, exit after first connection
-CHECK: lldb-server{{(\.exe)?}} platform --listen tcp://0.0.0.0:1234
+CHECK: lldb-server platform --listen tcp://0.0.0.0:1234
 CHECK: # Listen on port 5555, accept multiple connections
-CHECK: lldb-server{{(\.exe)?}} platform --server --listen tcp://localhost:5555
+CHECK: lldb-server platform --server --listen tcp://localhost:5555
 CHECK: # Listen on Unix domain socket
-CHECK: lldb-server{{(\.exe)?}} platform --listen unix:///tmp/lldb-server.sock
+CHECK: lldb-server platform --listen unix:///tmp/lldb-server.sock


        


More information about the lldb-commits mailing list