summaryrefslogtreecommitdiffstats
path: root/gobject/tests-misc.js
Commit message (Collapse)AuthorAgeFilesLines
* generator: Rename 'add_drive_opts' API to 'add_drive'.Richard W.M. Jones2012-07-141-1/+1
| | | | | | By using the once_had_no_optargs flag, this change is backwards compatible for callers (except Haskell, PHP and GObject as discussed in earlier commit).
* tests: Rename test0* functions as internal_test*.Richard W.M. Jones2012-07-111-1/+1
| | | | | The internal_* prefix is reserved for internal functions such as these tests.
* gobject: Implement libguestfs events as signalsMatthew Booth2012-04-261-0/+33
| | | | | | | | | | Implement libguestfs events as GObject signals. Callback arguments are passed in a boxed object. Note that this patch fixes the length of the uint64_t array in the callback arguments at 16, whereas it is actually arbitrary length. This is to make it introspectable. There is currently no way to pass an arbitrary length array to a callback, and have its type introspected.
* gobject: Add an explicit close callMatthew Booth2012-01-261-0/+41
This change binds guestfs_close(). It consequently results in RConstOptString being able to throw an error.