Skip to content

Commit e8ecca2

Browse files
committed
travis: More tests output debugging.
1 parent c13d0b3 commit e8ecca2

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ script:
1717
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
1818

1919
after_failure:
20+
- pwd
21+
- echo 'test'
2022
- cat tests/memoryerror.py.exp
21-
- cat tests/memoryerror.py.out
23+
- (cat tests/memoryerror.py.out)
2224
- cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done

tests/basics/memoryerror.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
l = list(range(10000))
2-
try:
3-
hex(1)
4-
except NameError:
5-
print("NameError")
62
try:
73
100000000 * l
84
except MemoryError:

0 commit comments

Comments
 (0)