summaryrefslogtreecommitdiff
path: root/testing
Commit message (Expand)AuthorAgeFilesLines
* fix python 3.x compatibility for test_zdistfix-zdist-testFelix Yan2015-08-201-3/+4
* Windows test fixArmin Rigo2015-08-191-1/+4
* From https://github.com/pyca/cryptography/pull/2156: add the pre_run()Armin Rigo2015-08-011-1/+16
* Support "\" escapes in a #defineArmin Rigo2015-07-301-0/+12
* Handle line continuations in the "//" commentsArmin Rigo2015-07-301-0/+17
* Issue #214: parse function declarations like "int foo(void_t);" whereArmin Rigo2015-07-301-0/+7
* In non-C++ mode, we need a warning to be turned into an errorArmin Rigo2015-07-091-0/+3
* Python 3 compatibilityArmin Rigo2015-07-063-5/+6
* Explicitly protect against variables that end up resolving at address NULL,Armin Rigo2015-07-061-0/+19
* Port the new_allocator() work from pypyArmin Rigo2015-07-062-0/+163
* Show a semi-hackish way to get at the value of the arguments when theArmin Rigo2015-07-041-2/+5
* New argument "onerror" on ffi.callback()Armin Rigo2015-07-042-0/+45
* Use the logic in cgc.c to implement ffi.gc() also for the pure PythonArmin Rigo2015-07-041-2/+5
* Refactor the way global variables are accessed. Now, every access toArmin Rigo2015-07-032-13/+84
* Write a test for issue #212Armin Rigo2015-07-031-0/+12
* Issue #207: fix for anonymous enums with ffi.include()Armin Rigo2015-06-291-0/+11
* ffi.include(ffi) doesn't make sense and hangs right nowArmin Rigo2015-06-291-0/+4
* Test and fix: Python 3.5 (at least the current beta) is unhappyArmin Rigo2015-06-261-0/+2
* Fix tests for Python 3Armin Rigo2015-06-232-1/+3
* Add a passing testArmin Rigo2015-06-231-0/+16
* Redo lib.__dict__, like in the in-line mode. Figured out that it's likeArmin Rigo2015-06-191-1/+10
* "from foo.lib import *"Armin Rigo2015-06-152-4/+15
* Allow "from _cffimodule.lib import a, b, c". (thanks DanielHolth on irc)Armin Rigo2015-06-152-0/+21
* Explicitly complain if we find 'typedef int... t;' in a call to verify()Armin Rigo2015-06-151-0/+12
* Correctly locate py2.7 debug build extensionsStefano Rivera2015-06-141-1/+6
* on pypy, the _cffi_backend module doesn't have a __file__ at allArmin Rigo2015-06-121-0/+2
* Make the test more preciseArmin Rigo2015-06-091-3/+4
* Add some checks that will fail in PyPyArmin Rigo2015-06-091-0/+4
* Support "[][...]", "[5][...]", etc.Armin Rigo2015-06-071-0/+33
* Some detailsArmin Rigo2015-06-072-28/+21
* Fix the logic to handle ffi.gc(x) being called several times with equalArmin Rigo2015-06-062-0/+98
* In the type parser, escape error messages and don't display the inputArmin Rigo2015-06-021-0/+6
* Test and fix for ffi.verify() only on PyPy (thanks Alex Gaynor forArmin Rigo2015-06-021-0/+8
* Issue #204: second tryArmin Rigo2015-06-011-8/+11
* Backed out changeset 3b9f80a475ee: not supported on python 2.6Armin Rigo2015-06-011-8/+7
* Issue #204: Spinkle "--no-user-cfg" in this test to avoid gettingArmin Rigo2015-06-011-7/+8
* Windows test fix, and documentation about ffi.dlopen()'s restrictionArmin Rigo2015-06-011-1/+5
* Issue #203: add keyword arguments to ffi.string(), ffi.buffer(),Armin Rigo2015-06-011-1/+11
* Tests for ffi.dlopen(None)Armin Rigo2015-06-011-1/+9
* Actually, we can test directly that getptr() returns the address of theArmin Rigo2015-05-311-4/+1
* Trying to change the test to match the real use case more closelyArmin Rigo2015-05-311-13/+11
* don't use A0, B0, CC0, D0 because termios.h might be included and it hasArmin Rigo2015-05-311-6/+8
* Remove old 'flags=' which is just ignored by distutilsArmin Rigo2015-05-311-2/+1
* Add a test that is hopefully passing on all platformsArmin Rigo2015-05-311-0/+10
* Check that the types declared with "typedef int... foo_t;" are reallyArmin Rigo2015-05-302-6/+9
* pypy compatArmin Rigo2015-05-301-2/+4
* Issue 200: bad interaction between "ffi.typeof(function_t)" andArmin Rigo2015-05-301-0/+13
* Issues 69, 73: add the syntax "typedef int... foo_t;".Armin Rigo2015-05-302-1/+74
* Issue 75: implement multidimensional use of '[...]'.Armin Rigo2015-05-301-0/+25
* add a passing testArmin Rigo2015-05-281-0/+15