tests: always build tests
check_PROGRAMS and friends are only built during make check. Which is a great way of introducing compiler errors in tests. Always build them, TESTS defines what's being run during make check.
This commit is contained in:
committed by
Kristian Høgsberg
parent
2e3c396ae3
commit
498d5f07cb
+4
-8
@@ -29,18 +29,14 @@ clean-local:
|
||||
export abs_builddir
|
||||
|
||||
noinst_LTLIBRARIES = \
|
||||
$(weston_test)
|
||||
$(weston_test) \
|
||||
$(module_tests)
|
||||
|
||||
noinst_PROGRAMS = \
|
||||
$(setbacklight) \
|
||||
matrix-test
|
||||
|
||||
check_LTLIBRARIES = \
|
||||
$(module_tests)
|
||||
|
||||
check_PROGRAMS = \
|
||||
$(shared_tests) \
|
||||
$(weston_tests)
|
||||
$(weston_tests) \
|
||||
matrix-test
|
||||
|
||||
AM_CFLAGS = $(GCC_CFLAGS)
|
||||
AM_CPPFLAGS = \
|
||||
|
||||
Reference in New Issue
Block a user