summaryrefslogtreecommitdiff
path: root/tests/scanner/Regress-1.0-C-expected
Commit message (Collapse)AuthorAgeFilesLines
* scanner: Fix allow-none on return valuesGarrett Regier2015-09-292-0/+60
| | | | | | | | The optional annotation was being applied which is invalid for return values. https://bugzilla.gnome.org/show_bug.cgi?id=752029 Signed-off-by: Garrett Regier <garrett.regier@riftio.com>
* tests: Add expected files for previous commitColin Walters2015-09-281-0/+30
|
* regress: Add a test for (nullable)Colin Walters2015-09-031-0/+38
| | | | Related to: https://bugzilla.gnome.org/719966
* test: Add a test for GList containing GType.Christoph Reiter2015-07-051-0/+38
| | | | | | See https://bugzilla.gnome.org/show_bug.cgi?id=749696 https://bugzilla.gnome.org/show_bug.cgi?id=751978
* tests: fix make distcheckDieter Verfaillie2015-06-202-0/+62
| | | | | Add missing doc-tool tests, fixes "make distcheck" breakage introduced by 09daa28c5b4625b6f274b3b340bc85e33bef80b5
* tests: Change names with case-only distinctionPhilip Chimento2014-10-011-2/+2
| | | | | | | | | | | | | | | | | | RegressIntSet and RegressIntset, aliases of one another, were causing two documentation pages to be built by the documentation tests that were named identically except for letter case. On OSX and Windows, the most common filesystems are case-insensitive, and those two files can't exist in the same directory on case- insensitive filesystems. That caused the tests to fail. It also caused problems when checking out the repository, because the expected documentation set also contains those files. This commit fixes the symptom (so that JHbuild will stop erroring out on this module) but not the problem of generating a documentation set for two identifiers which differ (perfectly legally) only by case. https://bugzilla.gnome.org/show_bug.cgi?id=725264
* scanner: Honor nested types on array declarations as wellColin Walters2014-09-051-0/+15
| | | | | | | | | We have special code to look at (type GLib.List(utf8)), but (type GLib.PtrArray(utf8)) didn't work. This allows NetworkManager to annotate the ActiveConnections property. https://bugzilla.gnome.org/show_bug.cgi?id=733879
* tests: Add regression test for callbacks with an inout arrayGarrett Regier2014-08-072-0/+71
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=702508
* Parse and expose ownership transfer for instance parametersGiovanni Campagna2014-07-031-0/+38
| | | | | | | | | | | Knowing the ownership transfer for instance parameters is necessary for correct memory management of functions which "eat" their instance argument, such as g_dbus_method_invocation_return_*. Parse this information from the gir file and store in the typelib, and then provide new API on GICallableInfo to retrieve this. https://bugzilla.gnome.org/show_bug.cgi?id=729662
* doctool: update testsGiovanni Campagna2014-03-055-15/+15
|
* g-ir-compiler: Add support for callback fields on GObjectsSimon Feltman2014-02-272-0/+38
| | | | | | | | | | | | | | | | | Use ParseState enum instead of a boolean for the ParseContexts embedded_type flag. This allows specific tracking of the embedded type currently being parsed which can now either be STATE_STRUCT_FIELD or STATE_CLASS_FIELD (or allow for future expansion). Add ParseState::STATE_NONE as the default for this field. Fix GObject FieldBlob validation to take into account the sizeof CallbackBlobs (copied from the struct validator). Add static g_object_info_get_field_offset which parallels g_struct_info_get_field_offset which is needed since callback fields may vary in size. https://bugzilla.gnome.org/show_bug.cgi?id=725198
* doctool: update testsGiovanni Campagna2014-02-2636-130/+253
|
* scanner: support virtual functions with a typedef-ed callbackGiovanni Campagna2014-02-205-0/+136
| | | | | | | | | | The field of a callback need not be anonymous, it could be a typedef, with a proper Type node. Fixes TelepathyGlib.BaseClient having no virtual functions (and probably others) https://bugzilla.gnome.org/show_bug.cgi?id=723439
* doctool: update reference testsGiovanni Campagna2014-02-20627-6712/+5606
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=724735
* scanner: Don't barf on anonymous unionsColin Walters2013-10-302-0/+50
| | | | | | | | I'd like to be able to use this inside GTK+. See: https://bugzilla.gnome.org/show_bug.cgi?id=711153 https://bugzilla.gnome.org/show_bug.cgi?id=711157
* giscanner: Correctly consume field annotations on structsStef Walter2013-10-281-0/+25
| | | | | | | | A hidden exception was being thrown (which we now log), due to fields being treated as function parameters. Fixed to make field array annotations be transformed and written out to the gir correctly. https://bugzilla.gnome.org/show_bug.cgi?id=710561
* giscanner: write virtual method instance parameter docs to .gir fileDieter Verfaillie2013-10-082-2/+2
|
* giscanner: don't generate synthetic names for '...' parameterDieter Verfaillie2013-10-081-1/+1
| | | | tests/warn/unkown-parameter.h:41 still passes with this...
* giscanner: honor line and paragraph breaks in description fieldsDieter Verfaillie2013-10-083-3/+6
| | | | | | | | | GTK-Doc parameter description fields are allowed to span multiple lines, tag description fields are allowed to span multiple lines and paragraphs. A tool fixing/rewriting GTK-Doc comment blocks in source files would need to have description fields parsed and stored (almost) exactly as they appear in the source file.
* Revert addition of __int128 testsColin Walters2013-05-071-25/+0
| | | | | | | | It's not available on 32 bit architectures, which is a pain for our testing because we can't easily make Regress architecture independent. This reverts commit ca93f8474c9f6ca184d0b5806a4e459ad3dcd132.
* Add expected doc files for previous commitColin Walters2013-05-071-0/+25
|
* tests: add missing expected generated documentationDieter Verfaillie2013-04-222-0/+82
| | | | | | | | a09072bd1f75dfc7497ed599e03e331bff411fd4 introduced new symbols in tests/scanner/regress.[ch] but was missing the expected generated documentation. https://bugzilla.gnome.org/show_bug.cgi?id=698616
* tests: fix a too wide search/replaceDieter Verfaillie2013-04-094-4/+4
| | | | | | Changed by accident in 2df621c53cdffbc3c43c3745947ee859020c8338 https://bugzilla.gnome.org/show_bug.cgi?id=697613
* Add test case for signal with a C array and length argumentMartin Pitt2013-02-271-0/+44
| | | | By-product of https://bugzilla.gnome.org/show_bug.cgi?id=662241.
* doctool: Use builtin namespace walkerColin Walters2013-02-2620-1/+643
| | | | | | Rather than hand-rolling our own. This ensures we traverse all nodes. https://bugzilla.gnome.org/show_bug.cgi?id=694593
* scanner: Synthesize argument names if we don't see oneColin Walters2013-02-261-1/+1
| | | | | | | While this is a bit lame, we need to do something. We preserve the warning message. https://bugzilla.gnome.org/show_bug.cgi?id=694593
* tests: Add RegressTestReferenceEnum to the doc testsJasper St. Pierre2013-02-181-0/+25
| | | | I really messed this one up :(
* doctool: Use format_xref to format some links to pagesJasper St. Pierre2013-02-15446-446/+448
| | | | | | We don't do a full 100% conversion for all link tags, yet, because I don't want to break too much here. This may come later.
* doctool: Don't link to the namespace from the namespace pageJasper St. Pierre2013-02-151-2/+1
|
* docwriter: Don't render constants for nowJasper St. Pierre2013-02-1518-451/+0
| | | | | | Clutter has thousands of keysym constants, and until we get them all on one page, this is just tons of tiny files that are just noise.
* doctool: Fix use of <dl> tag in templatesJasper St. Pierre2013-02-14325-2172/+3694
| | | | This isn't legal Mallard
* tests: Use Regress GIR for doctoolJasper St. Pierre2013-02-11465-0/+18961
This makes us test a lot more functionality in the doc tool, and removes the need to have a lot of different test libraries, and different test infrastructure.