Rename *PerformanceTest test classes to *LargeScaleTest
This is in preparation for the installation of the new performance test suite in Bamboo. Note that "ant performancetest" is now "ant largescaletest"
This commit is contained in:
parent
c8b1c92a6c
commit
32cdef9682
12
build.xml
12
build.xml
|
|
@ -993,7 +993,7 @@
|
|||
</antcall>
|
||||
</target>
|
||||
|
||||
<!-- Our four different test conditions: Test, IntegrationTest, PerformanceTest, PipelineTest -->
|
||||
<!-- Our four different test conditions: Test, IntegrationTest, LargeScaleTest, PipelineTest -->
|
||||
<target name="test" depends="init.buildall,test.compile,vcf.jar,test.init" description="Run unit tests">
|
||||
<condition property="ttype" value="*UnitTest" else="${single}">
|
||||
<not><isset property="single"/></not>
|
||||
|
|
@ -1010,13 +1010,13 @@
|
|||
</target>
|
||||
<target name="integrationtest.public" depends="init.buildpublic,integrationtest"/>
|
||||
|
||||
<target name="performancetest" depends="init.buildall,test.compile,test.init" description="Run performance tests">
|
||||
<condition property="ptype" value="*PerformanceTest" else="${single}">
|
||||
<target name="largescaletest" depends="init.buildall,test.compile,test.init" description="Run large-scale tests">
|
||||
<condition property="ptype" value="*LargeScaleTest" else="${single}">
|
||||
<not><isset property="single"/></not>
|
||||
</condition>
|
||||
<run-test testtype="${ptype}" outputdir="${report}/${ptype}" classpath="${testng.classpath}" runfailed="false"/>
|
||||
</target>
|
||||
<target name="performancetest.public" depends="init.buildpublic,performancetest" />
|
||||
<target name="largescaletest.public" depends="init.buildpublic,largescaletest" />
|
||||
|
||||
<target name="pipelinetest" depends="init.buildall,test.compile,test.init" description="Run pipeline tests">
|
||||
<condition property="pipetype" value="*PipelineTest" else="${single}">
|
||||
|
|
@ -1043,8 +1043,8 @@
|
|||
<run-test testtype="${report}/*IntegrationTest/testng-failed.xml" outputdir="${report}/failed_rerun" classpath="${testng.classpath}" runfailed="true"/>
|
||||
</target>
|
||||
|
||||
<target name="failed-performance" depends="init.buildall,test.compile,test.init">
|
||||
<run-test testtype="${report}/*PerformanceTest/testng-failed.xml" outputdir="${report}/failed_rerun" classpath="${testng.classpath}" runfailed="true"/>
|
||||
<target name="failed-largescale" depends="init.buildall,test.compile,test.init">
|
||||
<run-test testtype="${report}/*LargeScaleTest/testng-failed.xml" outputdir="${report}/failed_rerun" classpath="${testng.classpath}" runfailed="true"/>
|
||||
</target>
|
||||
|
||||
<target name="failed-pipeline" depends="init.buildall,test.compile,test.init">
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import org.testng.annotations.Test;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class UnifiedGenotyperPerformanceTest extends WalkerTest {
|
||||
public class UnifiedGenotyperLargeScaleTest extends WalkerTest {
|
||||
|
||||
@Test
|
||||
public void testUnifiedGenotyperWholeGenome() {
|
||||
|
|
@ -5,7 +5,7 @@ import org.testng.annotations.Test;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class IndelRealignerPerformanceTest extends WalkerTest {
|
||||
public class IndelRealignerLargeScaleTest extends WalkerTest {
|
||||
@Test
|
||||
public void testHighCoverage() {
|
||||
WalkerTestSpec spec = new WalkerTestSpec(
|
||||
|
|
@ -5,7 +5,7 @@ import org.testng.annotations.Test;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class RealignerTargetCreatorPerformanceTest extends WalkerTest {
|
||||
public class RealignerTargetCreatorLargeScaleTest extends WalkerTest {
|
||||
@Test
|
||||
public void testRealignerTargetCreator() {
|
||||
|
||||
|
|
@ -6,7 +6,7 @@ import org.testng.annotations.Test;
|
|||
import java.util.ArrayList;
|
||||
|
||||
|
||||
public class RecalibrationWalkersPerformanceTest extends WalkerTest {
|
||||
public class RecalibrationWalkersLargeScaleTest extends WalkerTest {
|
||||
|
||||
private void testCountCovariatesWholeGenomeRunner(String moreArgs) {
|
||||
WalkerTestSpec spec = new WalkerTestSpec(
|
||||
Loading…
Reference in New Issue