Commit 99476561 (automake: src/glsl and src/glsl/glcpp) changed the
build system so that src/glsl/glsl_test is not built by default. This
inadvertently broke "make check", since the tests in
src/glsl/tests/lower_jumps (which are run by "make check") rely on
glsl_test.
This patch ensures that "make check" builds glsl_test before running
any tests.
---
Makefile | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index 1fa369a..e593e7f 100644
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,7 @@ doxygen:
cd doxygen && $(MAKE)
check:
+ cd src/glsl && $(MAKE) check
cd src/glsl/tests/ && ./optimization-test
make -C tests check
--
1.7.7.6
_______________________________________________
mesa-dev mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-dev