[Lldb-commits] [lldb] 2e70da2 - [lldb] Enable arm64 target for entry values test

Felipe de Azevedo Piovezan via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 3 06:52:36 PST 2023


Author: Felipe de Azevedo Piovezan
Date: 2023-02-03T09:52:20-05:00
New Revision: 2e70da2e431a4979af9742553172d48d0b453e29

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

LOG: [lldb] Enable arm64 target for entry values test

This test is supposed to work in arm64.

Differential Revision: https://reviews.llvm.org/D143265

Added: 
    

Modified: 
    lldb/test/API/functionalities/param_entry_vals/basic_entry_values/TestBasicEntryValues.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/TestBasicEntryValues.py b/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/TestBasicEntryValues.py
index f4ae1fc015569..0293cee49e804 100644
--- a/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/TestBasicEntryValues.py
+++ b/lldb/test/API/functionalities/param_entry_vals/basic_entry_values/TestBasicEntryValues.py
@@ -2,7 +2,7 @@
 from lldbsuite.test.decorators import *
 from lldbsuite.test import lldbplatformutil
 
-supported_archs = ["x86_64", "aarch64"]
+supported_archs = ["x86_64", "aarch64", "arm64", "arm64e"]
 decorators = [skipIf(archs=no_match(supported_archs)),
          skipIf(compiler="clang", compiler_version=['<', '11.0']),
          skipUnlessHasCallSiteInfo,


        


More information about the lldb-commits mailing list