1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
From: =?utf-8?b?SsOpcsO0bWUgQ2hhcmFvdWk=?= <jerome@riseup.net>
Date: Wed, 30 Nov 2022 15:18:01 -0500
Subject: output test results to console instead of file
Forwarded: not-needed
---
build.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: jffi/build.xml
===================================================================
--- jffi.orig/build.xml
+++ jffi/build.xml
@@ -190,7 +190,7 @@
</classpath>
<sysproperty key="java.library.path" value="${build.native.dir}"/>
- <formatter type="plain" /> <!-- to file -->
+ <formatter type="plain" usefile="false" /> <!-- to console -->
<batchtest todir="${build.test.dir}/results">
<fileset dir="${src.test.dir}">
<include name="**/*Test*.java"/>
@@ -209,7 +209,7 @@
<pathelement location="/usr/share/java/hamcrest-core.jar"/>
</classpath>
- <formatter type="plain" /> <!-- to file -->
+ <formatter type="plain" usefile="false" /> <!-- to console -->
<batchtest todir="${build.test.dir}/results">
<fileset dir="${src.test.dir}">
<include name="**/*Test*.java"/>
@@ -229,7 +229,7 @@
</classpath>
<sysproperty key="jffi.extract.name" value=""/>
- <formatter type="plain" /> <!-- to file -->
+ <formatter type="plain" usefile="false" /> <!-- to console -->
<batchtest todir="${build.test.dir}/results">
<fileset dir="${src.test.dir}">
<include name="**/*Test*.java"/>
|