Skip to content

Commit a79369b

Browse files
committed
debug lcov issue
1 parent 3acbde5 commit a79369b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1284,10 +1284,10 @@ def python_coverage(args):
12841284
graalvm_dir = os.path.join(os.path.dirname(os.path.dirname(executable)), "jre", "languages", "python")
12851285
for f in os.listdir(SUITE.dir):
12861286
if f.endswith(".lcov"):
1287-
with open(f, "r") as lcovfile:
1288-
contents = lcovfile.read()
1289-
with open(f, "w") as lcovfile:
1290-
lcovfile.write(contents.replace(graalvm_dir, local_dir))
1287+
# with open(f, "r") as lcovfile:
1288+
# contents = lcovfile.read()
1289+
# with open(f, "w") as lcovfile:
1290+
# lcovfile.write(contents.replace(graalvm_dir, local_dir))
12911291
cmdargs += ["-a", f]
12921292

12931293
mx.run(cmdargs)

0 commit comments

Comments
 (0)