From fbb0c486ec749cc2f6d2689ed58049e4f6c6bc48 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Mon, 28 Aug 2006 20:28:19 +0000 Subject: [PATCH] Doxygen needs to ignore test-settings.php. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@335 48356398-32a2-884e-a903-53898d9a118a --- Doxyfile | 3 ++- tests/index.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Doxyfile b/Doxyfile index 179d3a85..8c9dc3bc 100644 --- a/Doxyfile +++ b/Doxyfile @@ -90,7 +90,8 @@ EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = */tests/* \ */benchmarks/* \ */docs/phpdoc/* \ - */docs/doxygen/* + */docs/doxygen/* \ + */test-settings.php EXAMPLE_PATH = EXAMPLE_PATTERNS = * EXAMPLE_RECURSIVE = NO diff --git a/tests/index.php b/tests/index.php index 22192cdc..560ba90b 100644 --- a/tests/index.php +++ b/tests/index.php @@ -9,7 +9,7 @@ error_reporting(E_ALL); $GLOBALS['HTMLPurifierTest']['PEAR'] = false; // do PEAR tests $simpletest_location = 'simpletest/'; -if (file_exists('../config.php')) include_once '../config.php'; +if (file_exists('../test-settings.php')) include_once '../test-settings.php'; require_once $simpletest_location . 'unit_tester.php'; require_once $simpletest_location . 'reporter.php'; require_once $simpletest_location . 'mock_objects.php';