summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Put Autoconf, Automake, Libtool droppings in /build-auxSimon McVittie2013-10-091-0/+1
| | | | | | | Equivalent to MC commit c3cba93. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=70045 Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
* .gitignore: Automake 1.13 installs /test-driverSimon McVittie2013-06-111-0/+1
| | | | | | Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Xavier Claessens <xavier.claessens@collabora.co.uk> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=65517
* add telepathy-glib/version.h to gitignoreXavier Claessens2012-05-081-0/+1
|
* Add an example dbus tube offerer and accepter.Will Thompson2012-03-301-0/+2
|
* Support building for AndroidDerek Foreman2011-11-211-0/+1
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=42447
* tests: add --enable-installed-testsAlban Crequy2011-11-041-2/+6
| | | | | | | | | | | This configure option makes it possible to install the tests in /usr/lib/telepathy-glib-tests and run them without the sources. The dbus configuration moved to tests/dbus/dbus-installed for the installed tests and is duplicated into tests/dbus/dbus-uninstalled for the uninstalled tests. https://bugs.freedesktop.org/show_bug.cgi?id=41455
* gitignore: updatedJonny Lamb2011-07-281-0/+2
| | | | | | Cheers, emacs. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Mostly silence tests' output, unless they fail or stdout is not a ttySimon McVittie2010-10-211-0/+1
|
* Add tmp-introspect* directories to .gitignoreDanielle Madeley2010-10-111-0/+1
|
* Merge branch 'tp-stream-tube-29218'Guillaume Desmottes2010-10-061-0/+2
|\
| * update gitignoreGuillaume Desmottes2010-09-281-0/+2
| |
* | .gitignore: ignore release-mailSimon McVittie2010-10-041-0/+1
|/
* Alter generation of version.xml to work when building out-of-treeSimon McVittie2010-09-201-0/+1
| | | | It's in the srcdir, because that's how gtk-doc works...
* Update the build system to build the Vala bindings (when enabled).Travis Reitter2010-06-171-0/+4
|
* fd.o #27878: glib-gtypes-generator: output gtk-doc separatelySimon McVittie2010-04-301-2/+3
| | | | | | gtk-doc will happily document all .h files, so we don't need the doc-comments to be in the same files as the declarations or implementations.
* docs: build the .types file automatically, and delete it from gitSimon McVittie2010-04-291-0/+1
|
* Ignore the generated .gir and .typelib files from GObject-IntrospectionSimon McVittie2010-04-281-0/+2
|
* Add a copy of the callable example CM, to be converted into a Call exampleSimon McVittie2009-12-141-0/+1
| | | | | | | | | Changes relative to callable: * re-namespacing, re-indentation * memory-leak fixes from my valgrind branch * DTMF support removed, since the DTMF interface isn't applicable to Call yet * stub ExampleCallContent object added (doesn't do anything yet)
* Add stub 'extensions' directorySimon McVittie2009-12-141-0/+1
| | | | | | This builds a library for future interfaces (Call will be the first), so we can port telepathy-glib's example code to them even though the interfaces aren't yet stable.
* .gitignore: ignore intermediate files for gcov 4.4Simon McVittie2009-12-141-0/+1
|
* Relax glob in .gitignore to ignore distdir for current as well as old versionsSimon McVittie2009-12-031-1/+1
|
* Add a top-level target to run valgrind, and make it log the outputSimon McVittie2009-12-031-0/+1
|
* Don't let MC5 activate itself during AM tests.David Laban2009-12-021-0/+1
| | | | | | | | | | This sets up dbus to use a session.conf which doesn't include the standard services. This is the same trick that gabble's twisted tests use. I'm not really sure whether tests/dbus/dbus-1/session.conf.in is the best place to put the new file. If anyone thinks there is a better place for it, shout.
* Move from shave to use automake 1.11's silent rules feature.Jonny Lamb2009-09-241-2/+0
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* Prepare release 0.7.31Simon McVittie2009-05-271-1/+2
|
* Moved tp-glib to use shave and made make output legible.Jonny Lamb2009-04-181-0/+2
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* tests: remove test- prefix from all sourcesSimon McVittie2009-03-171-35/+2
| | | | | As well as making tab completion work better, this means .gitignore can be much simpler.
* Add setup code for a TpConnectionManager regression testSimon McVittie2009-02-121-0/+1
|
* Add a feature test for the self handle (fd.o#17519)Simon McVittie2009-02-101-0/+1
|
* Add a test for glib-gtypes-generator.pySimon McVittie2009-01-301-0/+2
|
* Add a test that asserts that TP_ERRORS contains every error defined by the specSimon McVittie2009-01-301-0/+1
| | | | | | | | | | | | | | | | | | | | | Now that we don't auto-generate TP_ERRORS, we need to verify that errors added in the spec get added to the TpError enum by the maintainer when a new spec is imported. This is done by generating a test that will be run during `make check`. Sample output: /* org.freedesktop.Telepathy.Error.Busy */ value_by_name = g_enum_get_value_by_name (klass, "TP_ERROR_BUSY"); value_by_nick = g_enum_get_value_by_nick (klass, "Busy"); g_assert (value_by_name != NULL); g_assert (value_by_nick != NULL); g_assert_cmpint (value_by_name->value, ==, TP_ERROR_BUSY); g_assert_cmpint (value_by_nick->value, ==, TP_ERROR_BUSY); g_assert_cmpstr (value_by_name->value_name, ==, "TP_ERROR_BUSY"); g_assert_cmpstr (value_by_nick->value_name, ==, "TP_ERROR_BUSY"); g_assert_cmpstr (value_by_name->value_nick, ==, "Busy"); g_assert_cmpstr (value_by_nick->value_nick, ==, "Busy");
* Add a regression test for GetStatuses and the Statuses propertySimon McVittie2009-01-291-0/+1
|
* Add a feature test for emitting ConnectionErrorSimon McVittie2009-01-281-0/+1
|
* Add stub test for TpChannel's Group supportWill Thompson2009-01-071-0/+1
|
* test-group-mixin: Add stubWill Thompson2009-01-071-0/+1
|
* Merge commit 'wjt/bug-19101'Simon McVittie2009-01-071-0/+1
|\
| * Add a regression test for fd.o #19101Will Thompson2009-01-071-0/+1
| |
* | .gitignore: ignore the Messages mixin testSimon McVittie2009-01-071-0/+1
|/
* Ignore test-message-mixin binaryWill Thompson2008-12-201-0/+1
|
* Add ctags and cscope files to .gitignoreWill Thompson2008-12-201-0/+2
|
* Add tests/dbus/test-connection-bug-18845 to gitignoreXavier Claessens2008-12-151-0/+1
|
* Add a simple regression test for the Contacts interfaceSimon McVittie2008-10-311-0/+1
| | | | | It exercises all the "easy" interfaces, but not SimplePresence or Capabilities yet.
* Add a test for respawning text channels in the Echo example CMSimon McVittie2008-10-301-0/+1
|
* .gitignore: add test-text-mixinSimon McVittie2008-10-301-0/+1
|
* TpContact: add a regression test for basic functionalitySimon McVittie2008-10-211-0/+1
|
* Merge branch 'trivia'Simon McVittie2008-10-141-0/+1
|\
| * lcov.am: remove telepathy-glib-scan.c from records if it existsSimon McVittie2008-10-141-0/+1
| | | | | | | | | | | | | | It only exists temporarily, during the gtkdoc run, so by the time the HTML is generated, the source file has gone. This change lets "make clean ; make lcov-check" succeed.
* | Add a test for handle request/hold/unhold functionalitySimon McVittie2008-10-131-0/+1
|/
* Add some Makefile rules for code coverage checks using lcovSimon McVittie2008-10-131-0/+2
|
* .gitignore: ignore GCov-generated files (for --enable-compiler-coverage)Simon McVittie2008-10-071-0/+2
|