mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

This will help us debug why a test was skipped in GCOV (http://gcov.php.net/viewer.php?version=PHP_HEAD&func=skip), and maybe put them to run again
10 lines
192 B
PHP
10 lines
192 B
PHP
<?php
|
|
|
|
if (!extension_loaded('odbc')) die('skip odbc extension not loaded');
|
|
|
|
include 'config.inc';
|
|
|
|
$conn = @odbc_connect($dsn, $user, $pass);
|
|
if (!$conn) {
|
|
die('skip could not connect');
|
|
}
|