]> granicus.if.org Git - php/commitdiff
WS
authorArd Biesheuvel <abies@php.net>
Sat, 13 Sep 2003 19:49:50 +0000 (19:49 +0000)
committerArd Biesheuvel <abies@php.net>
Sat, 13 Sep 2003 19:49:50 +0000 (19:49 +0000)
tests/lang/bug24054.phpt

index e5035beee5540f302f3410662be1e972fa011496..fc51c83d77bdaf58a4f48865f35f0b52fd746f77 100644 (file)
@@ -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