[Lldb-commits] [lldb] 810d09f - [lldb][test] Disable image lookup colour test on Windows

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 8 05:38:02 PST 2023


Author: David Spickett
Date: 2023-12-08T13:36:41Z
New Revision: 810d09faf89af53025205c540ef9980e2286e687

URL: https://github.com/llvm/llvm-project/commit/810d09faf89af53025205c540ef9980e2286e687
DIFF: https://github.com/llvm/llvm-project/commit/810d09faf89af53025205c540ef9980e2286e687.diff

LOG: [lldb][test] Disable image lookup colour test on Windows

On Linux `main.c` shows up in the symbol search but this is not the
case on Windows according to:
https://lab.llvm.org/buildbot/#/builders/219/builds/7422/steps/6/logs/stdio

It's possible we could make this test work there once function
search highlighting is implemented.

Added: 
    

Modified: 
    lldb/test/Shell/Commands/command-image-lookup-color.test

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/Commands/command-image-lookup-color.test b/lldb/test/Shell/Commands/command-image-lookup-color.test
index 2b4452483acdf..4a3169f269f2b 100644
--- a/lldb/test/Shell/Commands/command-image-lookup-color.test
+++ b/lldb/test/Shell/Commands/command-image-lookup-color.test
@@ -1,5 +1,8 @@
 # RUN: %clang_host -g %S/Inputs/main.c -o %t
 
+# The file main.c is does not show up in search on Windows.
+# UNSUPPORTED: system-windows
+
 # Checking simple regex search
 
 # RUN: %lldb %t -b -o 'settings set use-color true' -o 'image lookup -r -s ma' | FileCheck %s --check-prefix CHECK1


        


More information about the lldb-commits mailing list