You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2021/05/02 15:54:06 UTC

[tomee-tck] branch jakartaee9-tck updated (f9bb4ae -> ac39d35)

This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a change to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git.


    from f9bb4ae  See if we can get the remaining test to work on ec2 For some reason, something happens
     new a6cb892  Sort the sigtest libs
     new efe965e  Add activation
     new 54dc764  Enable CTS debug so we have sigtest insight
     new a331082  Add rt.jar (hardcoded)
     new 2c92bc2  Add rt.jar (more dynamic)
     new ac39d35  Merge branch 'jakartaee9-tck' of github.com:apache/tomee-tck into jakartaee9-tck

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                |  2 +-
 .../script/openejb/tck/commands/CommandSupport.groovy  | 18 +++++++++++++-----
 2 files changed, 14 insertions(+), 6 deletions(-)

[tomee-tck] 04/06: Add rt.jar (hardcoded)

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit a331082a3ef9d451eba7e099bb88821c2569ca61
Author: David Blevins <da...@gmail.com>
AuthorDate: Sun May 2 08:42:01 2021 -0700

    Add rt.jar (hardcoded)
---
 src/test/script/openejb/tck/commands/CommandSupport.groovy | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/script/openejb/tck/commands/CommandSupport.groovy b/src/test/script/openejb/tck/commands/CommandSupport.groovy
index 01ae662..1649ed3 100644
--- a/src/test/script/openejb/tck/commands/CommandSupport.groovy
+++ b/src/test/script/openejb/tck/commands/CommandSupport.groovy
@@ -210,6 +210,8 @@ abstract class CommandSupport {
         builder.append("servlet-api.jar")
         builder.append("taglibs-shade-*.jar")
         builder.append("websocket-api.jar")
+        builder.directory = "/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents//Home/jre/lib/"
+        builder.append("rt.jar")
         builder.getPath("openejb.jee.classes")
 
         // ts.run.classpath - used to run the appclient

[tomee-tck] 03/06: Enable CTS debug so we have sigtest insight

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit 54dc764d5af5ffc90bfed4736ed585a10a7d70b5
Author: David Blevins <da...@gmail.com>
AuthorDate: Sun May 2 06:02:12 2021 -0700

    Enable CTS debug so we have sigtest insight
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 1ebd65b..11b1095 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
     <!-- Random CTS properties that have been externalized -->
     <deliverable.class>com.sun.ts.lib.deliverable.cts.CTSDeliverable</deliverable.class>
     <deploy_delay_in_minutes>5</deploy_delay_in_minutes>
-    <cts.harness.debug>false</cts.harness.debug>
+    <cts.harness.debug>true</cts.harness.debug>
 
     <!-- Disable Surefire, we are using Javatest to execute integration tests -->
     <maven.test.skip>true</maven.test.skip>

[tomee-tck] 01/06: Sort the sigtest libs

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit a6cb8929d5f336f2302a185d4a69c6818645cc0c
Author: David Blevins <da...@gmail.com>
AuthorDate: Sun May 2 04:24:12 2021 -0700

    Sort the sigtest libs
---
 src/test/script/openejb/tck/commands/CommandSupport.groovy | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/test/script/openejb/tck/commands/CommandSupport.groovy b/src/test/script/openejb/tck/commands/CommandSupport.groovy
index 52314f6..e0e3bce 100644
--- a/src/test/script/openejb/tck/commands/CommandSupport.groovy
+++ b/src/test/script/openejb/tck/commands/CommandSupport.groovy
@@ -198,17 +198,17 @@ abstract class CommandSupport {
         builder = new PathBuilder(this)
         builder.directory = openejbLib
         builder.appendAll("geronimo-*_spec-*.jar")
-        builder.append("javaee-api-*.jar")
-        builder.append("servlet-api.jar")
-        builder.append("websocket-api.jar")
-        builder.append("jakarta.faces-*.jar")
-        builder.append("taglibs-shade-*.jar")
         builder.append("el-api.jar")
         builder.append("jakarta.annotation-api-*.jar")
+        builder.append("jakarta.faces-*.jar")
         builder.append("jakarta.validation-api-*.jar")
         builder.append("jakarta.xml.bind-api-*.jar")
         builder.append("jaspic-api.jar")
+        builder.append("javaee-api-*.jar")
         builder.append("jsp-api.jar")
+        builder.append("servlet-api.jar")
+        builder.append("taglibs-shade-*.jar")
+        builder.append("websocket-api.jar")
         builder.getPath("openejb.jee.classes")
 
         // ts.run.classpath - used to run the appclient

[tomee-tck] 05/06: Add rt.jar (more dynamic)

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit 2c92bc2cc682114e8a3ed0ba5113b838f5a4e1a1
Author: David Blevins <da...@gmail.com>
AuthorDate: Sun May 2 08:53:34 2021 -0700

    Add rt.jar (more dynamic)
---
 src/test/script/openejb/tck/commands/CommandSupport.groovy | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/test/script/openejb/tck/commands/CommandSupport.groovy b/src/test/script/openejb/tck/commands/CommandSupport.groovy
index 1649ed3..38c0866 100644
--- a/src/test/script/openejb/tck/commands/CommandSupport.groovy
+++ b/src/test/script/openejb/tck/commands/CommandSupport.groovy
@@ -210,7 +210,7 @@ abstract class CommandSupport {
         builder.append("servlet-api.jar")
         builder.append("taglibs-shade-*.jar")
         builder.append("websocket-api.jar")
-        builder.directory = "/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents//Home/jre/lib/"
+        builder.directory = javaHome() +"/lib/"
         builder.append("rt.jar")
         builder.getPath("openejb.jee.classes")
 
@@ -303,6 +303,11 @@ abstract class CommandSupport {
         builder.getPath("openejb.embedded.classpath")
     }
 
+    private String javaHome() {
+        def file = new File(System.getProperty("java.home"))
+        return file.getAbsolutePath();
+    }
+
     def selectTests() {
         def builder = new TestListBuilder(this)
         return builder.getTests()

[tomee-tck] 02/06: Add activation

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit efe965e13260c9e5262d85cc3d02102cd9940975
Author: David Blevins <da...@gmail.com>
AuthorDate: Sun May 2 04:26:19 2021 -0700

    Add activation
---
 src/test/script/openejb/tck/commands/CommandSupport.groovy | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/test/script/openejb/tck/commands/CommandSupport.groovy b/src/test/script/openejb/tck/commands/CommandSupport.groovy
index e0e3bce..01ae662 100644
--- a/src/test/script/openejb/tck/commands/CommandSupport.groovy
+++ b/src/test/script/openejb/tck/commands/CommandSupport.groovy
@@ -199,6 +199,7 @@ abstract class CommandSupport {
         builder.directory = openejbLib
         builder.appendAll("geronimo-*_spec-*.jar")
         builder.append("el-api.jar")
+        builder.append("jakarta.activation-*.jar")
         builder.append("jakarta.annotation-api-*.jar")
         builder.append("jakarta.faces-*.jar")
         builder.append("jakarta.validation-api-*.jar")

[tomee-tck] 06/06: Merge branch 'jakartaee9-tck' of github.com:apache/tomee-tck into jakartaee9-tck

Posted by db...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git

commit ac39d35b6667a6e5339a71e5c61eef63385a0ac7
Merge: 2c92bc2 f9bb4ae
Author: David Blevins <da...@gmail.com>
AuthorDate: Sun May 2 08:53:51 2021 -0700

    Merge branch 'jakartaee9-tck' of github.com:apache/tomee-tck into jakartaee9-tck

 src/test/tomee-plume/conf/catalina.policy | 11 +++++++++++
 1 file changed, 11 insertions(+)