summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/tests
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-12-08 03:24:59 +0100
committerAnatol Belski <ab@php.net>2016-12-08 03:24:59 +0100
commit394a3593cc86fa2f77b13734e0b07ddb1787f534 (patch)
tree56aa91d6371038dcc54ec2fe2e0a1adf5013ddde /ext/pdo_firebird/tests
parent60249f439012598717f97ce250f06181116502ea (diff)
parentff6565462ede34f5b776ade1a8fb77c55347e9d3 (diff)
downloadphp-git-394a3593cc86fa2f77b13734e0b07ddb1787f534.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: git clean section
Diffstat (limited to 'ext/pdo_firebird/tests')
-rw-r--r--ext/pdo_firebird/tests/bug_72931.phpt6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/pdo_firebird/tests/bug_72931.phpt b/ext/pdo_firebird/tests/bug_72931.phpt
index 10adf20ca7..ecbde6a109 100644
--- a/ext/pdo_firebird/tests/bug_72931.phpt
+++ b/ext/pdo_firebird/tests/bug_72931.phpt
@@ -14,5 +14,11 @@ echo $D[0][0];
unset($S);
unset($C);
?>
+--CLEAN--
+<?php
+require 'testdb.inc';
+$C = new PDO('firebird:dbname='.$test_base, $user, $password) or die;
+$C->exec('DROP table tablea');
+?>
--EXPECT--
1