summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2014-07-20 13:33:42 +0200
committerAbigail <abigail@abigail.be>2014-07-20 13:33:42 +0200
commit0e22af76ea3956d87f75200a0474dae9e3c48a79 (patch)
tree56b29cebe91e985134bdf014f507ad8801b1b41b
parent0f824be90600ec3504034b0173fa6b67f3a4d4e8 (diff)
downloadperl-0e22af76ea3956d87f75200a0474dae9e3c48a79.tar.gz
Adjust 31e62fa1f35be3aceacc7fa62ce72d7131299a9av5.21.2
It seems that 'sqrt' is not always called as a system call, in particular, when compiling with -Dusemorebits
-rw-r--r--t/porting/libperl.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/porting/libperl.t b/t/porting/libperl.t
index 18c180112a..8f1dc05b2f 100644
--- a/t/porting/libperl.t
+++ b/t/porting/libperl.t
@@ -416,10 +416,10 @@ ok(keys %{$symbols{undef}}, "has undefined symbols");
# memchr, memcmp, memcpy should be used all over the place.
#
-# chmod, socket, getenv, sigaction, sqrt, time are system/library
+# chmod, socket, getenv, sigaction, time are system/library
# calls that should each see at least one use.
my @good = qw(memchr memcmp memcpy
- chmod socket getenv sigaction sqrt time);
+ chmod socket getenv sigaction time);
if ($Config{usedl}) {
push @good, 'dlopen';
}