[Lldb-commits] [lldb] 69f7758 - Revert "[lldb] Fix command-expr-diagnostics.test for Windows (#112109)"

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 15 18:09:38 PDT 2024


Author: Muhammad Omair Javaid
Date: 2024-10-16T06:08:13+05:00
New Revision: 69f7758ddba662b63667507f2c472c008909dd7e

URL: https://github.com/llvm/llvm-project/commit/69f7758ddba662b63667507f2c472c008909dd7e
DIFF: https://github.com/llvm/llvm-project/commit/69f7758ddba662b63667507f2c472c008909dd7e.diff

LOG: Revert "[lldb] Fix command-expr-diagnostics.test for Windows (#112109)"

This reverts commit eca3206d29e7ce97dd6336deaa3da96be37f8277.

This broke LLDB Linux bot for no apparent reason. I ll post a more
suitable fix later. Disabled command-expr-diagnostics.test on
windows for now.

Added: 
    

Modified: 
    lldb/test/Shell/Commands/command-expr-diagnostics.test

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/Commands/command-expr-diagnostics.test b/lldb/test/Shell/Commands/command-expr-diagnostics.test
index 3dab204ca87d12..72df47bbbdc1ed 100644
--- a/lldb/test/Shell/Commands/command-expr-diagnostics.test
+++ b/lldb/test/Shell/Commands/command-expr-diagnostics.test
@@ -1,3 +1,4 @@
+# XFAIL: system-windows
 # RUN: echo quit | %lldb -o "expression a+b" \
 # RUN:   | FileCheck %s --strict-whitespace --check-prefix=CHECK1
 #            (lldb) expression a+b
@@ -17,7 +18,7 @@
 # CHECK3: {{^                         error: use of undeclared identifier 'a'}}
 
 # RUN: echo "int main(){return 0;}">%t.c
-# RUN: %clang_host %t.c -gdwarf -o %t.exe
+# RUN: %clang_host %t.c -o %t.exe
 # RUN: echo quit | %lldb %t.exe -o "b main" -o r -o \
 # RUN: "expr --top-level -- template<typename T> T FOO(T x) { return x/2;}" -o \
 # RUN: "expression -- FOO(\"\")" 2>&1 | FileCheck %s --check-prefix=CHECK4


        


More information about the lldb-commits mailing list