summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2008-08-28 05:35:26 +0000
committerChristopher Jones <sixd@php.net>2008-08-28 05:35:26 +0000
commit38b404fcb6006753d67288f2cd790abbbf26ff42 (patch)
tree7d20214f448d8183d3eca6e03cd085b3e5616a3f
parent999d4938b6e06d671da1c0a176399db9c311d231 (diff)
downloadphp-git-38b404fcb6006753d67288f2cd790abbbf26ff42.tar.gz
MHF: Test initialization cleanup
-rw-r--r--ext/oci8/tests/lob_029.phpt8
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/oci8/tests/lob_029.phpt b/ext/oci8/tests/lob_029.phpt
index 6c310981b8..6826f36cda 100644
--- a/ext/oci8/tests/lob_029.phpt
+++ b/ext/oci8/tests/lob_029.phpt
@@ -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