Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
SquirrelJME
Commits
62877880
Commit
62877880
authored
Jan 01, 2020
by
Stephanie Gawroriski
Browse files
Correct test task polling to check every second to see if a task has ended.
parent
1e854089
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/mids/tac-runner/net/multiphasicapps/tac/runner/SingleUnit.java
View file @
62877880
...
...
@@ -87,7 +87,7 @@ public final class SingleUnit
this
.
suite
,
this
.
midlet
);
// Run the task task until it terminates
for
(
long
mswait
=
10
;;
mswait
+
=
Math
.
min
(
10
,
25
0
))
for
(
long
mswait
=
10
0
;;
mswait
=
Math
.
min
(
mswait
+
10
0
,
100
0
))
{
// Check status
TaskStatus
status
=
task
.
getStatus
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment