Skip to content
Snippets Groups Projects
Commit 45b4cc77 authored by Damien George's avatar Damien George
Browse files

travis: Debugging failing tests.

parent 9e2890bb
Branches
No related tags found
No related merge requests found
......@@ -16,4 +16,7 @@ script:
- make -C stmhal
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
after_failure: cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done
after_failure:
- 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
l = list(range(10000))
hex(1)
try:
100000000 * l
except MemoryError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment