print from tests, segfaults in travis-ci

This commit is contained in:
George Hotz 2019-03-23 17:05:14 -07:00
parent ff8a37b286
commit 67e922e6dd
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ def test():
# fetch registers
ret = t.fetch_registers(113)
print("fetch regs:",map(hex, ret))
print("fetch regs:",list(map(hex, ret)))
assert len(ret) == 9
assert ret[8] == 0x80484d1
assert ret[4] == 0xf6ffef00

View File

@ -10,7 +10,7 @@ if [ "$1" == "distrib" ] ; then
fi
source venv/bin/activate
nosetests -v
nosetests -v -s
# integration test
qira qira_tests/bin/loop &