summaryrefslogtreecommitdiff
path: root/testing/test_ownlib.py
Commit message (Collapse)AuthorAgeFilesLines
* Keep the loaded libraries alive as long as the 'ffi' object is kept alive.Armin Rigo2012-10-091-1/+38
|
* hack hack hackArmin Rigo2012-08-121-4/+4
|
* Bah. Can't put the skip() in setup_method(), because test_ffi_backendArmin Rigo2012-08-111-3/+7
| | | | subclasses this class.
* Test and fix.Armin Rigo2012-08-041-3/+41
|
* Simplify code, after realizing that the front-end never callsArmin Rigo2012-06-161-0/+6
| | | | the backend's load_library() with None.
* Remove 'ffi.rawload(None).errno', which was a hack that made sense atArmin Rigo2012-06-151-5/+3
| | | | | | | the time where it was 'ffi.C.errno', but no longer really does now. Moreover, although errno is really coming from the C library, it's strange to have it appear in this library object because we never declared it.
* Rename ffi.rawload() to ffi.dlopen().Armin Rigo2012-06-141-4/+4
|
* Fix tests.Armin Rigo2012-06-121-5/+7
|
* Rename the package from "ffi" to "cffi".Armin Rigo2012-06-051-2/+2
| | | | | Use local imports inside the package; anyway it has no chance to work on Python < 2.6 because pycparser doesn't.
* Don't want to investigate thisArmin Rigo2012-06-011-2/+6
|
* Import other tests here too.Armin Rigo2012-06-011-26/+30
|
* errno support, by special-casing "ffi.C.errno" to make it look exactly like ↵Armin Rigo2012-05-221-0/+44
in C.