Skip to content

Commit

Permalink
Rename *PerformanceTest test classes to *LargeScaleTest
Browse files Browse the repository at this point in the history
This is in preparation for the installation of the new performance test suite in Bamboo.

Note that "ant performancetest" is now "ant largescaletest"
  • Loading branch information
droazen committed Dec 22, 2011
1 parent c8b1c92 commit 32cdef9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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}">
Expand All @@ -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">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import java.util.ArrayList;

public class UnifiedGenotyperPerformanceTest extends WalkerTest {
public class UnifiedGenotyperLargeScaleTest extends WalkerTest {

@Test
public void testUnifiedGenotyperWholeGenome() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import java.util.ArrayList;

public class IndelRealignerPerformanceTest extends WalkerTest {
public class IndelRealignerLargeScaleTest extends WalkerTest {
@Test
public void testHighCoverage() {
WalkerTestSpec spec = new WalkerTestSpec(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import java.util.ArrayList;

public class RealignerTargetCreatorPerformanceTest extends WalkerTest {
public class RealignerTargetCreatorLargeScaleTest extends WalkerTest {
@Test
public void testRealignerTargetCreator() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.ArrayList;


public class RecalibrationWalkersPerformanceTest extends WalkerTest {
public class RecalibrationWalkersLargeScaleTest extends WalkerTest {

private void testCountCovariatesWholeGenomeRunner(String moreArgs) {
WalkerTestSpec spec = new WalkerTestSpec(
Expand Down

0 comments on commit 32cdef9

Please sign in to comment.