]> granicus.if.org Git - php/commitdiff
Test for bug #24224
authorArd Biesheuvel <abies@php.net>
Sat, 16 Aug 2003 15:22:36 +0000 (15:22 +0000)
committerArd Biesheuvel <abies@php.net>
Sat, 16 Aug 2003 15:22:36 +0000 (15:22 +0000)
ext/interbase/tests/004.phpt

index 1ed6415324d221a492ebf8e98fea9b371f0a0a06..93ad3aa6db3c25f915872729ebe016bb2ca35820 100644 (file)
@@ -17,8 +17,8 @@ InterBase: BLOB test
             v_blob             blob)");
     ibase_commit();
 
-    /* create 10k blob file  */
-    $blob_str = rand_binstr(10*1024);
+    /* create 100k blob file  */
+    $blob_str = rand_binstr(100*1024);
 
     $name = tempnam(dirname(__FILE__),"blob.tmp");
     $ftmp = fopen($name,"w");
@@ -39,7 +39,16 @@ InterBase: BLOB test
     while($piece = ibase_blob_get($bl_h, rand() % 1024))
         $blob .= $piece;
     if($blob != $blob_str)
-               echo " BLOB 1 fail\n";
+               echo " BLOB 1 fail (1)\n";
+    ibase_blob_close($bl_h);
+
+    $bl_h = ibase_blob_open($row->V_BLOB);
+
+       $blob = '';    
+    while($piece = ibase_blob_get($bl_h, 100 * 1024))
+        $blob .= $piece;
+    if($blob != $blob_str)
+               echo " BLOB 1 fail (2)\n";
     ibase_blob_close($bl_h);
     ibase_free_result($q);
     unset($blob);