diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-15 20:51:04 +0000 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-15 20:51:04 +0000 |
commit | 1d295abac0340e18fa20aa2abc67be76cdc0b8d3 (patch) | |
tree | a16e9ef9a2c47863d598b55877bf03dfab19b91a /src/Makefile_Eet.am | |
parent | 40148ef2c551e7a74f26b90393ef8199eb833259 (diff) |
efl: use autotools testsuite for running tests
Instead of just making our own "check-local" and calling the binaries
ourselves, just append them into "TESTS" variable. Then they run after
all check_PROGRAMS are compiled.
The reasons for changing are:
1) If we change the test and call "make check" the test is not
compiled again -- and the only way to compile it is to "make clean".
2) There's no need to reinvent the wheel here.
With a recent version of Automake, the test output is redirected to log
files. This is good but unexpected for whom was used to the previous
way. So, be warned.
SVN revision: 82841
Diffstat (limited to '')
-rw-r--r-- | src/Makefile_Eet.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile_Eet.am b/src/Makefile_Eet.am index 63142dc366..7646f0f880 100644 --- a/src/Makefile_Eet.am +++ b/src/Makefile_Eet.am | |||
@@ -54,6 +54,7 @@ bin_eet_eet_DEPENDENCIES = @USE_EET_INTERNAL_LIBS@ | |||
54 | if EFL_ENABLE_TESTS | 54 | if EFL_ENABLE_TESTS |
55 | 55 | ||
56 | check_PROGRAMS += tests/eet/eet_suite | 56 | check_PROGRAMS += tests/eet/eet_suite |
57 | TESTS += tests/eet/eet_suite | ||
57 | 58 | ||
58 | tests_eet_eet_suite_SOURCES = \ | 59 | tests_eet_eet_suite_SOURCES = \ |
59 | tests/eet/eet_suite.c \ | 60 | tests/eet/eet_suite.c \ |