summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-04-14 15:16:08 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-04-14 15:16:08 +0000
commita1021d57870f2cf967a704182b47a5defa79a0f1 (patch)
tree40326f056c4af75bc3048b77b4c033182716fe73 /t
parent72241cc917b12736c9ada9c5661d4698c7069fba (diff)
downloadperl-a1021d57870f2cf967a704182b47a5defa79a0f1.tar.gz
Revert change #33676, likely to break atan(-0,0) on some platforms
p4raw-link: @33676 on //depot/perl: 9d6bff35783dc768c5d72663e6e2d31769c5da91 p4raw-id: //depot/perl@33678
Diffstat (limited to 't')
-rwxr-xr-xt/op/exp.t6
1 files changed, 1 insertions, 5 deletions
diff --git a/t/op/exp.t b/t/op/exp.t
index c49a34bd6c..9bc44b49b4 100755
--- a/t/op/exp.t
+++ b/t/op/exp.t
@@ -6,7 +6,7 @@ BEGIN {
require './test.pl';
}
-plan tests => 17;
+plan tests => 16;
# compile time evaluation
@@ -57,7 +57,3 @@ cmp_ok(round(cos(-1 * $pi_2)), '==', 0.0);
# atan2() tests were removed due to differing results from calls to
# atan2() on various OS's and architectures. See perlport.pod for
# more information.
-
-# Just test that atan2(0,0) is undef, because that's implemented
-# from within perl.
-ok(!defined(atan2(0,0)), 'atan2(0,0) returns undef');