From 90ef40d9c2dcaf7fb52adf25b5b8623944d6f8cc Mon Sep 17 00:00:00 2001 From: Trevor Parscal Date: Tue, 7 Sep 2010 22:32:47 +0000 Subject: [PATCH] Renaming phpunit to phpunit.php - this will make it possible to have a phpunit folder here, yet doesn't break head. --- maintenance/tests/Makefile | 6 +++--- maintenance/tests/{phpunit => phpunit.php} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename maintenance/tests/{phpunit => phpunit.php} (100%) diff --git a/maintenance/tests/Makefile b/maintenance/tests/Makefile index ece423cf69..d489c24faa 100644 --- a/maintenance/tests/Makefile +++ b/maintenance/tests/Makefile @@ -8,16 +8,16 @@ TEST_FILE_TARGETS=$(subst .php,.target,$(TEST_FILES)) all test: phpunit phpunit: - php phpunit + php phpunit.php tap: - prove -e 'php phpunit --tap' *Test*.php + prove -e 'php phpunit.php --tap' *Test*.php separate: $(TEST_FILE_TARGETS) # Need --tap because without it, the target specification doesn't work $(TEST_FILE_TARGETS) : %.target : %.php - php phpunit --tap $< + php phpunit.php --tap $< install: pear channel-discover pear.phpunit.de diff --git a/maintenance/tests/phpunit b/maintenance/tests/phpunit.php similarity index 100% rename from maintenance/tests/phpunit rename to maintenance/tests/phpunit.php -- 2.20.1