]> granicus.if.org Git - php/commitdiff
MHF: Test initialization cleanup
authorChristopher Jones <sixd@php.net>
Thu, 28 Aug 2008 05:35:26 +0000 (05:35 +0000)
committerChristopher Jones <sixd@php.net>
Thu, 28 Aug 2008 05:35:26 +0000 (05:35 +0000)
ext/oci8/tests/lob_029.phpt

index 6c310981b886ed7ce52b54af9ca5ba33e3ce54b9..6826f36cdadf187ea552a0706cb53571a71e7dbf 100644 (file)
@@ -19,6 +19,12 @@ $realfilename3 = "oci8bfiletest3.txt";
 $fullname3 = $realdirname."/".$realfilename3;
 
 // Setup
+$s = oci_parse($c, "drop table FileTest");
+@oci_execute($s);
+
+$s = oci_parse($c, "drop directory TestDir");
+@oci_execute($s);
+
 $s = oci_parse($c, "create directory TestDir as '$realdirname'");
 oci_execute($s);
 
@@ -116,4 +122,4 @@ array(3) {
 }
 Test 3
 string(24) "Some text in the bfile 1"
-Done
\ No newline at end of file
+Done