[PHP-CVS] cvs: php-src /ext/oci8/tests lob_029.phpt

2008-08-27 Thread Christopher Jones
sixdThu Aug 28 06:15:56 2008 UTC

  Modified files:  
/php-src/ext/oci8/tests lob_029.phpt 
  Log:
  Fix expected output for PHP 6
  
http://cvs.php.net/viewvc.cgi/php-src/ext/oci8/tests/lob_029.phpt?r1=1.4&r2=1.5&diff_format=u
Index: php-src/ext/oci8/tests/lob_029.phpt
diff -u php-src/ext/oci8/tests/lob_029.phpt:1.4 
php-src/ext/oci8/tests/lob_029.phpt:1.5
--- php-src/ext/oci8/tests/lob_029.phpt:1.4 Thu Aug 28 05:35:18 2008
+++ php-src/ext/oci8/tests/lob_029.phpt Thu Aug 28 06:15:56 2008
@@ -84,33 +84,33 @@
 --EXPECTF-- 
 Test 1. Check how many rows in the table
 array(1) {
-  ["NUMROWS"]=>
+  [u"NUMROWS"]=>
   array(1) {
 [0]=>
-string(1) "3"
+unicode(1) "3"
   }
 }
 Test 2
 array(3) {
-  ["FILENUM"]=>
+  [u"FILENUM"]=>
   array(3) {
 [0]=>
-string(1) "1"
+unicode(1) "1"
 [1]=>
-string(1) "2"
+unicode(1) "2"
 [2]=>
-string(1) "3"
+unicode(1) "3"
   }
-  ["FILEDESC"]=>
+  [u"FILEDESC"]=>
   array(3) {
 [0]=>
-string(13) "Description 1"
+unicode(13) "Description 1"
 [1]=>
-string(13) "Description 2"
+unicode(13) "Description 2"
 [2]=>
-string(13) "Description 3"
+unicode(13) "Description 3"
   }
-  ["IMAGE"]=>
+  [u"IMAGE"]=>
   array(3) {
 [0]=>
 string(24) "Some text in the bfile 1"



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



[PHP-CVS] cvs: php-src /ext/oci8/tests lob_029.phpt

2008-08-27 Thread Christopher Jones
sixdThu Aug 28 05:35:19 2008 UTC

  Modified files:  
/php-src/ext/oci8/tests lob_029.phpt 
  Log:
  Test initialization cleanup
  
http://cvs.php.net/viewvc.cgi/php-src/ext/oci8/tests/lob_029.phpt?r1=1.3&r2=1.4&diff_format=u
Index: php-src/ext/oci8/tests/lob_029.phpt
diff -u php-src/ext/oci8/tests/lob_029.phpt:1.3 
php-src/ext/oci8/tests/lob_029.phpt:1.4
--- php-src/ext/oci8/tests/lob_029.phpt:1.3 Thu Mar  1 23:28:51 2007
+++ php-src/ext/oci8/tests/lob_029.phpt Thu Aug 28 05:35:18 2008
@@ -19,6 +19,12 @@
 $fullname3 = $realdirname."/".$realfilename3;
 
 // Setup
+$s = oci_parse($c, "drop table FileTest");
[EMAIL PROTECTED]($s);
+
+$s = oci_parse($c, "drop directory TestDir");
[EMAIL PROTECTED]($s);
+
 $s = oci_parse($c, "create directory TestDir as '$realdirname'");
 oci_execute($s);
 
@@ -116,4 +122,4 @@
 }
 Test 3
 string(24) "Some text in the bfile 1"
-Done
\ No newline at end of file
+Done



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