Author: Armin Rigo <ar...@tunes.org> Branch: stacklet Changeset: r46798:1bfc17103316 Date: 2011-08-26 17:20 +0200 http://bitbucket.org/pypy/pypy/changeset/1bfc17103316/
Log: Kill old test. diff --git a/pypy/rpython/test/test_stack.py b/pypy/rpython/test/test_stack.py deleted file mode 100644 --- a/pypy/rpython/test/test_stack.py +++ /dev/null @@ -1,16 +0,0 @@ - -from pypy.rpython.test.test_llinterp import interpret -from pypy.rlib.rstack import stack_frames_depth - - -def test_interp_c(): - def f(): - return stack_frames_depth() - - def g(): - return f() - res_f = interpret(f, []) - res_g = interpret(g, []) - assert res_f == 2 - assert res_g == 3 - _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit