- 02 Jan, 2017 1 commit
-
-
Chris Wilson authored
Signed-off-by:
Chris Wilson <chris@chris-wilson.co.uk>
-
- 01 Sep, 2016 1 commit
-
-
Chris Wilson authored
Stop looking for an error for a valid combination. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=97562Signed-off-by:
Chris Wilson <chris@chris-wilson.co.uk>
-
- 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>
-
- 04 Dec, 2014 1 commit
-
-
Thomas Wood authored
Add more test descriptions based on exiting comments. Signed-off-by:
Thomas Wood <thomas.wood@intel.com>
-
- 22 Mar, 2014 1 commit
-
-
Daniel Vetter authored
Brought a few missing headers to light in ioctl_wrappers.h, too. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 11 Feb, 2014 1 commit
-
-
Daniel Vetter authored
Caught by the new nasty assert in igt_skip. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 08 Nov, 2013 1 commit
-
-
Daniel Vetter authored
This reverts commit 4a6a59f3.
-
- 05 Nov, 2013 1 commit
-
-
Daniel Vetter authored
Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 01 Nov, 2013 1 commit
-
-
Daniel Vetter authored
In the past new testcases with subtest often forgot to add the call to igt_exit at the end of their main() function. That is now caught with a bit more obnoxious asserts, but it's still a nuissance. This little igt_main macro takes care of that (and also of calling the subtest machinery initialization code correctly). If no one objects I'll roll this out for all the simple cases (i.e. those tests that don't have additional argv parsing on top of the subtest machinery). v2: Roll it out across the board. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 28 Oct, 2013 1 commit
-
-
Damien Lespiau authored
Signed-off-by:
Damien Lespiau <damien.lespiau@intel.com>
-
- 17 Oct, 2013 1 commit
-
-
Ben Widawsky authored
Signed-off-by:
Ben Widawsky <ben@bwidawsk.net>
-
- 03 Sep, 2013 1 commit
-
-
Daniel Vetter authored
We need it for mmapping to get at PROT_READ|WRITE anyway. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 19 Aug, 2013 2 commits
-
-
Chris Wilson authored
Signed-off-by:
Chris Wilson <chris@chris-wilson.co.uk>
-
Daniel Vetter authored
libdrm requirements are now up to it. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 14 Aug, 2013 3 commits
-
-
Daniel Vetter authored
Also sprinkle igt_assert and igt_require over the setup code to clean up code while at it. To avoid gcc getting upset about unitialized variables just move them out of main as global data (where they always get initialized to 0) - gcc can't see through our igt_fixture and igt_subtest maze properly. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
This is mostly important to get the SKIP reporting right, but I've found a few stragglers that wanted to get converted over to the igt result reporting completely. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 13 Aug, 2013 4 commits
-
-
Daniel Vetter authored
Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
Just a wholesale rollout for now, we can refine later on. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 12 Aug, 2013 2 commits
-
-
Daniel Vetter authored
Requested-by:
Chris Wilson <chris@chris-wilson.co.uk> Acked-by:
Damien Lespiau <damien.lespiau@intel.com> Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
To simplify things add a set of gem_check_<ring> functions which take care of this. Since I've opted for static inlines drmtest.h grew a few more header includes which was a neat opportunity to dump a few redundant #defines. This kills all the skipped_all hand-rolled logic we have. Signed-off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 18 Jul, 2013 1 commit
-
-
Damien Lespiau authored
Let's start by a small set of tests, to eventually consider running more. The current list should then be: gem_mmap gem_pread_after_blit gem_ring_sync_loop gem_ctx_basic gem_pipe_control_store_loop gem_storedw_loop_render gem_storedw_loop_blt gem_storedw_loop_bsd gem_render_linear_blits gem_tiled_blits gem_cpu_reloc gem_exec_nop gem_mmap_gtt v2 add (Daniel Vetter) gem_exec_bad_domains gem_exec_faulting_reloc gem_flink gem_reg_read gem_reloc_overflow gem_tiling_max_stride prime_* Signed-off-by:
Damien Lespiau <damien.lespiau@intel.com>
-
- 18 Jun, 2012 1 commit
-
-
Ben Widawsky authored
Signed-off-by:
Ben Widawsky <ben@bwidawsk.net>
-
- 14 Jun, 2012 1 commit
-
-
Ben Widawsky authored
Signed-off-by:
Ben Widawsky <ben@bwidawsk.net>
-
- 10 Jan, 2012 5 commits
-
-
Daniel Vetter authored
Signed-Off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
gem_sync just does a gtt sync by using set_domain(GTT, GTT). Signed-Off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
Signed-Off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
Astonishing how many different function signatures are possible for something that simple. Signed-Off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
Daniel Vetter authored
Signed-Off-by:
Daniel Vetter <daniel.vetter@ffwll.ch>
-
- 14 Dec, 2011 1 commit
-
-
Chris Wilson authored
gem_exec_nop.c: In function ‘exec’: gem_exec_nop.c:101:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] Propagate the failure and exit(1).
-
- 29 Jan, 2011 1 commit
-
-
Chris Wilson authored
Signed-off-by:
Chris Wilson <chris@chris-wilson.co.uk>
-