[Lldb-commits] [lldb] 9f052f3 - [lldb] Require x86 target for NativePDB test

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 18 05:31:21 PDT 2022


Author: David Spickett
Date: 2022-03-18T12:31:03Z
New Revision: 9f052f3dd2d8b59dde6278aa58c6e4477c2fdef6

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

LOG: [lldb] Require x86 target for NativePDB test

This test would fail if you only build for example,
just the AArch64 backend, due to the x86 triple.

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/NativePDB/local-variables-registers.s

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/NativePDB/local-variables-registers.s b/lldb/test/Shell/SymbolFile/NativePDB/local-variables-registers.s
index e2b5da4a4c17d..35dda0a3c1c64 100644
--- a/lldb/test/Shell/SymbolFile/NativePDB/local-variables-registers.s
+++ b/lldb/test/Shell/SymbolFile/NativePDB/local-variables-registers.s
@@ -1,5 +1,5 @@
 # clang-format off
-# REQUIRES: lld
+# REQUIRES: lld, x86
 
 # RUN: llvm-mc -triple=x86_64-windows-msvc --filetype=obj %s > %t.obj
 # RUN: lld-link /debug:full /nodefaultlib /entry:main %t.obj /out:%t.exe /base:0x140000000


        


More information about the lldb-commits mailing list