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 74800be commit c284241Copy full SHA for c284241
scripts/gen_coverage.py
@@ -114,18 +114,11 @@ def find_objects():
114
def is_py_ext(fn):
115
return re.match(regexp1, fn) or re.match(regexp2, fn)
116
117
- for root, _, files in os.walk("_skbuild"):
+ for root, _, files in os.walk("dpctl"):
118
for file in files:
119
if not file.endswith(".so"):
120
continue
121
- if os.path.join("libsyclinterface", "tests") in root:
122
- continue
123
- if any(
124
- match in root
125
- for match in [
126
- "libsyclinterface",
127
- ]
128
- ) or is_py_ext(file):
+ if is_py_ext(file) or file.find("DPCTLSyclInterface") != -1:
129
objects.extend(["-object", os.path.join(root, file)])
130
print("Using objects: ", objects)
131
return objects
0 commit comments