diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-09-04 13:25:28 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-09-04 13:25:28 +0200 |
commit | 0550092c9a6440536c6070cdc447ed83f3062896 (patch) | |
tree | e1b626b2a2197be2305ba847ba761d467f99981d | |
parent | 5113df7891e7ca323bd74449b7d649d5bd0b80a9 (diff) |
tests: add missing igt_exit() calls
Forgotten while converting to subtests, then copy&pasted.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | tests/gem_persistent_relocs.c | 2 | ||||
-rw-r--r-- | tests/gem_reloc_vs_gpu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/gem_persistent_relocs.c b/tests/gem_persistent_relocs.c index 50338747..bc1d52a4 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 baa7072f..9f85e9cd 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(); } |