Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
0ea00d93
Commit
0ea00d93
authored
6 years ago
by
Alexandre Abadie
Browse files
Options
Downloads
Patches
Plain Diff
tests/pkg_libcose: increase timeout of autotest
On a microbit (nrf51) the autotest takes around 4 minutes to complete.
parent
6886ca54
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/pkg_libcose/tests/01-run.py
+6
-1
6 additions, 1 deletion
tests/pkg_libcose/tests/01-run.py
with
6 additions
and
1 deletion
tests/pkg_libcose/tests/01-run.py
+
6
−
1
View file @
0ea00d93
...
@@ -11,10 +11,15 @@ import sys
...
@@ -11,10 +11,15 @@ import sys
from
testrunner
import
run
from
testrunner
import
run
# on real hardware, this test application can take several minutes to
# complete (~4min on microbit)
HW_TIMEOUT
=
300
def
testfunc
(
child
):
def
testfunc
(
child
):
board
=
os
.
environ
[
'
BOARD
'
]
board
=
os
.
environ
[
'
BOARD
'
]
# Increase timeout on "real" hardware
# Increase timeout on "real" hardware
timeout
=
120
if
board
is
not
'
native
'
else
-
1
timeout
=
HW_TIMEOUT
if
board
is
not
'
native
'
else
-
1
child
.
expect
(
'
OK \(\d+ tests\)
'
,
timeout
=
timeout
)
child
.
expect
(
'
OK \(\d+ tests\)
'
,
timeout
=
timeout
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment