cvs: ZendEngine2 /tests bug37667.phpt bug39304.phpt globals_001.phpt globals_002.phpt globals_003.phpt globals_004.phpt offset_array.phpt php-src/tests/classes array_access_001.phpt array_access_002.phpt

[email protected] ("Felipe Pena")
Newsgroups php.zend-engine.cvs
Message-ID <cvsfelipe1204981301@cvsserver>
felipe		Sat Mar  8 13:01:41 2008 UTC

  Modified files:              
    /php-src/tests/classes	array_access_001.phpt array_access_002.phpt 
    /ZendEngine2/tests	bug37667.phpt bug39304.phpt globals_001.phpt 
                      	globals_002.phpt globals_003.phpt 
                      	globals_004.phpt offset_array.phpt 
  Log:
  Fix tests (removed space on error message "Undefined index: ...")
  
  
http://cvs.php.net/viewvc.cgi/php-src/tests/classes/array_access_001.phpt?r1=1.5&r2=1.6&diff_format=u
Index: php-src/tests/classes/array_access_001.phpt
diff -u php-src/tests/classes/array_access_001.phpt:1.5 php-src/tests/classes/array_access_001.phpt:1.6
--- php-src/tests/classes/array_access_001.phpt:1.5	Mon Aug 15 14:37:54 2005
+++ php-src/tests/classes/array_access_001.phpt	Sat Mar  8 13:01:40 2008
@@ -135,11 +135,11 @@
 int(4)
 object::offsetGet(5th)
 
-Notice: Undefined index:  5th in %sarray_access_001.php on line %d
+Notice: Undefined index: 5th in %sarray_access_001.php on line %d
 NULL
 object::offsetGet(6)
 
-Notice: Undefined offset:  6 in %sarray_access_001.php on line %d
+Notice: Undefined offset: 6 in %sarray_access_001.php on line %d
 NULL
 ===offsetSet===
 WRITE 1
@@ -248,11 +248,11 @@
 int(4)
 object::offsetGet(5th)
 
-Notice: Undefined index:  5th in %sarray_access_001.php on line %d
+Notice: Undefined index: 5th in %sarray_access_001.php on line %d
 NULL
 object::offsetGet(6)
 
-Notice: Undefined offset:  6 in %sarray_access_001.php on line %d
+Notice: Undefined offset: 6 in %sarray_access_001.php on line %d
 NULL
 ===offsetSet===
 WRITE 1
http://cvs.php.net/viewvc.cgi/php-src/tests/classes/array_access_002.phpt?r1=1.5&r2=1.6&diff_format=u
Index: php-src/tests/classes/array_access_002.phpt
diff -u php-src/tests/classes/array_access_002.phpt:1.5 php-src/tests/classes/array_access_002.phpt:1.6
--- php-src/tests/classes/array_access_002.phpt:1.5	Mon Aug 15 14:37:54 2005
+++ php-src/tests/classes/array_access_002.phpt	Sat Mar  8 13:01:40 2008
@@ -135,11 +135,11 @@
 int(4)
 object::offsetGet(5th)
 
-Notice: Undefined index:  5th in %sarray_access_002.php on line %d
+Notice: Undefined index: 5th in %sarray_access_002.php on line %d
 NULL
 object::offsetGet(6)
 
-Notice: Undefined offset:  6 in %sarray_access_002.php on line %d
+Notice: Undefined offset: 6 in %sarray_access_002.php on line %d
 NULL
 ===offsetSet===
 WRITE 1
@@ -248,11 +248,11 @@
 int(4)
 object::offsetGet(5th)
 
-Notice: Undefined index:  5th in %sarray_access_002.php on line %d
+Notice: Undefined index: 5th in %sarray_access_002.php on line %d
 NULL
 object::offsetGet(6)
 
-Notice: Undefined offset:  6 in %sarray_access_002.php on line %d
+Notice: Undefined offset: 6 in %sarray_access_002.php on line %d
 NULL
 ===offsetSet===
 WRITE 1
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/bug37667.phpt?r1=1.3&r2=1.4&diff_format=u
Index: ZendEngine2/tests/bug37667.phpt
diff -u ZendEngine2/tests/bug37667.phpt:1.3 ZendEngine2/tests/bug37667.phpt:1.4
--- ZendEngine2/tests/bug37667.phpt:1.3	Fri Jul 21 10:32:41 2006
+++ ZendEngine2/tests/bug37667.phpt	Sat Mar  8 13:01:41 2008
@@ -30,7 +30,7 @@
 --EXPECTF--
 string(3) "bar"
 
-Notice: Undefined offset:  2 in %sbug37667.php on line 16
+Notice: Undefined offset: 2 in %sbug37667.php on line 16
 NULL
 object(Test)#%d (1) {
   ["property":protected]=>
@@ -54,7 +54,7 @@
 --UEXPECTF--
 unicode(3) "bar"
 
-Notice: Undefined offset:  2 in %sbug37667.php on line %d
+Notice: Undefined offset: 2 in %sbug37667.php on line %d
 NULL
 object(Test)#%d (1) {
   [u"property":protected]=>
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/bug39304.phpt?r1=1.2&r2=1.3&diff_format=u
Index: ZendEngine2/tests/bug39304.phpt
diff -u ZendEngine2/tests/bug39304.phpt:1.2 ZendEngine2/tests/bug39304.phpt:1.3
--- ZendEngine2/tests/bug39304.phpt:1.2	Mon Oct 30 11:04:47 2006
+++ ZendEngine2/tests/bug39304.phpt	Sat Mar  8 13:01:41 2008
@@ -6,4 +6,6 @@
   list($a, $b) = $s[0];
 ?>
 --EXPECTF--
+Notice: Uninitialized string offset: 0 in %sbug39304.php on line 3
+
 Fatal error: Cannot use string offset as an array in %sbug39304.php on line 3
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/globals_001.phpt?r1=1.1&r2=1.2&diff_format=u
Index: ZendEngine2/tests/globals_001.phpt
diff -u ZendEngine2/tests/globals_001.phpt:1.1 ZendEngine2/tests/globals_001.phpt:1.2
--- ZendEngine2/tests/globals_001.phpt:1.1	Fri Feb  2 11:10:42 2007
+++ ZendEngine2/tests/globals_001.phpt	Sat Mar  8 13:01:41 2008
@@ -26,7 +26,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
@@ -39,7 +39,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/globals_002.phpt?r1=1.1&r2=1.2&diff_format=u
Index: ZendEngine2/tests/globals_002.phpt
diff -u ZendEngine2/tests/globals_002.phpt:1.1 ZendEngine2/tests/globals_002.phpt:1.2
--- ZendEngine2/tests/globals_002.phpt:1.1	Fri Feb  2 11:10:42 2007
+++ ZendEngine2/tests/globals_002.phpt	Sat Mar  8 13:01:41 2008
@@ -29,7 +29,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
@@ -42,7 +42,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/globals_003.phpt?r1=1.1&r2=1.2&diff_format=u
Index: ZendEngine2/tests/globals_003.phpt
diff -u ZendEngine2/tests/globals_003.phpt:1.1 ZendEngine2/tests/globals_003.phpt:1.2
--- ZendEngine2/tests/globals_003.phpt:1.1	Fri Feb  2 11:10:42 2007
+++ ZendEngine2/tests/globals_003.phpt	Sat Mar  8 13:01:41 2008
@@ -35,7 +35,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
@@ -48,7 +48,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/globals_004.phpt?r1=1.1&r2=1.2&diff_format=u
Index: ZendEngine2/tests/globals_004.phpt
diff -u ZendEngine2/tests/globals_004.phpt:1.1 ZendEngine2/tests/globals_004.phpt:1.2
--- ZendEngine2/tests/globals_004.phpt:1.1	Fri Feb  2 11:10:42 2007
+++ ZendEngine2/tests/globals_004.phpt	Sat Mar  8 13:01:41 2008
@@ -20,7 +20,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
@@ -33,7 +33,7 @@
 int(%d)
 string(%d) "%s"
 
-Notice: Undefined index:  PHP_SELF in %s on line %d
+Notice: Undefined index: PHP_SELF in %s on line %d
 NULL
 
 Notice: Undefined variable: _SERVER in %s on line %d
http://cvs.php.net/viewvc.cgi/ZendEngine2/tests/offset_array.phpt?r1=1.1&r2=1.2&diff_format=u
Index: ZendEngine2/tests/offset_array.phpt
diff -u ZendEngine2/tests/offset_array.phpt:1.1 ZendEngine2/tests/offset_array.phpt:1.2
--- ZendEngine2/tests/offset_array.phpt:1.1	Thu Jun  1 11:57:39 2006
+++ ZendEngine2/tests/offset_array.phpt	Sat Mar  8 13:01:41 2008
@@ -28,10 +28,10 @@
 int(2)
 int(1)
 
-Notice: Undefined index:   in %s on line %d
+Notice: Undefined index:  in %s on line %d
 NULL
 
-Notice: Undefined index:  run away in %s on line %d
+Notice: Undefined index: run away in %s on line %d
 NULL
 int(2)
 int(1)
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.