Test return type and value for expected input acosh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN")
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("acosh")) {
+ die("SKIP acosh - not supported\n");
+}
+?>
--INI--
precision = 14
--FILE--
Test acosh function : 64bit long tests
--SKIPIF--
<?php
-if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
+if (PHP_INT_SIZE != 8) die("SKIP this test is for 64bit platform only");
+if (!function_exists("acosh")) die("SKIP acosh - not supported\n");
?>
--FILE--
<?php
Test wrong number of arguments for acosh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN" )
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("acosh")) {
+ die("SKIP acosh - not supported\n");
+}
+?>
--FILE--
<?php
/*
Test variations in usage of acosh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN" )
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("acosh")) {
+ die("SKIP acosh - not supported\n");
+}
+?>
--INI--
precision = 10
--FILE--
Test return type and value for expected input asinh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN")
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("asinh")) {
+ die("SKIP asinh - not supported\n");
+}
+?>
--INI--
precision = 14
--FILE--
--SKIPIF--
<?php
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
+if (!function_exists("asinh")) die("SKIP asinh - not supported\n");
?>
--FILE--
<?php
Test wrong number of arguments for asinh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN" )
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("asinh")) {
+ die("SKIP asinh - not supported\n");
+}
+?>
--FILE--
<?php
/*
Test variations in usage of asinh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN" )
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("asinh")) {
+ die("SKIP asinh - not supported\n");
+}
+?>
--INI--
precision = 10
--FILE--
Test return type and value for expected input atanh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN" )
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("atanh")) {
+ die("SKIP atanh - not supported\n");
+}
+?>
--INI--
precision = 14
--FILE--
--SKIPIF--
<?php
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
+if (!function_exists("atanh")) die("SKIP atanh - not supported\n");
?>
--FILE--
<?php
Test wrong number of arguments for atanh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN" )
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("atanh")) {
+ die("SKIP atanh - not supported\n");
+}
+?>
--FILE--
<?php
/*
Test variations in usage of atanh()
--SKIPIF--
<?php
-if(substr(PHP_OS, 0, 3) == "WIN" )
- die ("skip - function not supported on Windows");
-?>
+if (!function_exists("atanh")) {
+ die("SKIP atanh - not supported\n");
+}
+?>
--INI--
precision = 10
--FILE--