Added 'fulltest' target to Makefile.

This new target runs tests for both transport layers.
This commit is contained in:
Matt Butcher 2012-03-14 11:22:17 -05:00
parent 19d02fa304
commit 4dc147cd90

View File

@ -11,7 +11,11 @@ docs :
@cat ./config.doxy | sed 's/-UNSTABLE%/$(VERSION)/' | doxygen -
test :
phpunit --color --exclude-group=deprecated $(TESTS)
phpunit --color --exclude-group=deprecated $(TESTS);
fulltest:
phpunit --color --exclude-group=deprecated --bootstrap=test/bootstrap_curl.php $(TESTS);
phpunit --color --exclude-group=deprecated --bootstrap=test/bootstrap_phpstream.php $(TESTS)
test-cdn :
php test/CDNTest.php