diff options
author | Paul Berry <[email protected]> | 2011-07-05 11:52:06 -0700 |
---|---|---|
committer | Paul Berry <[email protected]> | 2011-07-22 09:45:11 -0700 |
commit | 659cdedb532e675da5676d40ee39278aadd8f0a1 (patch) | |
tree | 75e5affe4434d782ab50ed5fb2591d65ff868925 /Makefile | |
parent | f1f76e157ed1ba554fc3a0172113997344049e07 (diff) |
glsl: Add unit tests for lower_jumps.cpp
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]>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -21,6 +21,10 @@ all: default doxygen: cd doxygen && $(MAKE) +check: + cd src/glsl/tests/ && ./optimization-test + @echo "All tests passed." + clean: -@touch $(TOP)/configs/current -@for dir in $(SUBDIRS) ; do \ @@ -51,7 +55,7 @@ install: done -.PHONY: default doxygen clean realclean distclean install +.PHONY: default doxygen clean realclean distclean install check # If there's no current configuration file $(TOP)/configs/current: |