Fix skipifs

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

View file

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

View file

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