Exclude GPU junit tests from the main junit ant target.

They get run in the gputest target anyway (if enablegpu == true).
This commit is contained in:
Pedro Martinez Mediano 2017-06-01 17:34:31 +10:00
parent 82d751796e
commit 8233ad0d18
1 changed files with 3 additions and 3 deletions

View File

@ -97,6 +97,7 @@
<exclude name="**/*AbstractTester.class"/>
<exclude name="**/ActiveInfoStorageCalculatorCorrelationIntegrals.class"/>
<exclude name="**/ActiveInfoStorageCalculatorKernelDirect.class"/>
<exclude name="**/*GPU*.class"/>
</fileset>
</batchtest>
</junit>
@ -252,9 +253,8 @@
<formatter type="plain"/>
<batchtest todir="${reports.tests}"> <!-- Writes full reports with stdout and stderr to ${reports.tests} -->
<fileset dir="${unittestsbin}">
<include name="**/GPUMutualInfoTester.class"/>
<include name="**/GPUPerformanceTester.class"/>
</fileset>
<include name="**/*GPU*.class"/>
<!--include name="**/GPUPerformanceTester.class"/-->
</batchtest>
</junit>