Jenkins build is back to stable : Ant-Build-Matrix-master-Linux » xenial,JDK 11 b8 (early access build) #1207

2018-04-13 Thread Apache Jenkins Server
See 




ant git commit: fix incorrect warning in the junit task when includeAntRuntime="no"

2018-04-13 Thread hibou
Repository: ant
Updated Branches:
  refs/heads/master 285af3dbb -> 102623615


fix incorrect warning in the junit task when includeAntRuntime="no"

fixed by making the classloader used by checkForkedPath behave like a real 
forked classpath, thus completely isolated from the launching jvm


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/10262361
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/10262361
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/10262361

Branch: refs/heads/master
Commit: 10262361546354f81ede051c656a2125c8918d6f
Parents: 285af3d
Author: Nicolas Lalevée 
Authored: Fri Apr 13 21:54:19 2018 +0200
Committer: Nicolas Lalevée 
Committed: Fri Apr 13 21:54:19 2018 +0200

--
 WHATSNEW|  3 ++
 src/etc/testcases/taskdefs/optional/junit.xml   | 15 ++
 .../ant/taskdefs/optional/junit/JUnitTask.java  |  7 +++--
 .../taskdefs/optional/junit/JUnitTaskTest.java  | 30 
 4 files changed, 52 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/ant/blob/10262361/WHATSNEW
--
diff --git a/WHATSNEW b/WHATSNEW
index 0c91829..a017dfd 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -10,6 +10,9 @@ Fixed bugs:
is 'true'.
Bugzilla Report 60062
 
+ * The junit task when used with includeantruntime="no" was incorrectly
+   printing a warning about multiple versions of ant detected in path
+
 Changes from Ant 1.10.2 TO Ant 1.10.3
 =
 

http://git-wip-us.apache.org/repos/asf/ant/blob/10262361/src/etc/testcases/taskdefs/optional/junit.xml
--
diff --git a/src/etc/testcases/taskdefs/optional/junit.xml 
b/src/etc/testcases/taskdefs/optional/junit.xml
index 314ba87..40bfda6 100644
--- a/src/etc/testcases/taskdefs/optional/junit.xml
+++ b/src/etc/testcases/taskdefs/optional/junit.xml
@@ -354,4 +354,19 @@
 
   
 
+  
+
+
+
+
+  
+  
+
+
+
+  
+
+  
+
 

http://git-wip-us.apache.org/repos/asf/ant/blob/10262361/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
--
diff --git 
a/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java 
b/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
index 235cc7d..7d8eb6a 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
@@ -1368,9 +1368,10 @@ public class JUnitTask extends Task {
 return;
 }
 try (AntClassLoader loader =
- AntClassLoader.newAntClassLoader(null, getProject(),
-  
cmd.createClasspath(getProject()),
-  true)) {
+AntClassLoader.newAntClassLoader(null, getProject(),
+ cmd.createClasspath(getProject()),
+ false)) {
+loader.setIsolated(true);
 final String projectResourceName =
 LoaderUtils.classNameToResource(Project.class.getName());
 URL previous = null;

http://git-wip-us.apache.org/repos/asf/ant/blob/10262361/src/tests/junit/org/apache/tools/ant/taskdefs/optional/junit/JUnitTaskTest.java
--
diff --git 
a/src/tests/junit/org/apache/tools/ant/taskdefs/optional/junit/JUnitTaskTest.java
 
b/src/tests/junit/org/apache/tools/ant/taskdefs/optional/junit/JUnitTaskTest.java
index 616e6a0..6a9a9af 100644
--- 
a/src/tests/junit/org/apache/tools/ant/taskdefs/optional/junit/JUnitTaskTest.java
+++ 
b/src/tests/junit/org/apache/tools/ant/taskdefs/optional/junit/JUnitTaskTest.java
@@ -577,6 +577,36 @@ public class JUnitTaskTest {
 }
 }
 
+private void setupCheckDuplicateTest() {
+final String projectResourceName =
+LoaderUtils.classNameToResource(Project.class.getName());
+final File antclasses = LoaderUtils.getResourceSource(
+Project.class.getClassLoader(), projectResourceName);
+final String testResourceName =
+
LoaderUtils.classNameToResource(junit.framework.Test.class.getName());
+final File junitJar = LoaderUtils.getResourceSource(
+Project.class.getClassLoader(), testResourceName);
+buildRule.getProject().setProperty("antclasses", 
antclasses.getAbsolutePath());
+buildRule.getProject().setProperty("junitjar", 

Jenkins build became unstable: Ant-Build-Matrix-master-Linux » xenial,JDK 11 b8 (early access build) #1206

2018-04-13 Thread Apache Jenkins Server
See 




ant git commit: There is no "docs" subdirectory, just a "manual"

2018-04-13 Thread hibou
Repository: ant
Updated Branches:
  refs/heads/master 061d29b6f -> 285af3dbb


There is no "docs" subdirectory, just a "manual"


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/285af3db
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/285af3db
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/285af3db

Branch: refs/heads/master
Commit: 285af3dbb5359d33572f17e27f24be7ba09340b5
Parents: 061d29b
Author: Nicolas Lalevée 
Authored: Fri Apr 13 15:42:08 2018 +0200
Committer: Nicolas Lalevée 
Committed: Fri Apr 13 15:42:08 2018 +0200

--
 INSTALL | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/ant/blob/285af3db/INSTALL
--
diff --git a/INSTALL b/INSTALL
index 83c1167..6b50483 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,2 +1,2 @@
-For installation instructions see the manual in the docs subdirectory
-or online at .
+For installation instructions see the manual by opening manual/index.html
+or see it online at .



Jenkins build is back to normal : Ivy-tests-ubuntu » ubuntu,JDK 1.7 (latest) #331

2018-04-13 Thread Apache Jenkins Server
See 




Jenkins build is back to normal : Ant-Build-Matrix-master-Linux » xenial,JDK 11 b8 (early access build) #1205

2018-04-13 Thread Apache Jenkins Server
See