From: Daniel Vetter Date: Wed, 4 Sep 2013 11:25:28 +0000 (+0200) Subject: tests: add missing igt_exit() calls X-Git-Tag: intel-gpu-tools-1.4~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0550092c9a6440536c6070cdc447ed83f3062896;p=platform%2Fupstream%2Fintel-gpu-tools.git tests: add missing igt_exit() calls Forgotten while converting to subtests, then copy&pasted. Signed-off-by: Daniel Vetter --- diff --git a/tests/gem_persistent_relocs.c b/tests/gem_persistent_relocs.c index 5033874..bc1d52a 100644 --- a/tests/gem_persistent_relocs.c +++ b/tests/gem_persistent_relocs.c @@ -381,5 +381,5 @@ int main(int argc, char **argv) close(fd); } - return 0; + igt_exit(); } diff --git a/tests/gem_reloc_vs_gpu.c b/tests/gem_reloc_vs_gpu.c index baa7072..9f85e9c 100644 --- a/tests/gem_reloc_vs_gpu.c +++ b/tests/gem_reloc_vs_gpu.c @@ -384,5 +384,5 @@ int main(int argc, char **argv) close(fd); } - return 0; + igt_exit(); }