Skip to content

Commit 5ade8b7

Browse files
jeplerdpgeorge
authored andcommitted
tests/extmod: Add platform_basic.py for basic coverage test of platform.
Signed-off-by: Jeff Epler <[email protected]>
1 parent 5901b8d commit 5ade8b7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/extmod/platform_basic.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
try:
2+
import platform
3+
except ImportError:
4+
print("SKIP")
5+
raise SystemExit
6+
7+
print(type(platform.python_compiler()))
8+
print(type(platform.libc_ver()))

0 commit comments

Comments
 (0)