- 20 Feb, 2019 1 commit
-
-
Arkadiusz Hiler authored
So we do not have to do any rename shenanigans in the build system and the .c files are easier to find. Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Petri Latvala <petri.latvala@intel.com> Signed-off-by:
Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by:
Petri Latvala <petri.latvala@intel.com>
-
- 16 Nov, 2018 1 commit
-
-
Arkadiusz Hiler authored
The drv_ tests are i915 specific, so let's move them to i915 directory and change the binary prefix to i915_. Additionally, while we at moving stuff around, let's rename module_reload to module_load and do the following cleanup with the subtests: basic-reload -> reload basic-no-display -> reload-no-display basic-reload-inject -> reload-with-fault-injection Cc: Martin Peres <martin.peres@linux.intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Petri Latvala <petri.latvala@intel.com> Signed-off-by:
Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by:
Chris Wilson <chris@chris-wilson.co.uk> Acked-by:
Martin Peres <martin.peres@linux.intel.com>
-
- 11 Sep, 2015 1 commit
-
-
Micah Fedke authored
Apply the new API to all call sites within the test suite using the following semantic patch: // Semantic patch for replacing drm_open_any* with arch-specific drm_open_driver* calls @@ identifier i =~ "\bdrm_open_any\b"; @@ - i() + drm_open_driver(DRIVER_INTEL) @@ identifier i =~ "\bdrm_open_any_master\b"; @@ - i() + drm_open_driver_master(DRIVER_INTEL) @@ identifier i =~ "\bdrm_open_any_render\b"; @@ - i() + drm_open_driver_render(DRIVER_INTEL) @@ identifier i =~ "\b__drm_open_any\b"; @@ - i() + __drm_open_driver(DRIVER_INTEL) Signed-off-by:
Micah Fedke <micah.fedke@collabora.co.uk> Signed-off-by:
Thomas Wood <thomas.wood@intel.com>
-
- 21 Aug, 2015 1 commit
-
-
Thomas Wood authored
Add a header that includes all the headers for the library. This allows reorganisation of the library without affecting programs using it and also simplifies the headers that need to be included to use the library. Signed-off-by:
Thomas Wood <thomas.wood@intel.com>
-
- 14 Aug, 2015 1 commit
-
-
Jesse Barnes authored
Fundamental and simple functionality. v2: make whole test basic (Daniel) add to .gitignore Reviewed-by:
Daniel Vetter <daniel@ffwll.ch> Signed-off-by:
Jesse Barnes <jbarnes@virtuousgeek.org>
-
- 09 Apr, 2015 1 commit
-
-
Shuang He authored
Or, it will cause piglit failure to run I-G-T test case Signed-off-by:
Shuang He <shuang.he@intel.com> Signed-off-by:
Daniel Vetter <daniel.vetter@intel.com>
-
- 25 Mar, 2015 1 commit
-
-
Jeff McGee authored
Avoid failing on older kernels where the GETPARAM interfaces don't exist. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89669Signed-off-by:
Jeff McGee <jeff.mcgee@intel.com>
-
- 13 Mar, 2015 2 commits
-
-
Daniel Vetter authored
Signed-off-by:
Daniel Vetter <daniel.vetter@intel.com>
-
Jeff McGee authored
New test core_getparams consists of 2 subtests, each one testing the ability of userspace to query the correct value of a GT config attribute: subslice total or EU total. drm/i915 implementation of these queries is required for Cherryview and Gen9+ devices (non- simulated). v2: Duplicate small amount of new libdrm functionality to avoid bumping libdrm version requirement (Daniel). Convert some igt_asserts to the appropriate comparison variants. Add a test description. v3: Actually use the LOCAL GETPARAM defines. Otherwise can't build against older libdrm as intended by v2. For: VIZ-4636 Signed-off-by:
Jeff McGee <jeff.mcgee@intel.com> Reviewed-by:
Zhigang Gong <zhigang.gong@linux.intel.com> Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-