[tracker/gdbus: 20/21] functional-test: Simplify error handling in query tests
- From: Martyn James Russell <mr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/gdbus: 20/21] functional-test: Simplify error handling in query tests
- Date: Wed, 27 Oct 2010 17:04:51 +0000 (UTC)
commit 2c1aaf172aff209a47de5e0f6f14b410b3f0acae
Author: Jürg Billeter <j bitron ch>
Date: Mon Oct 25 14:41:24 2010 +0200
functional-test: Simplify error handling in query tests
tests/functional-tests/ipc/test-bus-query.vala | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/tests/functional-tests/ipc/test-bus-query.vala b/tests/functional-tests/ipc/test-bus-query.vala
index 1867fed..d8a198e 100644
--- a/tests/functional-tests/ipc/test-bus-query.vala
+++ b/tests/functional-tests/ipc/test-bus-query.vala
@@ -4,7 +4,12 @@ using Tracker.Sparql;
int
main( string[] args )
{
- TestApp app = new TestApp (new Tracker.Bus.Connection ());
+ try {
+ TestApp app = new TestApp (new Tracker.Bus.Connection ());
- return app.run ();
+ return app.run ();
+ } catch (GLib.Error e) {
+ warning ("Couldn't perform test: %s", e.message);
+ return 1;
+ }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]