summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2011-03-15 12:47:54 +0100
committerHenrik Rydberg <rydberg@euromail.se>2011-04-04 19:46:29 +0200
commitd55a299efd74431e98c8a4f24cffd07c95d419d6 (patch)
tree2dd5a3d3459308081a0da0fb0d01736fa3c700c7 /configure.ac
parent30800843fd45fd582d16b0a39f57e6d8a98e79bc (diff)
Introduce check test framework
Add the check test framework, and add a simple test to check point to point mappings. The tests use the device files as input. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index b04766b..37fa429 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,6 +26,12 @@ PKG_CHECK_MODULES([MTDEV], [mtdev >= 1.1])
26PKG_CHECK_MODULES([EVEMU], [utouch-evemu >= 1.0.5]) 26PKG_CHECK_MODULES([EVEMU], [utouch-evemu >= 1.0.5])
27PKG_CHECK_MODULES([FRAME], [utouch-frame >= 1.0]) 27PKG_CHECK_MODULES([FRAME], [utouch-frame >= 1.0])
28 28
29# Check for TDD tools
30PKG_CHECK_MODULES([CHECK], [check >= 0.9.8],
31 [have_check=yes],
32 AC_MSG_WARN([package 'check' not found: tests disabled]))
33AM_CONDITIONAL([HAVE_CHECK],[test "x$have_check" = xyes])
34
29AC_CONFIG_FILES([Makefile 35AC_CONFIG_FILES([Makefile
30 src/Makefile 36 src/Makefile
31 tools/Makefile 37 tools/Makefile