Commit:    28e264db2a9040b71da60bc20529231255eac651
Author:    Anatol Belski <a...@php.net>         Tue, 11 Jun 2013 08:25:38 +0200
Parents:   8acf9a4fe6d4af175c8330004a67c2aa3cb4b0df
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=28e264db2a9040b71da60bc20529231255eac651

Log:
added closing ?>

Changed paths:
  M  ext/date/tests/bug53437_var3.phpt
  M  ext/date/tests/bug53437_var5.phpt


Diff:
diff --git a/ext/date/tests/bug53437_var3.phpt 
b/ext/date/tests/bug53437_var3.phpt
index 537462e..cd5d913 100644
--- a/ext/date/tests/bug53437_var3.phpt
+++ b/ext/date/tests/bug53437_var3.phpt
@@ -1,10 +1,7 @@
 --TEST--
 Bug #53437 DateInterval unserialize bad data, 32 bit
 --SKIPIF--
-<?php
-       if (PHP_INT_SIZE != 4) {
-               die('skip 32 bit only');
-       }
+<?php if (PHP_INT_SIZE != 4) { die('skip 32 bit only'); } ?>
 --FILE--
 <?php
 $s = 
'O:12:"DateInterval":15:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1:"i";s:1:"8";s:1:"s";s:1:"0";s:7:"weekday";i:10;s:16:"weekday_behavior";i:10;s:17:"first_last_day_of";i:0;s:6:"invert";i:0;s:4:"days";s:4:"aoeu";s:12:"special_type";i:0;s:14:"special_amount";s:21:"234523452345234532455";s:21:"have_weekday_relative";i:21474836489;s:21:"have_special_relative";s:3:"bla";}';
diff --git a/ext/date/tests/bug53437_var5.phpt 
b/ext/date/tests/bug53437_var5.phpt
index 61a7f55..d8ddef7 100644
--- a/ext/date/tests/bug53437_var5.phpt
+++ b/ext/date/tests/bug53437_var5.phpt
@@ -1,10 +1,7 @@
 --TEST--
 Bug #53437 DateInterval unserialize bad data, 64 bit
 --SKIPIF--
-<?php
-       if (PHP_INT_SIZE != 8) {
-               die('skip true 64 bit only');
-       }
+<?php if (PHP_INT_SIZE != 8) { die('skip true 64 bit only'); } ?>
 --FILE--
 <?php
 $s = 
'O:12:"DateInterval":15:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1:"i";s:1:"8";s:1:"s";s:1:"0";s:7:"weekday";i:10;s:16:"weekday_behavior";i:10;s:17:"first_last_day_of";i:0;s:6:"invert";i:0;s:4:"days";s:4:"aoeu";s:12:"special_type";i:0;s:14:"special_amount";s:21:"234523452345234532455";s:21:"have_weekday_relative";i:21474836489;s:21:"have_special_relative";s:3:"bla";}';


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to