Skip to content
Snippets Groups Projects
Commit ebde855a authored by pfdietz's avatar pfdietz
Browse files

Fixed more test problems

parent 6c088032
No related branches found
No related tags found
No related merge requests found
......@@ -21,21 +21,23 @@
(deftest atan.3
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
unless (eql (atan zero 0) zero)
unless (eql (atan zero 1) zero)
collect type)
nil)
(deftest atan.4
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
unless (eql (atan 0 zero) zero)
for one = (coerce 1 type)
unless (eql (atan 0 one) zero)
collect type)
nil)
(deftest atan.5
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
unless (eql (atan zero zero) zero)
for one = (coerce 1 type)
unless (eql (atan zero one) zero)
collect type)
nil)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment