File tree Expand file tree Collapse file tree 4 files changed +2
-6
lines changed
packages/Python/lldbsuite/test
functionalities/unwind/cortex-m-exception Expand file tree Collapse file tree 4 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -279,9 +279,6 @@ def parseOptionsAndInitTestdirs():
279279 configuration .llvm_tools_dir = args .llvm_tools_dir
280280 configuration .filecheck = shutil .which ("FileCheck" , path = args .llvm_tools_dir )
281281 configuration .yaml2obj = shutil .which ("yaml2obj" , path = args .llvm_tools_dir )
282- configuration .yaml2macho_core = shutil .which (
283- "yaml2macho-core" , path = args .llvm_tools_dir
284- )
285282
286283 if not configuration .get_filecheck_path ():
287284 logging .warning ("No valid FileCheck executable; some tests may fail..." )
@@ -561,6 +558,8 @@ def setupSysPath():
561558 if is_exe (lldbDAPExec ):
562559 os .environ ["LLDBDAP_EXEC" ] = lldbDAPExec
563560
561+ configuration .yaml2macho_core = shutil .which ("yaml2macho-core" , path = lldbDir )
562+
564563 lldbPythonDir = None # The directory that contains 'lldb/__init__.py'
565564
566565 # If our lldb supports the -P option, use it to find the python path:
Original file line number Diff line number Diff line change 88from lldbsuite .test .lldbtest import *
99from lldbsuite .test import lldbutil
1010
11- @skipIf (bugnumber = "rdar://160698191" )
1211class TestCortexMExceptionUnwind (TestBase ):
1312 NO_DEBUG_INFO_TESTCASE = True
1413
Original file line number Diff line number Diff line change 99from lldbsuite .test .lldbtest import *
1010from lldbsuite .test import lldbutil
1111
12- @skipIf (bugnumber = "rdar://160698553" )
1312class TestArmMachoCorefileRegctx (TestBase ):
1413 NO_DEBUG_INFO_TESTCASE = True
1514
Original file line number Diff line number Diff line change 99from lldbsuite .test .lldbtest import *
1010from lldbsuite .test import lldbutil
1111
12- @skipIf (bugnumber = "rdar://160698393" )
1312class TestRV32MachOCorefile (TestBase ):
1413 NO_DEBUG_INFO_TESTCASE = True
1514
You can’t perform that action at this time.
0 commit comments