summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Van Hoof <philip@codeminded.be>2011-03-15 12:35:32 +0100
committerPhilip Van Hoof <philip@codeminded.be>2011-03-29 10:21:57 +0200
commit53beadefd451b689fb2f086559f31547a365812f (patch)
tree6db9eb2647edce0307031fb8278426f703579303
parent5273e602b94e2d34197c201003d34c12f22a24f3 (diff)
downloadtracker-53beadefd451b689fb2f086559f31547a365812f.tar.gz
functional-tests: Improved output, add amount of contacts added
-rw-r--r--tests/functional-tests/ipc/test-insert-or-replace.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functional-tests/ipc/test-insert-or-replace.vala b/tests/functional-tests/ipc/test-insert-or-replace.vala
index 097cb279c..554c8d301 100644
--- a/tests/functional-tests/ipc/test-insert-or-replace.vala
+++ b/tests/functional-tests/ipc/test-insert-or-replace.vala
@@ -142,7 +142,7 @@ INSERT { GRAPH <urn:uuid:08070f5c-a334-4d19-a8b0-12a3071bfab9> {
int
main( string[] args )
{
- uint i, y = 100;
+ uint i, y = 1000;
Timer t1 = new Timer ();
Timer t2 = new Timer ();
Connection c;
@@ -154,7 +154,7 @@ main( string[] args )
}
t1.stop ();
- print ("REPLACE: %f\n", t1.elapsed());
+ print ("REPLACE: %u contacts: %f\n", y, t1.elapsed());
t2.start ();
@@ -163,7 +163,7 @@ main( string[] args )
}
t2.stop ();
- print ("ORIGINAL: %f\n", t2.elapsed());
+ print ("ORIGINAL: %u contacts: %f\n", y, t2.elapsed());
return 0;
}