Merge "Force case-sensitivity on the LIKE operator, to ensure similar behaviour betwe...
[lhc/web/wiklou.git] / tests / phpunit / Makefile
index 616b034..c3e2a30 100644 (file)
@@ -2,7 +2,7 @@
 .DEFAULT: warning
 
 SHELL = /bin/sh
-CONFIG_FILE = $(shell pwd)/suite.xml
+CONFIG_FILE = ${PWD}/suite.xml
 PHP = php
 PU = ${PHP} phpunit.php --configuration ${CONFIG_FILE} ${FLAGS}
 
@@ -46,17 +46,26 @@ coverage:
 
 parser:
        ${PU} --group Parser
+parserfuzz:
+       @echo "******************************************************************"
+       @echo "* This WILL kill your computer by eating all memory AND all swap *"
+       @echo "*                                                                *"
+       @echo "* If you are on a production machine. ABORT NOW!!                *"
+       @echo "*  Press control+C to stop                                       *"
+       @echo "*                                                                *"
+       @echo "******************************************************************"
+       ${PU} --group Parser,ParserFuzz
 noparser:
-       ${PU} --exclude-group Parser,Broken
+       ${PU} --exclude-group Parser,Broken,ParserFuzz,Stub
 
 safe:
-       ${PU} --exclude-group Broken,Destructive
+       ${PU} --exclude-group Broken,ParserFuzz,Destructive,Stub
 
 databaseless:
-       ${PU} --exclude-group Broken,Destructive,Database
+       ${PU} --exclude-group Broken,ParserFuzz,Destructive,Database,Stub
 
 database:
-       ${PU} --exclude-group Broken,Destructive --group Database
+       ${PU} --exclude-group Broken,ParserFuzz,Destructive,Stub --group Database
 
 list-groups:
        ${PU} --list-groups