summaryrefslogtreecommitdiff
path: root/tests/gem_unref_active_buffers.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2013-09-25 14:36:59 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-09-25 14:37:07 +0200
commitf3c54d0cb4744af9d58b5be45f574b625bbc8231 (patch)
tree9c4bd1af155ee0b1b51382a617109aa2e5f119b2 /tests/gem_unref_active_buffers.c
parent88ad6d7be8ab5741b7019a535952145c96577c9c (diff)
tests: use igt_assert/igt_require more
With the new _f variants we can replace almost all of them. Also remove a ton of checks for argc != 1, they're a bit useless ... Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/gem_unref_active_buffers.c')
-rw-r--r--tests/gem_unref_active_buffers.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/gem_unref_active_buffers.c b/tests/gem_unref_active_buffers.c
index f597183c..924769f2 100644
--- a/tests/gem_unref_active_buffers.c
+++ b/tests/gem_unref_active_buffers.c
@@ -60,10 +60,7 @@ int main(int argc, char **argv)
fd = drm_open_any();
bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
- if (!bufmgr) {
- fprintf(stderr, "failed to init libdrm\n");
- igt_fail(-1);
- }
+ igt_assert(bufmgr);
/* don't enable buffer reuse!! */
//drm_intel_bufmgr_gem_enable_reuse(bufmgr);
@@ -74,10 +71,7 @@ int main(int argc, char **argv)
* enough */
for (i = 0; i < 1000; i++) {
load_bo = drm_intel_bo_alloc(bufmgr, "target bo", 1024*4096, 4096);
- if (!load_bo) {
- fprintf(stderr, "failed to alloc target buffer\n");
- igt_fail(-1);
- }
+ igt_assert(load_bo);
BEGIN_BATCH(8);
OUT_BATCH(XY_SRC_COPY_BLT_CMD |