Author: Maciej Fijalkowski <[email protected]> Branch: inline-dict-ops Changeset: r45288:436d5fcdc19e Date: 2011-07-03 00:33 +0200 http://bitbucket.org/pypy/pypy/changeset/436d5fcdc19e/
Log: add test_dict for x86 backend diff --git a/pypy/jit/backend/x86/test/test_dict.py b/pypy/jit/backend/x86/test/test_dict.py new file mode 100644 --- /dev/null +++ b/pypy/jit/backend/x86/test/test_dict.py @@ -0,0 +1,9 @@ + +from pypy.jit.backend.x86.test.test_basic import Jit386Mixin +from pypy.jit.metainterp.test.test_dict import DictTests + + +class TestDict(Jit386Mixin, DictTests): + # for the individual tests see + # ====> ../../../metainterp/test/test_dict.py + pass _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
