Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
e693e524
Commit
e693e524
authored
Oct 20, 2015
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
tests: Disable some tests for pyboard that do not run correctly.
parent
9d0192de
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/run-tests
+3
-3
3 additions, 3 deletions
tests/run-tests
with
3 additions
and
3 deletions
tests/run-tests
+
3
−
3
View file @
e693e524
...
@@ -188,9 +188,12 @@ def run_tests(pyb, tests, args):
...
@@ -188,9 +188,12 @@ def run_tests(pyb, tests, args):
# Some tests shouldn't be run on pyboard
# Some tests shouldn't be run on pyboard
if
pyb
is
not
None
:
if
pyb
is
not
None
:
skip_tests
.
add
(
'
basics/exception_chain.py
'
)
# warning is not printed
skip_tests
.
add
(
'
float/float_divmod.py
'
)
# tested by float/float_divmod_relaxed.py instead
skip_tests
.
add
(
'
float/float_divmod.py
'
)
# tested by float/float_divmod_relaxed.py instead
skip_tests
.
add
(
'
float/float2int_doubleprec.py
'
)
# requires double precision floating point to work
skip_tests
.
add
(
'
float/float2int_doubleprec.py
'
)
# requires double precision floating point to work
skip_tests
.
add
(
'
micropython/meminfo.py
'
)
# output is very different to PC output
skip_tests
.
add
(
'
micropython/meminfo.py
'
)
# output is very different to PC output
skip_tests
.
add
(
'
extmod/machine1.py
'
)
# raw memory access not supported
skip_tests
.
add
(
'
extmod/machine_mem.py
'
)
# raw memory access not supported
if
args
.
target
==
'
wipy
'
:
if
args
.
target
==
'
wipy
'
:
skip_tests
.
add
(
'
misc/print_exception.py
'
)
# requires error reporting full
skip_tests
.
add
(
'
misc/print_exception.py
'
)
# requires error reporting full
...
@@ -202,10 +205,7 @@ def run_tests(pyb, tests, args):
...
@@ -202,10 +205,7 @@ def run_tests(pyb, tests, args):
skip_tests
.
add
(
'
extmod/zlibd_decompress.py
'
)
# requires zlib
skip_tests
.
add
(
'
extmod/zlibd_decompress.py
'
)
# requires zlib
skip_tests
.
add
(
'
extmod/ujson_dumps_float.py
'
)
# requires floating point
skip_tests
.
add
(
'
extmod/ujson_dumps_float.py
'
)
# requires floating point
skip_tests
.
add
(
'
extmod/ujson_loads_float.py
'
)
# requires floating point
skip_tests
.
add
(
'
extmod/ujson_loads_float.py
'
)
# requires floating point
skip_tests
.
add
(
'
extmod/machine1.py
'
)
# raw memory access not supported by WiPy
skip_tests
.
add
(
'
extmod/machine_mem.py
'
)
# raw memory access not supported by WiPy
skip_tests
.
add
(
'
extmod/uheapq1.py
'
)
# uheapq not supported by WiPy
skip_tests
.
add
(
'
extmod/uheapq1.py
'
)
# uheapq not supported by WiPy
skip_tests
.
add
(
'
basics/exception_chain.py
'
)
# warning is not printed
# Some tests are known to fail on 64-bit machines
# Some tests are known to fail on 64-bit machines
if
pyb
is
None
and
platform
.
architecture
()[
0
]
==
'
64bit
'
:
if
pyb
is
None
and
platform
.
architecture
()[
0
]
==
'
64bit
'
:
...
...
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