Remove path specific to my system.

This commit is contained in:
Andrew Garrett 2009-01-23 22:52:04 +00:00
parent 264114310a
commit 37a8afabac

View file

@ -4,7 +4,10 @@
* Runs tests against the PHP parser.
*/
require_once( '/home/andrew/wm-svn/phase3/maintenance/commandLine.inc' );
require_once ( getenv('MW_INSTALL_PATH') !== false
? getenv('MW_INSTALL_PATH')."/maintenance/commandLine.inc"
: dirname( __FILE__ ) . '/../../maintenance/commandLine.inc' );
$tester = new AbuseFilterParser;
$test_path = dirname( __FILE__ )."/tests";