Open GoogleCodeExporter opened 9 years ago
I've been writing some, will post what I have in the next couple of days.
Or see above link for file to add your own tests to.
Original comment by ren...@gmail.com
on 24 Sep 2008 at 12:49
hi,
Here's some updates...
http://rene.f0o.com/~rene/cpython.c
http://rene.f0o.com/~rene/cpython_tests.py
Fixes the re-raising of exceptions. It was tinypy code fault, not the cpython
codes
fault. So someone who knows tinpy better should have a look.
It runs all the tests from tinypy inside a cpython unittest, plus some other
tests.
There was an issue with setjmp on mingw as well. Haven't tested on other
platforms... but it *should* be ok... I think.
Note, that setjmp/longjmp should be made into tp_setjmp/tp_longjmp. Because
you need
to use different functions on different platforms... like sigsetjmp if using
posix
signals(like in cpython).
The threading is disabled... because the macros can't be used... need to do that
stuff manually to work with the setjmp.
Needs more documentation... and think about how multiple execute calls
work(reset
time/memory limits or not?).
cheers,
Original comment by ren...@gmail.com
on 24 Sep 2008 at 12:50
Original issue reported on code.google.com by
ren...@gmail.com
on 23 Sep 2008 at 7:09