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
e9903919
You need to sign in or sign up before continuing.
Unverified
Commit
e9903919
authored
6 years ago
by
Alexandre Abadie
Browse files
Options
Downloads
Patches
Plain Diff
tests/periph_dma: add automatic testing of DMA over UART
parent
fc1badde
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/periph_dma/main.c
+6
-1
6 additions, 1 deletion
tests/periph_dma/main.c
tests/periph_dma/tests/01-run.py
+18
-0
18 additions, 0 deletions
tests/periph_dma/tests/01-run.py
with
24 additions
and
1 deletion
tests/periph_dma/main.c
+
6
−
1
View file @
e9903919
...
@@ -21,7 +21,12 @@
...
@@ -21,7 +21,12 @@
int
main
(
void
)
int
main
(
void
)
{
{
puts
(
"DMA dummy test app"
);
/*
This test is checking that DMA on UART is not broken when stdio UART is
configured with DMA.
Note that this message is also printed on 'normal' stdio UART (without DMA).
*/
puts
(
"DMA is working"
);
return
0
;
return
0
;
}
}
This diff is collapsed.
Click to expand it.
tests/periph_dma/tests/01-run.py
0 → 100755
+
18
−
0
View file @
e9903919
#!/usr/bin/env python3
# Copyright (C) 2019 Inria
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
import
sys
from
testrunner
import
run
def
testfunc
(
child
):
child
.
expect_exact
(
'
DMA is working
'
)
if
__name__
==
"
__main__
"
:
sys
.
exit
(
run
(
testfunc
))
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