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
48aaa27c
Commit
48aaa27c
authored
Apr 15, 2014
by
Damien George
Browse files
travis: Diff output, hopefully this works.
parent
fd1c7b9d
Changes
2
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
48aaa27c
...
...
@@ -14,7 +14,4 @@ script:
-
make -C unix-cpy CC=gcc-4.7
-
make -C bare-arm
-
make -C stmhal
-
cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
-
cat tests/memoryerror.py.exp
-
cat tests/memoryerror.py.out
-
cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done
-
(cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests || for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done && exit 1)
tests/run-tests
View file @
48aaa27c
...
...
@@ -70,8 +70,6 @@ for test_file in tests:
rm_f
(
os
.
path
.
basename
(
test_file
+
".exp"
))
rm_f
(
os
.
path
.
basename
(
test_file
+
".out"
))
else
:
print
(
'EXP|{}|'
.
format
(
output_expected
))
print
(
'OUT|{}|'
.
format
(
output_mupy
))
with
open
(
os
.
path
.
basename
(
test_file
+
".exp"
),
"w"
)
as
f
:
f
.
write
(
str
(
output_expected
,
"ascii"
))
with
open
(
os
.
path
.
basename
(
test_file
+
".out"
),
"w"
)
as
f
:
...
...
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