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);
2015-08-02 04:18:44 +02:00
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);
}