summaryrefslogtreecommitdiff
path: root/tests/kms_pipe_crc_basic.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2013-12-06 10:48:25 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-12-06 14:51:14 +0100
commita4d3a6c013664da062cdff9ead7bc9ab86b33caa (patch)
treef1ceefed5573bb8b3e4ad0986a5e7415e7945316 /tests/kms_pipe_crc_basic.c
parentc1b7e722dafdbddcce2bec230e3faf8b4fe6f123 (diff)
lib: make igt_pipe_crc_start never fail
It's what callers expect - pipe_crc_new is the function where we pass a potential failure back to callers. Reviewed-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/kms_pipe_crc_basic.c')
-rw-r--r--tests/kms_pipe_crc_basic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 90d9b940..3fc59344 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -180,7 +180,7 @@ static void test_read_crc(data_t *data, int pipe, unsigned flags)
continue;
valid_connectors++;
- igt_assert(igt_pipe_crc_start(pipe_crc));
+ igt_pipe_crc_start(pipe_crc);
/* wait for 3 vblanks and the corresponding 3 CRCs */
igt_pipe_crc_get_crcs(pipe_crc, 3, &crcs);