So, the config file appears to take longer to write out to the file system.

This commit is contained in:
jgen
2014-02-18 22:21:14 -05:00
parent 7d3650555f
commit 62f0be7b92
3 changed files with 11 additions and 0 deletions

View File

@ -15,6 +15,10 @@ require_once('lib/simpletest/reporter.php');
require_once('tests/test_install.php');
require_once("core/util.inc.php");
// Enable all errors.
error_reporting(E_ALL);
// Get the command line option telling us what database to use.
$options = getopt("d:");
$db = $options["d"];
@ -30,6 +34,8 @@ $test_suite->add(new ShimmieInstallerTest());
// From index.php
//
clearstatcache();
require_once("core/sys_config.inc.php");
include "data/config/shimmie.conf.php";