diff options
author | Ian Romanick <[email protected]> | 2013-10-02 15:44:14 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-05-02 07:19:39 -0700 |
commit | ba7195d126ce20bf74a27725224662aaca4d90ef (patch) | |
tree | fe252be251a3c086b65a7e363a5e6b12e8f015f6 /src/glsl/Makefile.am | |
parent | 8f5852bd2b91df7b259e5aeafb6a62a4268ca4c4 (diff) |
glsl/tests: Add first simple tests of populate_consumer_input_sets
Four initial tests:
* Create an IR list with a single input variable and verify that
variable is the only thing in the hash tables.
* Same as the previous test, but use a built-in variable
(gl_ClipDistance) with an explicit location set.
* Create an IR list with a single input variable from an interface block
and verify that variable is the only thing in the hash tables.
* Create an IR list with a single input variable and a single input
variable from an interface block. Verify that each is the only thing
in the proper hash tables.
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.am')
-rw-r--r-- | src/glsl/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glsl/Makefile.am b/src/glsl/Makefile.am index 534eaa38536..e12ba956d7a 100644 --- a/src/glsl/Makefile.am +++ b/src/glsl/Makefile.am @@ -61,7 +61,8 @@ tests_general_ir_test_SOURCES = \ $(GLSL_SRCDIR)/standalone_scaffolding.cpp \ tests/builtin_variable_test.cpp \ tests/invalidate_locations_test.cpp \ - tests/general_ir_test.cpp + tests/general_ir_test.cpp \ + tests/varyings_test.cpp tests_general_ir_test_CFLAGS = \ $(PTHREAD_CFLAGS) tests_general_ir_test_LDADD = \ |