From: Jens Georg Date: Wed, 19 Oct 2011 08:00:16 +0000 (+0200) Subject: test: Remove temporary file on start-up X-Git-Tag: RYGEL_0_13_0~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8cbc8634bdd1318df7b2642aa0657de8ed78950;p=profile%2Fivi%2Frygel.git test: Remove temporary file on start-up --- diff --git a/tests/rygel-http-post-test.vala b/tests/rygel-http-post-test.vala index 998204b..985ff1d 100644 --- a/tests/rygel-http-post-test.vala +++ b/tests/rygel-http-post-test.vala @@ -64,6 +64,9 @@ public class Rygel.HTTPPostTest : GLib.Object { } public virtual void run () throws Error { + // cleanup + var file = File.new_for_uri (MediaItem.URI); + FileUtils.remove (file.get_path ()); Timeout.add_seconds (3, this.on_timeout); this.server.message_received.connect (this.on_message_received); this.client.completed.connect (this.on_client_completed);