diff --git a/Makefile b/Makefile
index fb5ebe37b8562a0d103fa4924c379f0906c7f616..f64c28ab1886846965039e675faa470a72d0a57f 100644
--- a/Makefile
+++ b/Makefile
@@ -49,9 +49,11 @@ test_schema: $(JAR)
 test_relaxNG: $(JAR)
 	java -cp ${CLASSPATH}:$(JUNITCLASSPATH) org.junit.runner.JUnitCore  org.slub.rosetta.dps.repository.plugin.Validation.TestValidateRelaxNG;
 
-test: test_dtd test_schema test_relaxNG
+test_combined: $(JAR)
 	java -cp ${CLASSPATH}:$(JUNITCLASSPATH) org.junit.runner.JUnitCore  org.slub.rosetta.dps.repository.plugin.TestXmlFormatValidationPlugin
 
+test: test_dtd test_schema test_relaxNG
+
 clean: jarclean
 	@rm -Rf doc/
 	find ./java/org/ -name "*.class" -exec rm -f \{\} \;