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():
279
279
configuration .llvm_tools_dir = args .llvm_tools_dir
280
280
configuration .filecheck = shutil .which ("FileCheck" , path = args .llvm_tools_dir )
281
281
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
- )
285
282
286
283
if not configuration .get_filecheck_path ():
287
284
logging .warning ("No valid FileCheck executable; some tests may fail..." )
@@ -561,6 +558,8 @@ def setupSysPath():
561
558
if is_exe (lldbDAPExec ):
562
559
os .environ ["LLDBDAP_EXEC" ] = lldbDAPExec
563
560
561
+ configuration .yaml2macho_core = shutil .which ("yaml2macho-core" , path = lldbDir )
562
+
564
563
lldbPythonDir = None # The directory that contains 'lldb/__init__.py'
565
564
566
565
# If our lldb supports the -P option, use it to find the python path:
Original file line number Diff line number Diff line change 8
8
from lldbsuite .test .lldbtest import *
9
9
from lldbsuite .test import lldbutil
10
10
11
- @skipIf (bugnumber = "rdar://160698191" )
12
11
class TestCortexMExceptionUnwind (TestBase ):
13
12
NO_DEBUG_INFO_TESTCASE = True
14
13
Original file line number Diff line number Diff line change 9
9
from lldbsuite .test .lldbtest import *
10
10
from lldbsuite .test import lldbutil
11
11
12
- @skipIf (bugnumber = "rdar://160698553" )
13
12
class TestArmMachoCorefileRegctx (TestBase ):
14
13
NO_DEBUG_INFO_TESTCASE = True
15
14
Original file line number Diff line number Diff line change 9
9
from lldbsuite .test .lldbtest import *
10
10
from lldbsuite .test import lldbutil
11
11
12
- @skipIf (bugnumber = "rdar://160698393" )
13
12
class TestRV32MachOCorefile (TestBase ):
14
13
NO_DEBUG_INFO_TESTCASE = True
15
14
You can’t perform that action at this time.
0 commit comments