summaryrefslogtreecommitdiff
path: root/tests/functional-tests/ipc/test-bus-query.vala
blob: 997dc9e7ce23fe64ca151700d7b1a55cea479631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Tracker;
using Tracker.Sparql;

int
main( string[] args )
{
	try {
		TestApp app = new TestApp (new  Tracker.Bus.Connection ("org.freedesktop.Tracker1", null));

		return app.run ();
	} catch (GLib.Error e) {
		warning ("Couldn't perform test: %s", e.message);
		return 1;
	}
}