draw-prim-rate: test triangle strips with primitive restart but no restarts
[piglit.git] / README.md
blobeba3fc2de2dc6f6ce136d52f4fb2cadd8ac727a0
2 Piglit
3 ======
5 1. [About](#1-about)
6 2. [Setup](#2-setup)
7 3. [How to run tests](#3-how-to-run-tests)
8 4. [Available test sets](#4-available-test-sets)
9 5. [How to write tests](#5-how-to-write-tests)
10 6. [Integration](#6-integration)
13 ## 1. About
15 Piglit is a collection of automated tests for OpenGL and OpenCL
16 implementations.
18 The goal of Piglit is to help improve the quality of open source
19 OpenGL and OpenCL drivers by providing developers with a simple means to
20 perform regression tests.
22 The original tests have been taken from
23 - Glean ( http://glean.sf.net/ ) and
24 - Mesa ( http://www.mesa3d.org/ )
27 ## 2. Setup
29 First of all, you need to make sure that the following are installed:
31   - Python >=3.6
32   - Python Mako module
33   - numpy (http://www.numpy.org)
34   - cmake (http://www.cmake.org)
35   - GL, glu and glut libraries and development packages (i.e. headers)
36   - X11 libraries and development packages (i.e. headers)
37   - waffle (http://www.waffle-gl.org)
39 Optionally, you can install the following:
41   - lxml. An accelerated python xml library using libxml2 (http://lxml.de/)
42   - simplejson. A fast C based implementation of the python json library.
43     (https://simplejson.readthedocs.org/en/latest/)
44   - jsonstreams. A JSON stream writer for python.
45     (https://jsonstreams.readthedocs.io/en/stable/)
46   - VkRunner. A shader script testing tool for Vulkan.
47     (https://github.com/igalia/vkrunner)
49 For testing the python framework using `py.test unittests/framework`
50   - py.test. A python test framework, used for running the python framework
51     test suite.
52   - tox. A tool for testing python packages against multiple configurations of
53     python (https://tox.readthedocs.org/en/latest/index.html)
54   - mock. A python module for mocking other python modules. Required only for
55     unittests (https://github.com/testing-cabal/mock)
56   - psutil. A portable process library for python
57   - jsonschema. A JSON validator library for python
58   - pytest-mock. A mock plugin for pytest
59   - pytest-pythonpath. A plugin for pytest to do automagic with sys.path
60   - pytest-raises. A plugin for pytest that allows decorating tests that expect
61     failure
62   - pytest-warnings. A plugin for pytest that handles python warnings
63   - pytest-timeout. A plugin for pytest to timeout tests.
65 Now configure the build system:
67     $ ccmake .
69 This will start cmake's configuration tool, just follow the onscreen
70 instructions. The default settings should be fine, but I recommend you:
71  - Press 'c' once (this will also check for dependencies) and then
72  - Set `CMAKE_BUILD_TYPE` to `Debug` Now you can press 'c' again and then 'g' to generate the build system.
73 Now build everything:
75     $ make
78 ### 2.1 Cross Compiling
80 On Linux, if cross-compiling a 32-bit build on a 64-bit host, first make sure
81 you didn't have CMakeCache.txt file left from 64-bit build (it would retain old
82 flags), then you must invoke cmake with options
83 `-DCMAKE_SYSTEM_PROCESSOR=x86 -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32`.
86 ### 2.2 Ubuntu
88 Install development packages.
90     $ sudo apt-get install cmake g++ mesa-common-dev libgl1-mesa-dev python-numpy python-mako freeglut3-dev x11proto-gl-dev libxrender-dev libwaffle-dev
92 Configure and build.
94     $ cmake .
95     $ make
98 ### 2.3 Mac OS X
100 Install CMake.
101 http://cmake.org/cmake/resources/software.html
102 Download and install 'Mac OSX Universal' platform.
104 Install Xcode.
105 http://developer.apple.com/xcode
107 Configure and build.
109     $ cmake .
110     $ make
113 ### 2.4 Cygwin
115 Install development packages.
116   - cmake
117   - gcc4
118   - make
119   - opengl
120   - libGL-devel
121   - python
122   - python-numpy
123   - libglut-devel
125 Configure and build.
127     $ cmake .
128     $ make
131 ### 2.5 Windows
133 Install Python 3.
134 http://www.python.org/download
136 Install CMake.
137 http://cmake.org/cmake/resources/software.html
138 Download and install 'Windows' platform.
140 Download and install Ninja
141 https://github.com/ninja-build/ninja/releases
143 Install MinGW-w64
144 https://mingw-w64.org/
146 Download OpenGL Core API and Extension Header Files.
147 http://www.opengl.org/registry/#headers
148 Pass `-DGLEXT_INCLUDE_DIR=/path/to/headers`
150 Install python mako.
152     pip install mako
154 Install NumPy.
156     pip install numpy
159 #### 2.5.1 GLUT
161 Download freeglut for Mingw.
162 http://www.transmissionzero.co.uk/software/freeglut-devel/
164     cmake -H. -Bbuild -G "Ninja" -DGLEXT_INCLUDE_DIR=\path\to\glext -DGLUT_INCLUDE_DIR=\path\to\freeglut\include -DGLUT_glut_LIBRARY=\path\to\freeglut\lib\x64\libfreeglut.a -DGLEXT_INCLUDE_DIR=\path\to\glext
165     ninja -C build
168 #### 2.5.2 Waffle
170 Download and build waffle for MinGW.
171 http://www.waffle-gl.org/
173 Open the Command Prompt.
174 CD to piglit directory.
176     cmake -H. -Bbuild -G "Ninja" -DGLEXT_INCLUDE_DIR=\path\to\glext -DPIGLIT_USE_WAFFLE=TRUE -DWAFFLE_INCLUDE_DIRS=\path\to\waffle\include\waffle WAFFLE_LDFLAGS=\path\to\waffle\lib\libwaffle-1.a
179 ## 3. How to run tests
181 Make sure that everything is set up correctly:
183     $ ./piglit run sanity results/sanity
185 You may include '.py' on the profile, or you may exclude it (sanity vs sanity.py),
186 both are equally valid.
188 You may also preface test profiles with tests/ (or any other path you like),
189 which may be useful for shell tab completion.
191 You may provide multiple profiles to be run at the same time:
193     $ ./piglit run quick_cl gpu deqp_gles3 results/gl-cl-combined
197     $ ./piglit run
201     $ ./piglit run -h
203 To learn more about the command's syntax.
205 Have a look into the tests/ directory to see what test profiles are available:
207     $ ls tests/*.py
209 See also section 4.
211 To create some nice formatted test summaries, run
213     $ ./piglit summary html summary/sanity results/sanity
215 Hint: You can combine multiple test results into a single summary.
216 During development, you can use this to watch for regressions:
218     $ ./piglit summary html summary/compare results/baseline results/current
220 You can combine as many testruns as you want this way (in theory;
221 the HTML layout becomes awkward when the number of testruns increases)
223 Have a look at the results with a browser:
225     $ xdg-open summary/sanity/index.html
227 The summary shows the 'status' of a test:
229   - **pass:**   This test has completed successfully.
230   - **warn:**   The test completed successfully, but something unexpected happened.
231     Look at the details for more information.
232   - **fail:**   The test failed.
233   - **crash:**  The test binary exited with a non-zero exit code.
234   - **skip:**   The test was skipped.
235   - **timeout:**  The test ran longer than its allotted time and was forcibly killed.
238 There are also dmesg-* statuses. These have the same meaning as above, but are
239 triggered by dmesg related messages.
242 ### 3.1 Environment Variables
244 There are a number of environment variables that control the way piglit
245 behaves.
247   - `PIGLIT_COMPRESSION`
249     Overrides the compression method used. The same values that piglit.conf
250     allows for core:compression.
252   - `PIGLIT_PLATFORM`
254     Overrides the platform run on. These allow the same values as `piglit run -p`.
255     This values is honored by the tests themselves, and can be used when running
256     a single test.
258   - `PIGLIT_FORCE_GLSLPARSER_DESKTOP`
260     Force glslparser tests to be run with the desktop (non-gles) version of
261     glslparsertest. This can be used to test ESX_compatability extensions
262     for OpenGL
264   - `PIGLIT_NO_FAST_SKIP`
266     Piglit has a mechanism run in the python layer for skipping tests with
267     unmet OpenGL or window system dependencies without starting a new
268     process (which is expensive). Sometimes this system doesn't work or is
269     undesirable, setting this environment variable to True will disable this
270     system.
272   - `PIGLIT_NO_TIMEOUT`
274     When this variable is true in python then any timeouts given by tests
275     will be ignored, and they will run until completion or they are killed.
277   - `PIGLIT_VKRUNNER_BINARY`
279     Can be used to override the path to the vkrunner executable for
280     running Vulkan shader tests. Alternatively the config option
281     vkrunner:bin can be used instead. If neither are set then vkrunner
282     will be searched for in the search path.
285 ### 3.2 Note
287 The way `piglit run` and `piglit summary` count tests are different,
288 `piglit run` counts the number of Test derived instance in the profile(s)
289 selected, while `piglit summary` counts the number of subtests a result
290 contains, or it's result if there are no subtests. This means that the number
291 shown by `piglit run` will be less than or equal to the number calculated by
292 `piglit summary`.
295 ### 3.3 Shell Completions
297 Piglit has completions for bash, located in completions/bash/piglit. Once this
298 file is sourced into bash `piglit` and `./piglit` will have tab completion
299 available. For global availability place the file somewhere that bash will
300 source the file on startup. If piglit is installed and bash-completions are
301 available, then this completion file will be installed system-wide.
304 ## 4. Available test sets
306 Test sets are specified as Python scripts in the tests directory.
307 The following test sets are currently available:
310 ### 4.1 OpenGL Tests
312   - **sanity.py** This suite contains minimal OpenGL sanity tests. These tests
313     must pass, otherwise the other tests will not generate reliable results.
314   - **all.py** This suite contains all OpenGL tests.
315   - **quick.py** Run all tests, but cut down significantly on their runtime
316     (and thus on the number of problems they can find).
317   - **gpu.py** A further reduced set of tests from quick.py, this runs tests
318     only for hardware functionality and not tests for the software stack.
319   - **llvmpipe.py** A reduced set of tests from gpu.py removing tests that are
320     problematic using llvmpipe
321   - **cpu.py** This profile runs tests that don't touch the gpu, in other words
322     all of the tests in quick.py that are not run by gpu.py
323   - **glslparser.py** A subset of all.py which runs only glslparser tests
324   - **shader.py** A subset of all.py which runs only shader tests
325   - **no_error.py** A modified version of the test list run as khr_no_error
326     variants
329 ### 4.2 OpenCL Tests
331   - **cl.py** This suite contains all OpenCL tests.
332   - **quick_cl.py** This runs all of the tests from cl.py as well as tests from
333     opencv and oclconform.
336 ### 4.3 Vulkan tests
338   - **vulkan.py** This suite contains all Vulkan tests. Note that
339     currently all of the Vulkan tests require VkRunner. If it is not
340     installed then all of the tests will be skipped.
343 ### 4.4 Replay tests
345   - **replay.py** This profile allows running
346     [replayer.py](replayer/replayer.py) tests from a traces
347     description file. Check its [README](replayer/README.md) for
348     further information about the format of the description files and
349     running dependencies.
351 ### 4.5 External Integration
353   - **xts.py** Support for running the X Test Suite using piglit.
354   - **igt.py** Support for running Intel-gpu-tools test suite using piglit.
355   - **deqp_egl.py** Support for running dEQP's EGL profile with piglit.
356   - **deqp_gles2.py** Support for running dEQP's gles2 profile with piglit.
357   - **deqp_gles3.py** Support for running dEQP's gles3 profile with piglit.
358   - **deqp_gles31.py** Support for running dEQP's gles3.1 profile with piglit.
359   - **deqp_vk.py** Support for running the official Khronos Vulkan CTS profile
360     with piglit.
361   - **khr_gl.py** Support for running the open source Khronos OpenGL CTS tests
362     with piglit.
363   - **khr_gl45.py** Support for running the open source Khronos OpenGL 4.5 CTS
364     tests with piglit.
365   - **cts_gl.py** Support for running the closed source Khronos OpenGL CTS
366     tests with piglit.
367   - **cts_gl45.py** Support for running the closed source Khronos OpenGL 4.5
368     CTS tests with piglit.
369   - **cts_gles.py** Support for running the closed source Khronos GLES CTS
370     tests with piglit.
371   - **oglconform.py** Support for running sub-test of the Intel oglconform test
372     suite with piglit.
375 ## 5. How to write tests
377 Every test is run as a separate process. This minimizes the impact that
378 severe bugs like memory corruption have on the testing process.
380 Therefore, tests can be implemented in an arbitrary standalone language.
381 C is the preferred language for compiled tests, piglit also supports its own
382 simple formats for test shaders and glsl parser input.
384 All new tests must be added to the appropriate profile, all.py profile for
385 OpenGL and cl.py for OpenCL. There are a few basic test classes supported by the
386 python framework:
388   - `PiglitBaseTest`
389     A shared base class for all native piglit tests.
391     It starts each test as a subprocess, captures stdout and stderr, and waits
392     for the test to return.
394     It provides test timeouts by setting the instances 'timeout' attribute to an
395     integer > 0 which is the number of seconds the test should run.
397     It interprets output by reading stdout and looking for 'PIGLIT: ' in the
398     output, and then reading any trailing characters as well formed json
399     returning the test result.
401     This is a base class and should not be used directly, but provides an
402     explanation of the behavior of the following classes.
404   - `PiglitGLTest`
405     A test class for native piglit OpenGL tests.
407     In addition to the properties of PiglitBaseTest it provides a mechanism for
408     detecting test window resizes and rerunning tests as well as keyword
409     arguments for platform requirements.
411   - `PiglitCLTest`
412     A test class for native piglit OpenCL tests.
414     It currently provides no special features.
416   - `GLSLParserTest`
417     A class for testing a glsl parser.
419     It is generally unnecessary to call this class directly as it uses a helper
420     function to search directories for tests.
422   - `ShaderTest`
423     A class for testing using OpenGL shaders.
425     It is generally unnecessary to call this class directly as it uses a helper
426     function to search directories for tests.
429 ## 6. Integration
431 Piglit provides integration for other test suites as well. The rational for
432 this is that it provides piglit's one process per test protections (one test
433 crashing does not crash the whole suite), and access to piglit's reporting
434 tools.
436 Most integration is done through the use of piglit.conf, or through environment
437 variables, with piglit.conf being the preferred method.
440 ### 6.1 dEQP
442 Piglit provides a generic layer for dEQP based test suites, and specific
443 integration for several suites.
445 I suggest using Chad Versace's repo of dEQP, which contains a gbm target.
446 https://github.com/chadversary/deqp
448 It should be built as follows:
450     cmake . -DDEQP_TARGET=gbm -GNinja
452 Additional targets are available in the targets directory. gbm isn't compatible
453 for most (any?) blob driver, so another target might be necessary if that is a
454 requirement. One of the x11_* targets or drm is probably a good choice.
456 The use of ninja is optional.
458 Once dEQP is built add the following information to piglit.conf, which can
459 either be located in the root of the piglit repo, or in `$XDG_CONFIG_HOME`
460 (usually `$HOME/.config`).
462     [deqp-gles2]
463     bin=<deqp source dir>/modules/gles2/deqp-gles2
465     [deqp-gles3]
466     bin=<deqp source dir>/modules/gles3/deqp-gles3
468     [deqp-gles31]
469     bin=<deqp source dir>/modules/gles31/deqp-gles31
471 These platforms can be run using deqp_gles*.py as a suite in piglit.
472 For example:
474     ./piglit run deqp_gles31 my_results -c
476 It is also possible to mix integrated suites and piglit profiles together:
478     ./piglit run deqp_gles31 quick cl my_results
480 dEQP profiles generally contain all of the tests from the previous profile, so
481 gles31 covers gles3 and gles2.
484 ### 6.2 Khronos CTS
486 Add the following to your piglit.conf file:
488     [cts]
489     bin=<cts source dir>/cts/glcts