From 90d89b620a3f7e07381e4fb6cc4a48f06c1210a5 Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro <gregd@basistech.com> Date: Wed, 4 Nov 2020 20:15:09 -0500 Subject: [PATCH] update timeout --- Core/build.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Core/build.xml b/Core/build.xml index bdb7b45c9f..aecdb6aeaa 100644 --- a/Core/build.xml +++ b/Core/build.xml @@ -285,7 +285,11 @@ <target name="integration-test"> <!--We want only integration testing to run from this--> <sequential> - <property name="test.includes" value="**/org/sleuthkit/autopsy/integrationtesting/TestRunner.class"/> + <property name="test.includes" value="**/org/sleuthkit/autopsy/integrationtesting/TestRunner.class"/> + <!-- This overrides the value in common.xml:test-init that sets each test lasting 10 minutes maximum. + More information on the timeout can be found here: http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-nbjunit/org/netbeans/junit/NbTestCase.html + under timeout() or in the harness README. Current value is 1 hour (60 * 60 * 1000) --> + <property name="test.timeout" value="3600000"/> <antcall target="projectized-common.test-qa-functional" /> </sequential> </target> -- GitLab