You are here

drupal-apc.php in X Autoload 7.5

Same filename and directory in other branches
  1. 7.4 tests/scripts/drupal-apc.php

File

tests/scripts/drupal-apc.php
View source
<?php

/**
 * @file
 *
 * File to test bootstrap with APC.
 */
if (!extension_loaded('apc') || !function_exists('apc_store')) {
  print "APC not available. Aborting.\n";
  return;
}
require_once dirname(__DIR__) . '/bootstrap.php';

# $filesystem = StreamWrapper::register('test');