Skip to content

Commit 0ecf682

Browse files
authored
fix llvm version parsed from json (rust-lang#952)
1 parent 64dbe2c commit 0ecf682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enzyme/test/upload-results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def extract_results(json):
2929
githash = get_git_revision_hash()
3030
time = get_git_revision_date().isoformat()
3131
arch = platform.platform()
32-
llvm = ".".join(str(json["__version__"]))
32+
llvm = ".".join(map(lambda x: str(x), json["__version__"]))
3333

3434
for test in json["tests"]:
3535
if test["code"] == "PASS":

0 commit comments

Comments
 (0)