From: <ble...@us...> - 2010-10-08 19:57:49
|
Revision: 3760 http://bigdata.svn.sourceforge.net/bigdata/?rev=3760&view=rev Author: blevine218 Date: 2010-10-08 19:57:43 +0000 (Fri, 08 Oct 2010) Log Message: ----------- use <includes> instead of <test> to designate top-level suite to run. This allows the -Dtest=... override to work. Modified Paths: -------------- branches/maven_scaleout/bigdata-core/pom.xml Modified: branches/maven_scaleout/bigdata-core/pom.xml =================================================================== --- branches/maven_scaleout/bigdata-core/pom.xml 2010-10-08 17:23:07 UTC (rev 3759) +++ branches/maven_scaleout/bigdata-core/pom.xml 2010-10-08 19:57:43 UTC (rev 3760) @@ -132,7 +132,11 @@ <testFailureIgnore>true</testFailureIgnore> <skip>false</skip> <!-- Run only the top-level suite which in turn runs the other suites and tests --> - <test>com.bigdata.TestAll</test> + <includes> + <include>com/bigdata/TestAll.java</include> + </includes> + + <forkMode>pertest</forkMode> <!-- These system properties are required by the unit tests. --> <systemPropertyVariables> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |