You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2021/04/15 13:32:57 UTC

[tomee-tck] branch jakartaee9-tck updated (07ffd6f -> dd512e1)

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

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


    from 07ffd6f  WebSocket tests
     new f19fbb5  Spaces in case we have multiple options
     new dd512e1  Make sure @DataBaseDefinition datasource have create flag

The 2 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:
 src/test/script/openejb/tck/commands/JavaTestCommand.groovy | 4 ++--
 src/test/tomee-plume/conf/system.properties                 | 3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

[tomee-tck] 01/02: Spaces in case we have multiple options

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

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

commit f19fbb5ee7fd36a07d26083fe79594d613c36c45
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Thu Apr 15 15:32:09 2021 +0200

    Spaces in case we have multiple options
    
    Signed-off-by: Jean-Louis Monteiro <jl...@tomitribe.com>
---
 src/test/script/openejb/tck/commands/JavaTestCommand.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/script/openejb/tck/commands/JavaTestCommand.groovy b/src/test/script/openejb/tck/commands/JavaTestCommand.groovy
index 5860c47..aece499 100644
--- a/src/test/script/openejb/tck/commands/JavaTestCommand.groovy
+++ b/src/test/script/openejb/tck/commands/JavaTestCommand.groovy
@@ -234,13 +234,13 @@ class JavaTestCommand
                     log.info("Enabling server security manager")
 
                     // -Djava.security.properties=conf/security.properties
-                    containerJavaOpts += "-Djava.security.manager " +
+                    containerJavaOpts += " -Djava.security.manager " +
                             "-Djava.security.policy==${project.basedir}/${openejbHome}/conf/catalina.policy " +
                             "-Djava.security.properties=${project.basedir}/${openejbHome}/conf/security.properties"
                 }
                 if (options.contains('websocket')) {
                     log.info("Enabling Tomcat WebSockets configuration")
-                    containerJavaOpts += "-Dorg.apache.tomcat.websocket.DISABLE_BUILTIN_EXTENSIONS=true " +
+                    containerJavaOpts += " -Dorg.apache.tomcat.websocket.DISABLE_BUILTIN_EXTENSIONS=true " +
                             "-Dorg.apache.tomcat.websocket.ALLOW_UNSUPPORTED_EXTENSIONS=true " +
                             "-Dorg.apache.tomcat.websocket.DEFAULT_PROCESS_PERIOD=0"
                 }

[tomee-tck] 02/02: Make sure @DataBaseDefinition datasource have create flag

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

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

commit dd512e10f5c6877517e492fd6ed96f4c924614a9
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Thu Apr 15 15:32:43 2021 +0200

    Make sure @DataBaseDefinition datasource have create flag
    
    Signed-off-by: Jean-Louis Monteiro <jl...@tomitribe.com>
---
 src/test/tomee-plume/conf/system.properties | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/test/tomee-plume/conf/system.properties b/src/test/tomee-plume/conf/system.properties
index 59cdaa3..42de6b6 100644
--- a/src/test/tomee-plume/conf/system.properties
+++ b/src/test/tomee-plume/conf/system.properties
@@ -109,8 +109,11 @@ old-dd-whitebox-xa-param.rar.moduleId=oldwhitebox-xa-param
 old-dd-whitebox-xa.rar.moduleId=oldwhitebox-xa
 
 RESOURCE.global/jdbc/DB3|PortNumber=%derby.server.port%
+RESOURCE.global/jdbc/DB3|createDatabase=create
 RESOURCE.defaultdsrepeatable|PortNumber=%derby.server.port%
+RESOURCE.defaultdsrepeatable|createDatabase=create
 RESOURCE.defaultdsrepeatable1|PortNumber=%derby.server.port%
+RESOURCE.defaultdsrepeatable1|createDatabase=create
 
 compds.JdbcDriver=org.apache.derby.jdbc.ClientDriver
 compds.JdbcUrl=jdbc:derby://localhost:%derby.server.port%/derbydb;create=true