mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +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
7 lines
92 B
PHP
7 lines
92 B
PHP
<?php
|
|
|
|
if (!extension_loaded('sqlite3')) {
|
|
die("skip sqlite3 extension not loaded");
|
|
}
|
|
|
|
?>
|