1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00

Fix skipifs

This commit is contained in:
Christopher Jones
2011-09-08 17:52:45 +00:00
parent de264a62cf
commit d4f1085c18
2 changed files with 3 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ MySQL PDO->__construct(), options
--SKIPIF--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
MySQLPDOTest::skip();
?>
--FILE--
<?php

View File

@@ -4,6 +4,7 @@ MySQL PDO class interface
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
MySQLPDOTest::skip();
$db = MySQLPDOTest::factory();
if (false == MySQLPDOTest::detect_transactional_mysql_engine($db))
die("skip Transactional engine not found");