will tests pass now?

This commit is contained in:
George Hotz 2019-03-23 16:55:21 -07:00
parent dfb1a4a166
commit ff8a37b286
3 changed files with 7 additions and 10 deletions

View File

@ -1,9 +1,9 @@
import os
def make_ext(modname, pyxfilename):
from distutils.extension import Extension
include_dir = os.path.join(os.path.dirname(pyxfilename), 'Trace')
return Extension(name=modname,
include_dirs=[include_dir],
sources=[pyxfilename],
language='c++')
from distutils.extension import Extension
include_dir = os.path.join(os.path.dirname(pyxfilename), 'Trace')
return Extension(name=modname,
include_dirs=[include_dir],
sources=[pyxfilename],
language='c++')

View File

@ -60,6 +60,3 @@ def test():
ret = t.fetch_memory(0, 0xf6fff080, 0x10)
"""
if __name__ == "__main__":
test()

View File

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