summaryrefslogtreecommitdiff
path: root/tests/php/phpt/variables/012-value-casting-operators-double.phpt
diff options
context:
space:
mode:
authorvalmat <ufabiz@gmail.com>2014-04-14 16:46:18 +0600
committervalmat <ufabiz@gmail.com>2014-04-14 16:46:18 +0600
commit2d2d03270beebdddd0f6be972a7c80b397ebe896 (patch)
tree34508a6775d2caffdb97b10ebf6b774a71db7172 /tests/php/phpt/variables/012-value-casting-operators-double.phpt
parent6b5506dfe7b0f5ac9ce923c1d9cdd2ebc4c72a7c (diff)
fixed for 32-bit architecture OS
Diffstat (limited to 'tests/php/phpt/variables/012-value-casting-operators-double.phpt')
-rw-r--r--tests/php/phpt/variables/012-value-casting-operators-double.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/php/phpt/variables/012-value-casting-operators-double.phpt b/tests/php/phpt/variables/012-value-casting-operators-double.phpt
index 32086ef..babd476 100644
--- a/tests/php/phpt/variables/012-value-casting-operators-double.phpt
+++ b/tests/php/phpt/variables/012-value-casting-operators-double.phpt
@@ -21,9 +21,9 @@ function out($v) {
//echo PHP_EOL;
}
-out(5555555555555555);
+out(5555555555555);
out("999999999999999");
-out(999999999999999);
+out(99999999999999);
out(5);
out(-99999999);
out("18");
@@ -42,12 +42,12 @@ out(0x1A); // hexadecimal number (equivalent to 26 decimal)
--EXPECT--
-Test 5555555555555555:
-5555555555555555
+Test 5555555555555:
+5555555555555
Test '999999999999999':
999999999999999
-Test 999999999999999:
-999999999999999
+Test 99999999999999:
+99999999999999
Test 5:
5
Test -99999999: