[Lldb-commits] [lldb] [LLDB] Require target-x86/x86_64 for MSVC C mangling test (PR #162335)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 7 10:53:32 PDT 2025
https://github.com/Nerixyz created https://github.com/llvm/llvm-project/pull/162335
Fixes the test failure from https://github.com/llvm/llvm-project/pull/161678#issuecomment-3377949862.
>From c4c76b3ce4ce7c410ce24f37db90948a578e6142 Mon Sep 17 00:00:00 2001
From: Nerixyz <nerixdev at outlook.de>
Date: Tue, 7 Oct 2025 19:52:44 +0200
Subject: [PATCH] [LLDB] Require target-x86/x86_64 for MSVC C mangling test
---
lldb/test/Shell/SymbolFile/NativePDB/c-calling-conventions.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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