We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 464c365 commit d375592Copy full SHA for d375592
lldb/lit/Driver/TestConvenienceVariables.test
@@ -1,3 +1,4 @@
1
+REQUIRES: python
2
RUN: %build %p/Inputs/hello.cpp -o %t
3
RUN: %lldb %t -s %p/Inputs/convenience.in -o quit | FileCheck %s
4
@@ -19,4 +20,4 @@ CHECK: 8
19
20
CHECK: script lldb.frame.GetLineEntry().GetFileSpec().GetFilename()
21
CHECK: hello.c
22
CHECK: script lldb.frame.GetFunctionName()
-CHECK: main
23
+CHECK: main
lldb/lit/lit.cfg.py
@@ -73,3 +73,6 @@ def calculate_arch_features(arch_string):
73
if os.path.isdir(cachedir):
74
print("Deleting module cache at %s."%cachedir)
75
shutil.rmtree(cachedir)
76
+
77
+if not config.lldb_disable_python:
78
+ config.available_features.add('python')
0 commit comments