Skip to content
Snippets Groups Projects
Commit 1e4e831f authored by buczekp's avatar buczekp
Browse files

minor: changes for testing single system test suite on CI

SVN: 18142
parent 5b39b3a1
No related branches found
No related tags found
No related merge requests found
...@@ -90,8 +90,7 @@ ...@@ -90,8 +90,7 @@
<sysproperty key="hibernate.search.index-base" value="sourceTest/lucene/indices" /> <sysproperty key="hibernate.search.index-base" value="sourceTest/lucene/indices" />
<sysproperty key="hibernate.search.index-mode" value="NO_INDEX" /> <sysproperty key="hibernate.search.index-mode" value="NO_INDEX" />
<sysproperty key="hibernate.search.indexing_strategy" value="manual" /> <sysproperty key="hibernate.search.indexing_strategy" value="manual" />
<sysproperty key="data-store-server-base-url" value="https://localhost:8889" /> <sysproperty key="gwt.args" value="-testMethodTimeout 6 -Xtries 1" />
<sysproperty key="gwt.args" value="-testMethodTimeout 5 -Xtries 1" />
<formatter type="xml" /> <formatter type="xml" />
<test name="@{testsuite}" todir="${output.test}" /> <test name="@{testsuite}" todir="${output.test}" />
</junit> </junit>
...@@ -115,6 +114,16 @@ ...@@ -115,6 +114,16 @@
<fail if="tests.failed" message="At least one of system test suites failed."/> <fail if="tests.failed" message="At least one of system test suites failed."/>
</target> </target>
<!--
// Must pass in 'testsuite'. Should be performed after prepare-gwt and compile-tests.
-->
<target name="run-single-system-test-suite">
<delete dir="${output.test}" />
<mkdir dir="${output.test}" />
<run-system-test-suite testsuite="${testsuite}"/>
<fail if="tests.failed" message="${testsuite} failed."/>
</target>
<!-- <!--
// Makes a distribution file. // Makes a distribution file.
--> -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment