Skip to content

Commit 1c2d877

Browse files
tests/run_compound.py: graal breaks printing of platform.uname().
1 parent 416915e commit 1c2d877

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/run_compound.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ def main():
8989
log(f'{platform.platform()=}')
9090
log(f'{platform.python_version()=}')
9191
log(f'{platform.system()=}')
92-
log(f'{platform.uname()=}')
92+
if sys.implementation.name != 'graalpy':
93+
log(f'{platform.uname()=}')
9394
log(f'{sys.executable=}')
9495
log(f'{sys.version=}')
9596
log(f'{sys.version_info=}')

0 commit comments

Comments
 (0)