mirror of https://github.com/apache/openjpa.git
add comments on tests.openjpa.allowfailure options and behavior
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@900807 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28a6546b14
commit
68eaab6dcc
|
@ -42,6 +42,10 @@
|
|||
<dbcp.args>MaxActive=${dbcp.maxActive},MaxIdle=${dbcp.maxIdle},MinIdle=${dbcp.minIdle},MaxWait=${dbcp.maxWait}</dbcp.args>
|
||||
<derby.locks.waitTimeout>10</derby.locks.waitTimeout>
|
||||
<derby.locks.deadlockTimeout>5</derby.locks.deadlockTimeout>
|
||||
<!-- @AllowFailure options: ignore = silently skip test,
|
||||
log = execute test and log results but don't fail the test,
|
||||
anything else allows the test to execute normally
|
||||
-->
|
||||
<tests.openjpa.allowfailure>ignore</tests.openjpa.allowfailure>
|
||||
</properties>
|
||||
<profiles>
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
<description>OpenJPA Persistence Locking Tests</description>
|
||||
|
||||
<properties>
|
||||
<openjpa.loglevel>INFO</openjpa.loglevel>
|
||||
<dbcp.maxActive>10</dbcp.maxActive>
|
||||
<dbcp.maxIdle>5</dbcp.maxIdle>
|
||||
<dbcp.minIdle>2</dbcp.minIdle>
|
||||
|
@ -44,6 +45,10 @@
|
|||
<!-- have to use a larger waitTimeout to avoid lockmgr test failures -->
|
||||
<derby.locks.waitTimeout>60</derby.locks.waitTimeout>
|
||||
<derby.locks.deadlockTimeout>5</derby.locks.deadlockTimeout>
|
||||
<!-- @AllowFailure options: ignore = silently skip test,
|
||||
log = execute test and log results but don't fail the test,
|
||||
anything else allows the test to execute normally
|
||||
-->
|
||||
<tests.openjpa.allowfailure>ignore</tests.openjpa.allowfailure>
|
||||
</properties>
|
||||
<profiles>
|
||||
|
|
Loading…
Reference in New Issue