summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-02-03 00:04:13 +1100
committerDamien George <damien.p.george@gmail.com>2017-02-03 00:04:13 +1100
commit8a39e18f5fc960eb0901b8e219b7026ebe466f3d (patch)
treec9b33adf4a51df76c47c1a408b33e3a8ecb0234e /tests
parent3ed0e5e5d4af1ad2603fa1b87935cf65a27b083e (diff)
downloadmicropython-8a39e18f5fc960eb0901b8e219b7026ebe466f3d.tar.gz
micropython-8a39e18f5fc960eb0901b8e219b7026ebe466f3d.zip
tests/float: Add tests for zero to a negative power.
Diffstat (limited to 'tests')
-rw-r--r--tests/float/complex1.py5
-rw-r--r--tests/float/float1.py5
-rw-r--r--tests/float/int_divzero.py5
3 files changed, 15 insertions, 0 deletions
diff --git a/tests/float/complex1.py b/tests/float/complex1.py
index fed65d5d54..1031111f37 100644
--- a/tests/float/complex1.py
+++ b/tests/float/complex1.py
@@ -28,6 +28,7 @@ print(1j / 2)
print((1j / 2j).real)
print(1j / (1 + 2j))
ans = 0j ** 0; print("%.5g %.5g" % (ans.real, ans.imag))
+ans = 0j ** 1; print("%.5g %.5g" % (ans.real, ans.imag))
ans = 0j ** 0j; print("%.5g %.5g" % (ans.real, ans.imag))
ans = 1j ** 2.5; print("%.5g %.5g" % (ans.real, ans.imag))
ans = 1j ** 2.5j; print("%.5g %.5g" % (ans.real, ans.imag))
@@ -95,6 +96,10 @@ except ZeroDivisionError:
# zero division via power
try:
+ 0j ** -1
+except ZeroDivisionError:
+ print("ZeroDivisionError")
+try:
0j ** 1j
except ZeroDivisionError:
print("ZeroDivisionError")
diff --git a/tests/float/float1.py b/tests/float/float1.py
index 0e115032b6..93f6f014c4 100644
--- a/tests/float/float1.py
+++ b/tests/float/float1.py
@@ -75,6 +75,11 @@ try:
except ZeroDivisionError:
print("ZeroDivisionError")
+try:
+ 0.0 ** -1
+except ZeroDivisionError:
+ print("ZeroDivisionError")
+
# unsupported unary ops
try:
diff --git a/tests/float/int_divzero.py b/tests/float/int_divzero.py
index b037dd8c7b..b311a1dbcf 100644
--- a/tests/float/int_divzero.py
+++ b/tests/float/int_divzero.py
@@ -2,3 +2,8 @@ try:
1 / 0
except ZeroDivisionError:
print("ZeroDivisionError")
+
+try:
+ 0 ** -1
+except ZeroDivisionError:
+ print("ZeroDivisionError")