mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 22:32:06 +01:00
Add func-test target: will be run by Anthill
one more timing tweak to RosterTest git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2996 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
922ae8688b
commit
03b8362dd2
2 changed files with 16 additions and 1 deletions
|
@ -204,6 +204,14 @@
|
|||
</target>
|
||||
|
||||
|
||||
<!-- test -->
|
||||
<!-- ======================================================================================= -->
|
||||
<target name="func-test" depends="compile, jar-test" unless="no.test">
|
||||
<antcall target="test.messenger"/>
|
||||
<antcall target="test"/>
|
||||
</target>
|
||||
|
||||
|
||||
<!-- test -->
|
||||
<!-- ======================================================================================= -->
|
||||
<target name="test" depends="compile, jar-test" unless="no.test">
|
||||
|
|
|
@ -531,6 +531,13 @@ public class RosterTest extends SmackTestCase {
|
|||
fail(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
Thread.sleep(1500);
|
||||
}
|
||||
catch (InterruptedException e) {
|
||||
fail(e.getMessage());
|
||||
}
|
||||
// Wait up to 2 seconds to receive roster removal notifications
|
||||
long initial = System.currentTimeMillis();
|
||||
while (System.currentTimeMillis() - initial < 2000 &&
|
||||
|
@ -597,7 +604,7 @@ public class RosterTest extends SmackTestCase {
|
|||
try {
|
||||
Thread.sleep(500);
|
||||
}
|
||||
catch (Exception e) {
|
||||
catch (InterruptedException e) {
|
||||
fail(e.getMessage());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue