summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArd Biesheuvel <abies@php.net>2003-09-13 19:49:50 +0000
committerArd Biesheuvel <abies@php.net>2003-09-13 19:49:50 +0000
commiteba90f7f9941ba8155aeb0de854de4403fd4fb65 (patch)
treed47661497731fadd810fe45a219281443063ef94 /tests
parentf940b0fe3c4c172641230f6efb56333e1b3b2cf5 (diff)
downloadphp-git-eba90f7f9941ba8155aeb0de854de4403fd4fb65.tar.gz
WS
Diffstat (limited to 'tests')
-rw-r--r--tests/lang/bug24054.phpt8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/lang/bug24054.phpt b/tests/lang/bug24054.phpt
index e5035beee5..fc51c83d77 100644
--- a/tests/lang/bug24054.phpt
+++ b/tests/lang/bug24054.phpt
@@ -1,7 +1,7 @@
--TEST--
Bug #24054 (Assignment operator *= broken)
--FILE--
-<?php
+<?php // $Id$
define('LONG_MAX', is_int(5000000000)? 9223372036854775807 : 0x7FFFFFFF);
define('LONG_MIN', -LONG_MAX - 1);
@@ -12,15 +12,13 @@ printf("%d,%d,%d,%d\n",is_int(LONG_MIN ),is_int(LONG_MAX ),
$j = $i * 1001;
$i *= 1001;
-
$tests = <<<TESTS
-
$i === $j
TESTS;
- include(dirname(__FILE__) . '/../quicktester.inc');
-
+include(dirname(__FILE__) . '/../quicktester.inc');
+
--EXPECT--
1,1,0,0
OK