Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-02-06 | Add config.h include in all source files | Xavier Claessens | 1 | -0/+2 | |
2011-11-16 | Use _unref instead of _free _destroy when possible. | Xavier Claessens | 1 | -7/+7 | |
Replace g_(ptr_)array_free (foo, TRUE) and g_hash_table_destroy with respectively g_(ptr_)array_unref (foo) and g_hash_table_unref. I used this command to generate this patch: for f in `find -name "*.c"`; do sed -i $f -re 's/g_ptr_array_free \(([^ ,]+), TRUE\)/g_ptr_array_unref \(\1\)/'; done See Danielle's blog for explanation of possible bug _free can do: http://blogs.gnome.org/danni/2011/11/16/mistakes-with-g_value_set_boxed/ | |||||
2011-05-12 | use tp_tests_init() in most tests | Guillaume Desmottes | 1 | -2/+1 | |
2010-10-26 | Add a 10 second timeout to all tests that spin the main loop | Simon McVittie | 1 | -0/+1 | |
... and probably also some tests that don't, but adding the calls was easier than checking :-) | |||||
2010-06-04 | Add the TpTests namespace to tests/lib/params-cm | Travis Reitter | 1 | -21/+21 | |
2010-06-04 | Add the TpTests namespace to tests/lib/util | Travis Reitter | 1 | -4/+5 | |
2010-06-01 | Use test_proxy_run_until_prepared instead of ↵ | Simon McVittie | 1 | -1/+1 | |
test_connection_manager_run_until_ready | |||||
2010-04-27 | Use test_object_new_static_class more | Simon McVittie | 1 | -1/+1 | |
2010-03-30 | tests: use test_dbus_daemon_dup_or_die(), avoid tp_get_bus() (except in dbus.c) | Simon McVittie | 1 | -2/+1 | |
This is in preparation for deprecating tp_get_bus (fd.o #18832). | |||||
2010-03-09 | params-cm test: improve coverage | Simon McVittie | 1 | -0/+180 | |
The tests for invalid input allow the parameters to have been created and freed (current behaviour), or never created (potential future behaviour, with Protocol objects). | |||||
2010-03-09 | params-cm.c: test_set_params: avoid inappropriate use of ↵ | Simon McVittie | 1 | -1/+1 | |
tp_g_value_slice_new_static_boxed This boxed object isn't static. | |||||
2010-03-09 | params-cm.c: use test_connection_manager_run_until_ready | Simon McVittie | 1 | -15/+1 | |
2010-03-09 | param_connection_manager_steal_params_last_conn: rename from _get_ and have ↵ | Simon McVittie | 1 | -1/+1 | |
slightly safer semantics | |||||
2010-03-09 | tests/dbus/params-cm.c: simplify a little | Simon McVittie | 1 | -4/+3 | |
2009-03-26 | clear error once tested | Guillaume Desmottes | 1 | -0/+1 | |
2009-03-26 | fix test description | Guillaume Desmottes | 1 | -1/+1 | |
2009-03-26 | rename free_cm_params to param_connection_manager_free_params | Guillaume Desmottes | 1 | -1/+1 | |
2009-03-26 | test all support types of param | Guillaume Desmottes | 1 | -4/+50 | |
2009-03-26 | add dbus/params-cm.c | Guillaume Desmottes | 1 | -0/+152 | |
Start to test CM parameters |