Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
aee723ed
Commit
aee723ed
authored
Jan 31, 2017
by
Paul Sokolovsky
Browse files
tests/run-tests: Skip frozenset tests if set literal syntax is not available.
parent
d3359046
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/run-tests
View file @
aee723ed
...
...
@@ -314,7 +314,7 @@ def run_tests(pyb, tests, args):
test_name
=
os
.
path
.
splitext
(
test_basename
)[
0
]
is_native
=
test_name
.
startswith
(
"native_"
)
or
test_name
.
startswith
(
"viper_"
)
is_endian
=
test_name
.
endswith
(
"_endian"
)
is_set_type
=
test_name
.
startswith
(
"set_"
)
is_set_type
=
test_name
.
startswith
(
"set_"
)
or
test_name
.
startswith
(
"frozenset"
)
skip_it
=
test_file
in
skip_tests
skip_it
|=
skip_native
and
is_native
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment