aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/voidholder_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Added a case for VoidHolder test that uses a native Python object.Marcelo Lira2010-08-031-1/+9
| | | | | The test stores a native Python object as a void pointer in C++ and takes it back.
* chmod -x on all tests.Hugo Parente Lima2010-06-161-0/+0
| | | | We can't run they standalone anyway, because they need some env vars to be exported like PYTHONPATH.
* Fixes Converter<void*>::toPython method.Marcelo Lira2010-03-231-0/+6
| | | | | | | | The void* converter transforms a C++ NULL pointer in a Python None. An unit test for this case was added as well. Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewed by Bruno Araújo <bruno.araujo@openbossa.org>
* Adds support for void pointer conversions.Marcelo Lira2010-01-281-0/+50
A new converter specialization was added to deal with 'void*' conversions. In the case of C++ generating a unknown void pointer a BaseWrapper is used to hold the said pointer. There is a new test for this situation. Reviewed by Renato Araújo <renato.filho@openbossa.org>