summaryrefslogtreecommitdiff
path: root/tests/lang/operators/bitwiseShiftLeft_basiclong_64bit.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/operators/bitwiseShiftLeft_basiclong_64bit.phpt')
-rw-r--r--tests/lang/operators/bitwiseShiftLeft_basiclong_64bit.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lang/operators/bitwiseShiftLeft_basiclong_64bit.phpt b/tests/lang/operators/bitwiseShiftLeft_basiclong_64bit.phpt
index 8978cee6b7..250813fca3 100644
--- a/tests/lang/operators/bitwiseShiftLeft_basiclong_64bit.phpt
+++ b/tests/lang/operators/bitwiseShiftLeft_basiclong_64bit.phpt
@@ -24,8 +24,8 @@ error_reporting(E_ERROR);
foreach ($longVals as $longVal) {
foreach($otherVals as $otherVal) {
- echo "--- testing: $longVal << $otherVal ---\n";
- try {
+ echo "--- testing: $longVal << $otherVal ---\n";
+ try {
var_dump($longVal<<$otherVal);
} catch (ArithmeticError $e) {
echo "Exception: " . $e->getMessage() . "\n";
@@ -35,8 +35,8 @@ foreach ($longVals as $longVal) {
foreach ($otherVals as $otherVal) {
foreach($longVals as $longVal) {
- echo "--- testing: $otherVal << $longVal ---\n";
- try {
+ echo "--- testing: $otherVal << $longVal ---\n";
+ try {
var_dump($otherVal<<$longVal);
} catch (ArithmeticError $e) {
echo "Exception: " . $e->getMessage() . "\n";