summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-02-22rgtc: add two simple tests that failrgtcDave Airlie3-0/+204
These are tests to show some rgtc usage they currently fail as I haven't got a ref impl to check against.
2011-02-19vbo-buffer-unmap: Add to all.tests.Vinson Lee1-0/+1
2011-02-18vbo-buffer-unmap: exercise a VBO buffer unmap issueBrian Paul2-0/+92
2011-02-18glew: fix inclusion of glew.h in glxew.hMarek Olšák1-1/+1
2011-02-18array-texture: make this a useful debugging tool also.Dave Airlie1-28/+31
This renders all the slices across the window, and all 4 tests down the window, it also doesn't bail on failure quite so early so you can use it to debug all stages at once. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-02-18arb_shader_texture_lod-texgrad: update authorsMarek Olšák1-0/+4
2011-02-18arb_shader_texture_lod-texgrad: new test for texture2DGradARB GLSL functionMarek Olšák4-2/+202
2011-02-18util: add function for checking whether 2 halves of window are equalMarek Olšák2-0/+33
2011-02-18all.tests: do not test EXT_texture_integer with fbo-generatemipmap-formatsMarek Olšák1-2/+0
glGenerateMipmap doesn't make sense with integer textures. It all fails with fglrx. Unfortunately, the specification is silence on this. Feel free to let me know if you think otherwise.
2011-02-18texwrap: allow lower precision for GL_R11F_G11F_B10FMarek Olšák1-1/+1
2011-02-18fbo-generatemipmap-formats: fix testing GL_DEPTH_STENCILMarek Olšák1-1/+1
accidentally broken when fixing GL_DEPTH32F_STENCIL8
2011-02-18fbo-generatemipmap-formats: fix testing GL_DEPTH32F_STENCIL8Marek Olšák2-4/+11
2011-02-18util: fix piglit_depth_texture for GL_DEPTH32F_STENCIL8Marek Olšák1-1/+7
2011-02-18texwrap: fix testing GL_DEPTH32F_STENCIL8Marek Olšák1-12/+36
2011-02-17fbo-depth-sample-compare: compare depth texture sampling vs. fragment.zBrian Paul3-0/+367
Multi-pass algorithms that compare fragment Z to a depth texture sample can exercise this sort of thing.
2011-02-17Replace poolName in Test constructor with boolean option.U. Artie Eoff3-10/+15
Replaced poolName in the Test constructor with runConcurrent boolean option. runConcurrent defaults to False. When True, the Test pushes its doRunWork to the ConcurrentTestPool to be executed in another thread. When False, doRunWork is executed immediately on the calling thread (main thread). Reviewed-by: Chad Versace <chad.versace@intel.com>
2011-02-17Remove ThreadPoolsU. Artie Eoff1-38/+0
Remove ThreadPools from threads module since it is no longer needed/used. ConcurrentTestPool is now the only threadpool needed to manage cpu-only tests. Reviewed-by: Chad Versace <chad.versace@intel.com>
2011-02-17Move gpu tests to main thread and cpu-only tests to threadpool.U. Artie Eoff1-5/+6
This is an intermediate change that moves the "base" (or gpu) tests to the main thread and the other (cpu-only) tests to the ConcurrentTestPool threads. This restores ctrl-c behavior for gpu tests. Reviewed-by: Chad Versace <chad.versace@intel.com>
2011-02-17Add ConcurrentTestPool singleton.U. Artie Eoff1-0/+16
The ConcurrentTestPool singleton will simplify the threading model and remove the need to manage multiple ThreadPools. Only one threadpool is currently needed at this time and is meant to execute cpu-only tests in separate threads. Reviewed-by: Chad Versace <chad.versace@intel.com>
2011-02-17fbo-drawbuffers-arbfp: test ARB_draw_buffers with ARB_fragment_programMarek Olšák3-0/+158
This is unimplemented in Mesa, unfortunately. Passes with fglrx.
2011-02-17texwrap: test EXT_texture_snormMarek Olšák2-0/+50
2011-02-17fbo-clear-formats: test EXT_texture_snormMarek Olšák1-0/+1
2011-02-17fbo-generatemipmap-formats: test EXT_texture_snormMarek Olšák2-0/+37
2011-02-17fbo-generatemipmap-formats: test EXT_texture_compression_latcMarek Olšák2-0/+14
2011-02-17texwrap: test EXT_packed_depth_stencilMarek Olšák2-9/+27
2011-02-17fbo-generatemipmap-formats: test ATI_texture_compression_3dcMarek Olšák2-0/+11
2011-02-17texwrap: test ARB_texture_compressionMarek Olšák2-0/+20
2011-02-17texwrap: test ARB_depth_buffer_floatMarek Olšák2-0/+8
2011-02-17glew: define GLEW_STATIC for MSVCMarek Olšák2-0/+4
This should hopefully fix linking failures.
2011-02-17Remove unnecessary OpenGL extension definesMarek Olšák26-403/+24
2011-02-17Import GLEWMarek Olšák21-37/+33374
Discussed on IRC. Finally we have headers for OpenGL 4.1 and all the extensions released to this day.
2011-02-16fbo-clear-formats: add float format tests to all.testsMarek Olšák1-8/+4
I've only tested ARB_texture_float, but the others should work too. There is also a similar test arb_color_buffer_float-clear, which is more thorough.
2011-02-16texCombine: test GL_ATI_texture_env_combine3Marek Olšák2-3/+134
I've had this patch on my hdd for long time...
2011-02-16texwrap: remove the RGBA DXT1 workaround for MesaMarek Olšák1-20/+8
2011-02-16fbo-generatemipmap-formats: also test mipmap generation of NPOT texturesMarek Olšák1-39/+82
2011-02-16util: allow non-square dimensions in piglit_{rgbw|depth}_textureMarek Olšák1-20/+24
2011-02-15Test implicitly sized arrays where only element 0 is accessedGordon Jin2-0/+22
Reproduces Mesa bugzilla #34198. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2011-02-15r600.tests: update the list of hardlocking testsMarek Olšák1-8/+2
2011-02-15draw-vertices: Move declaration before code.Vinson Lee1-4/+6
2011-02-15draw-vertices: Add a few vbo tests with vertex and color data in one buffer.Fabian Bieler1-0/+47
2011-02-14draw-elements-base-vertex-neg: Link with math library.Vinson Lee1-0/+3
Link with math library for pow symbol.
2011-02-14draw-elements-base-vertex-neg: new test for a negative index biasMarek Olšák3-0/+117
2011-02-14draw-batch: also test immediate mode and display listsMarek Olšák1-7/+79
2011-02-14Remove tests which where copied from mesa/demos and were unchanged since thenMarek Olšák88-23674/+0
The only test which is different is texline.
2011-02-10glsl_parser_test: Add test instances to thread pool 'gpu-not-used'Chad Versace1-2/+2
2011-02-10Respond to KeyboardInterrupt exception.U. Artie Eoff1-2/+7
Respond to KeyboardInterrupt exception so that execution can clean up and write a summary file before shutting down.
2011-02-10Add SyncFileWriter for write/close synchronization on results file.U. Artie Eoff2-11/+40
Add SyncFileWriter class to synchronize writes to the 'main' results file from multiple threads. This helps to ensure that writes to this file are not intermingled.
2011-02-10Move asmparsertests to a separate ThreadPool group.U. Artie Eoff1-2/+4
Move asmparsertests to a separate ThreadPool group named 'gpu-not-used'. This ThreadPool is created with 2 worker threads by default. This change makes the asmparsertests execute concurrently with all other tests that are allocated in another ThreadPool (currently everything else).
2011-02-10Modify the Test class in core.py to use ThreadPools.U. Artie Eoff1-2/+10
Modify Test class to use ThreadPools in its doRun method. All tests now execute in the default ThreadPool named 'base'. A Test instance can be configured to run in a different (named) ThreadPool instance by setting its poolName member variable to that name.
2011-02-10Add synchronization to Logger functions.U. Artie Eoff1-0/+3
Add synchronization decorator to Logger functions for multithreaded logging support.