1
0
mirror of https://github.com/danog/dns.git synced 2024-12-02 17:38:05 +01:00
dns/test/bootstrap.php

10 lines
277 B
PHP
Raw Normal View History

<?php
error_reporting(E_ALL);
if (ini_get('opcache.enable') == true &&
ini_get('opcache.save_comments') == false) {
echo "Cannot run tests. OPCache is enabled and is stripping comments, which are required by PHPUnit to provide data for the tests.\n";
exit(-1);
}