diff options
author | Matt Turner <[email protected]> | 2015-02-10 13:38:07 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-02-19 21:16:43 -0800 |
commit | bf3389ec49a158e0b66db8e038d801eacabd20f1 (patch) | |
tree | d834f38541f32c6bc358525ae576f0edb32e49e1 /src/mesa/drivers/dri/i965/Makefile.am | |
parent | 9acb011a3e73676ada04df01832c930acf51a9a2 (diff) |
i965/fs: Add unit tests for saturate propagation pass.
Cc: <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.am')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index 07eefce6d68..53e91fe5412 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -54,6 +54,7 @@ TEST_LIBS = \ TESTS = \ test_fs_cmod_propagation \ + test_fs_saturate_propagation \ test_eu_compact \ test_vf_float_conversions \ test_vec4_copy_propagation \ @@ -67,6 +68,12 @@ test_fs_cmod_propagation_LDADD = \ $(TEST_LIBS) \ $(top_builddir)/src/gtest/libgtest.la +test_fs_saturate_propagation_SOURCES = \ + test_fs_saturate_propagation.cpp +test_fs_saturate_propagation_LDADD = \ + $(TEST_LIBS) \ + $(top_builddir)/src/gtest/libgtest.la + test_vf_float_conversions_SOURCES = \ test_vf_float_conversions.cpp test_vf_float_conversions_LDADD = \ |