aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-06-02 13:50:05 +0200
committerThomas White <taw@physics.org>2022-06-02 13:50:05 +0200
commita904607e53974fad5f41d0b92ee89cae430186f5 (patch)
treee1896a29c70b350eae066e27a4a33de4f5adebc5 /tests
parent96c82df69425d5dcb14e5213c789824d9d9e2ea1 (diff)
tests/stream_roundtrip: Clean up stream afterwards
Diffstat (limited to 'tests')
-rw-r--r--tests/stream_roundtrip.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/stream_roundtrip.c b/tests/stream_roundtrip.c
index 29099b1a..d36191bb 100644
--- a/tests/stream_roundtrip.c
+++ b/tests/stream_roundtrip.c
@@ -28,6 +28,7 @@
#include <stdio.h>
+#include <unistd.h>
#include <stream.h>
#include <image.h>
@@ -136,5 +137,7 @@ int main(int argc, char *argv[])
}
}
+ unlink("stream_roundtrip.stream");
+
return fail;
}