Repository: helix Updated Branches: refs/heads/master dd3be71c9 -> 4511dbc6c
Set test timeout to prevent mvn test stuck. If timeout, the failed tests will be reported. So this change will not hide any potential issue. Project: http://git-wip-us.apache.org/repos/asf/helix/repo Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/a720de03 Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/a720de03 Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/a720de03 Branch: refs/heads/master Commit: a720de0311e6b9943f42310497338490b3bfeb11 Parents: dd3be71 Author: Jiajun Wang <[email protected]> Authored: Fri May 25 15:01:38 2018 -0700 Committer: Junkai Xue <[email protected]> Committed: Mon Jul 9 18:18:50 2018 -0700 ---------------------------------------------------------------------- helix-core/src/test/conf/testng.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/helix/blob/a720de03/helix-core/src/test/conf/testng.xml ---------------------------------------------------------------------- diff --git a/helix-core/src/test/conf/testng.xml b/helix-core/src/test/conf/testng.xml index 70045c9..3953de9 100644 --- a/helix-core/src/test/conf/testng.xml +++ b/helix-core/src/test/conf/testng.xml @@ -18,10 +18,10 @@ specific language governing permissions and limitations under the License. --> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> -<suite name="Suite" parallel="none"> +<suite name="Suite" parallel="none" time-out="300000"> <test name="Test" preserve-order="true"> <packages> - <package name="org.apache.helix.*"/> + <package name="org.apache.helix.*"/> <!-- <package name="org.apache.helix.messaging.handling"/> <package name="org.apache.helix.agent.file"/> @@ -39,4 +39,4 @@ under the License. --> </packages> </test> -</suite> +</suite>
