Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | glsl/build: Build tests via the glsl Makefile | Matt Turner | 2013-01-22 | 1 | -2/+8 |
| | | | | Tested-by: Andreas Boll <[email protected]> | ||||
* | glsl/tests: Plumb $(PYTHON2) and $(PYTHON_FLAGS) into optimization-test. | Kenneth Graunke | 2012-05-30 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | Some distributions (like Arch Linux) make /usr/bin/python Python 3, rather than Python 2. Since compare_ir uses /usr/bin/env python, such systems will fail to run optimization-test, causing 'make check' to always fail. Automake's TESTS_ENVIRONMENT variable provides a mechanism to run programs or set environment variables in the test environment. Ideally, I think we would want to use AM_TESTS_ENVIRONMENT, since TESTS_ENVIRONMENT is supposed to be user-overridable. However, it isn't supported using the default/serial test runner. Fixes 'make check' on Arch Linux and Gentoo. Signed-off-by: Kenneth Graunke <[email protected]> Acked-by: Matt Turner <[email protected]> | ||||
* | glsl: Add unit tests for lower_jumps.cpp | Paul Berry | 2011-07-22 | 1 | -0/+28 |
These tests invoke do_lower_jumps() in isolation (using the glsl_test executable) and verify that it transforms the IR in the expected way. The unit tests may be run from the top level directory using "make check". For reference, I've also checked in the Python script create_test_cases.py, which was used to generate these tests. It is not necessary to run this script in order to run the tests. Acked-by: Chad Versace <[email protected]> |