tests/gem_exec_parse: use gem_uses_aliasing_ppgtt

Suggested by Brad Volking.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter 2014-07-07 17:54:30 +02:00
parent d078035ca4
commit 80a4a4fd43

View File

@ -198,7 +198,7 @@ int fd;
igt_main
{
igt_fixture {
int parser_version = 0, has_ppgtt = 0;
int parser_version = 0;
drm_i915_getparam_t gp;
int rc;
@ -209,10 +209,7 @@ igt_main
rc = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
igt_require(!rc && parser_version > 0);
gp.param = I915_PARAM_HAS_ALIASING_PPGTT;
gp.value = &has_ppgtt;
rc = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
igt_require(!rc && has_ppgtt > 0);
igt_require(gem_uses_aliasing_ppgtt(fd));
handle = gem_create(fd, 4096);