Skip to content

Commit 5d9de99

Browse files
committed
Merge branch 'jwcranford-ant-junit-printsummary'
2 parents 6232430 + c33cc98 commit 5d9de99

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ codesigning.jks
2727

2828
/prov/src/main/core/
2929

30+
bc-build.user.properties

ant/bc+-build.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<project name="crypto.bcbuild" default="build" basedir=".">
44

5+
<property file="bc-build.user.properties" />
56
<property file="bc-build.properties" />
67
<property environment="env" />
78

@@ -974,7 +975,7 @@
974975
<property name="test.target.src.dir" value="${test.target.dir}/src" />
975976

976977
<mkdir dir="${basedir}/${build.dir}/${target.prefix}" />
977-
<junit fork="yes" dir="${basedir}/${build.dir}/${target.prefix}" failureProperty="test.failed">
978+
<junit fork="yes" dir="${basedir}/${build.dir}/${target.prefix}" failureProperty="test.failed" printsummary="${junit.printsummary}">
978979
<classpath>
979980
<path refid="project.classpath" />
980981
<fileset dir="${artifacts.jars.dir}">

bc-build.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# NOTE: Any properties set in bc-build.user.properties override those
2+
# set in this file. bc-build.user.properties is ignored by git and is
3+
# intended to hold user-specific settings that are *not* committed to
4+
# the repository.
15

26
release.suffix: 173b06
37
release.name: 1.73b06
@@ -10,3 +14,4 @@ jmail.jar.home: ./libs/jakarta.mail-2.0.1.jar
1014
jactivation.jar.home: ./libs/jakarta.activation-api-2.0.0.jar
1115
junit.jar.home: ./libs/junit.jar
1216

17+
junit.printsummary: off

0 commit comments

Comments
 (0)