tests/gem_close_race: Add igt_fixture block for igt_stop_hang_detector.

igt_fork_hang_detector() was called from a igt_fixture block, while its
counterpart (igt_stop_hang_detector) was called normally, causing
SIGTERM to be sent when running under check target.

Signed-off-by: Marius Vlad <marius.c.vlad@intel.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Marius Vlad <marius.c.vlad@intel.com>
This commit is contained in:
marius vlad 2016-04-26 17:30:59 +03:00 committed by Marius Vlad
parent 102943d1ba
commit abc8aa40de

View File

@ -243,5 +243,6 @@ igt_main
igt_subtest("gem-close-race")
threads(150);
igt_stop_hang_detector();
igt_fixture
igt_stop_hang_detector();
}