summaryrefslogtreecommitdiff
path: root/tests/glibmm_bool_vector
Commit message (Collapse)AuthorAgeFilesLines
* Update the Free Software Foundation address in copyright noticesKjell Ahlstedt2017-08-301-2/+1
| | | | Bug 786824
* Run clang-format on tests.Murray Cumming2016-02-261-9/+11
|
* Tests: More nullptr instead of 0Kjell Ahlstedt2015-11-231-1/+1
|
* tests: Use EXIT_* for clarity.Murray Cumming2011-02-241-1/+1
| | | | * tests/*.cc: Use EXIT_SUCCESS rather than 0 because I think that is clearer.
* Actually run all tests, and check some failures.Murray Cumming2011-02-241-1/+8
| | | | | | | | | | | | | | | | | | | * tests/Makefile.am: Add all tests to TESTS so they are really run during make check, instead of just built. * tests/giomm_asyncresult_sourceobject/main.cc: * tests/giomm_ioerror/main.cc: * tests/giomm_simple/main.cc: * tests/glibmm_bool_arrayhandle/main.cc: * tests/glibmm_bool_vector/main.cc: * tests/glibmm_buildfilename/main.cc: * tests/glibmm_date/main.cc: * tests/glibmm_ustring_compose/main.cc: * tests/glibmm_valuearray/main.cc: * tests/glibmm_variant/main.cc: * tests/glibmm_vector/main.cc: Remove all use of std::cout by default, allowing it to be renabled by changing a line. Return (or) exit with EXIT_FAILURE after any use of std::cerr, so that make check can report it.
* Fixed code style.Murray Cumming2011-01-271-18/+18
|
* Added vectorutils.h.Krzesimir Nowak2011-01-271-0/+82
* glib/glibmm/vectorutils.[h|cc]: New files implementing an array, list, slist <-> std::vector convertions. It implements also a specialization for bool types. * glib/glibmm.h: Include vectorutils.h. * glib/glibmm/filelist.am: Added vectorutils to build. * tests/glibmm_vector/main.cc: New test for general vectorutils check. * tests/glibmm_bool_vector/main.cc: New test checking bool specializations. * tests/Makefile.am: Added above tests to build system.