[PATCH] tests: Don't leave temporary files behind
Kristian Høgsberg
hoegsberg at gmail.com
Mon Dec 3 06:58:25 PST 2012
On Sun, Dec 02, 2012 at 10:42:11PM +0100, Sven Joachim wrote:
> Signed-off-by: Sven Joachim <svenjoac at gmx.de>
> ---
Thanks, that's a good fix, applied.
Kristian
> tests/connection-test.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/tests/connection-test.c b/tests/connection-test.c
> index d0113f1..45744a0 100644
> --- a/tests/connection-test.c
> +++ b/tests/connection-test.c
> @@ -447,6 +447,7 @@ TEST(connection_marshal_demarshal)
>
> data.value.h = mkstemp(f);
> assert(data.value.h >= 0);
> + unlink(f);
> marshal_demarshal(&data, (void *) validate_demarshal_h,
> 8, "h", data.value.h);
>
> @@ -480,6 +481,7 @@ TEST(connection_marshal_alot)
> strcpy(f, "/tmp/weston-tests-XXXXXX");
> data.value.h = mkstemp(f);
> assert(data.value.h >= 0);
> + unlink(f);
> marshal_demarshal(&data, (void *) validate_demarshal_h,
> 8, "h", data.value.h);
> }
> --
> 1.7.10.4
>
> _______________________________________________
> wayland-devel mailing list
> wayland-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/wayland-devel
More information about the wayland-devel
mailing list