summaryrefslogtreecommitdiff
path: root/testing/test_function.py
Commit message (Collapse)AuthorAgeFilesLines
* As discussed on the mailing list: str() -> ffi.string()Armin Rigo2012-08-031-2/+2
|
* This test works (tested elsewhere).Armin Rigo2012-07-181-3/+0
|
* Change ffi.new() to take a pointer-to-X instead of directly X,Armin Rigo2012-07-161-1/+1
| | | | in order to match directly the returned type.
* Test and fix: from callbacks with 'void' as the result type, you shouldArmin Rigo2012-07-051-1/+20
| | | | really return None and not anything else.
* Fix(?) the ctypes backend, as far as the tests are concerned.Armin Rigo2012-06-261-1/+1
|
* Convert the front-end. Missing backend_ctypes.Armin Rigo2012-06-251-10/+10
|
* Test and fix.Armin Rigo2012-06-161-0/+10
|
* A passing test.Armin Rigo2012-06-161-0/+13
|
* Fix tests for windows.Armin Rigo2012-06-161-2/+14
|
* Rename ffi.rawload() to ffi.dlopen().Armin Rigo2012-06-141-13/+13
|
* Fix tests.Armin Rigo2012-06-121-2/+13
|
* 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.
* Complete the tests.Armin Rigo2012-06-031-2/+9
| | | | Works on _ffi_backend, but not on backend_ctypes...
* Shuffle tests.Armin Rigo2012-06-011-7/+7
|
* Variadic calls.Armin Rigo2012-06-011-1/+2
|
* Extent the API to allow None to variadic funcs.Armin Rigo2012-06-011-1/+3
| | | | | | It is somehow a simplification because some operations on pointers will return None to mean "the C NULL". Passing them to variadic functions as None makes sense.
* Not implementing this feature.Armin Rigo2012-06-011-2/+4
|
* Fix test.Armin Rigo2012-06-011-1/+1
|
* Import other tests here too.Armin Rigo2012-06-011-164/+167
|
* Finish to fix the existing tests.Armin Rigo2012-05-271-11/+11
|
* In-progressArmin Rigo2012-05-271-1/+1
|
* Rename malloc() to new().Armin Rigo2012-05-271-7/+16
| | | | | Keep naming the type we want a new() copy of, rather than the resulting pointer type.
* Small edits.Armin Rigo2012-05-261-0/+6
|
* More or less adapt the tests.Armin Rigo2012-05-261-12/+12
|
* Merge branch 'master' of github.com:arigo/ffifijal2012-05-231-0/+17
|\
| * Test and fix.Armin Rigo2012-05-231-0/+3
| |
| * Allow automatic conversion of str to "char*" for passing as a function ↵Armin Rigo2012-05-231-0/+14
| | | | | | | | argument (in addition to conversion of str to "const char*" that works more generally).
* | Start working on a verifierfijal2012-05-231-1/+1
|/
* Tests and fixesArmin Rigo2012-05-231-0/+9
|
* Improve the test.Armin Rigo2012-05-211-2/+4
|
* write_variable().Armin Rigo2012-05-211-0/+17
|
* This test passes out of the box now.Armin Rigo2012-05-211-1/+1
|
* read_variable() support.Armin Rigo2012-05-211-5/+3
|
* Improve the repr to show if a cdata "owns" memory or not.Armin Rigo2012-05-211-0/+1
|
* Rename this test file.Armin Rigo2012-05-211-0/+134