[Lldb-commits] [lldb] c16d252 - [LLDB] Require target-x86/x86_64 for MSVC C mangling test (#162335)

via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 7 11:05:34 PDT 2025


Author: nerix
Date: 2025-10-07T20:05:29+02:00
New Revision: c16d25282e7169cb8a19d9fa385cf7220dd65ac5

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

LOG: [LLDB] Require target-x86/x86_64 for MSVC C mangling test (#162335)

Fixes the test failure from
https://github.com/llvm/llvm-project/pull/161678#issuecomment-3377949862.

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/NativePDB/c-calling-conventions.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/NativePDB/c-calling-conventions.cpp b/lldb/test/Shell/SymbolFile/NativePDB/c-calling-conventions.cpp
index 569eaace1baef..d1d0bb08dfec4 100644
--- a/lldb/test/Shell/SymbolFile/NativePDB/c-calling-conventions.cpp
+++ b/lldb/test/Shell/SymbolFile/NativePDB/c-calling-conventions.cpp
@@ -1,5 +1,5 @@
 // clang-format off
-// REQUIRES: lld, x86
+// REQUIRES: lld, (target-x86 || target-x86_64)
 
 // RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t-32.exe %s
 // RUN: lldb-test symbols %t-32.exe | FileCheck --check-prefixes CHECK-32,CHECK-BOTH %s


        


More information about the lldb-commits mailing list