micropython: add micropython component
This commit is contained in:
15
components/language/micropython/tests/float/math_fun_bool.py
Normal file
15
components/language/micropython/tests/float/math_fun_bool.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# Test the bool functions from math
|
||||
|
||||
try:
|
||||
from math import isfinite, isnan, isinf
|
||||
except ImportError:
|
||||
print("SKIP")
|
||||
raise SystemExit
|
||||
|
||||
test_values = [1, 0, -1, 1.0, 0.0, -1.0, float("NaN"), float("Inf"), -float("NaN"), -float("Inf")]
|
||||
|
||||
functions = [isfinite, isnan, isinf]
|
||||
|
||||
for val in test_values:
|
||||
for f in functions:
|
||||
print(f(val))
|
Reference in New Issue
Block a user