mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01: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
8 lines
92 B
PHP
8 lines
92 B
PHP
<?php
|
|
|
|
if (!extension_loaded('sqlite3')) {
|
|
die("skip sqlite3 extension not loaded");
|
|
}
|
|
|
|
?>
|