tests: enable installing tests to bindir
authorAnders Roxell <anders.roxell@linaro.org>
Fri, 15 Mar 2019 10:01:44 +0000 (11:01 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 20 Mar 2019 09:49:44 +0000 (10:49 +0100)
Add an enable option to configure that allows to install the testing
binary to <prefix>/bindir.

Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
[Bartosz: trimmed the patch to fit the new approach]
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
configure.ac
tests/Makefile.am

index 4adff7b7a36b74f1673916882c17c08631f73fd5..8a9b81dbeef0ee5bd6aaf017bc96e976f689632a 100644 (file)
@@ -107,6 +107,13 @@ then
        AC_CHECK_HEADERS([sys/signalfd.h], [], [HEADER_NOT_FOUND_TOOLS([sys/signalfd.h])])
 fi
 
+AC_ARG_ENABLE([install-tests],
+       [AC_HELP_STRING([--enable-install-tests],
+               [enable install tests [default=no]])],
+       [if test "x$enableval" = xyes; then with_install_tests=true; with_tests=true; fi],
+       [with_install_tests=false])
+AM_CONDITIONAL([WITH_INSTALL_TESTS], [test "x$with_install_tests" = xtrue])
+
 AC_ARG_ENABLE([tests],
        [AC_HELP_STRING([--enable-tests],
                [enable libgpiod tests [default=no]])],
index a6593b9e3cccb03587298a968f91b1ad6f388065..4d1e6d5e2668ef82dc10ec8a519a806333acbf59 100644 (file)
@@ -11,7 +11,11 @@ AM_CFLAGS += -Wall -Wextra -g $(KMOD_CFLAGS) $(UDEV_CFLAGS)
 AM_LDFLAGS = -pthread
 LDADD = $(top_builddir)/lib/libgpiod.la $(KMOD_LIBS) $(UDEV_LIBS)
 
+if WITH_INSTALL_TESTS
+bin_PROGRAMS = gpiod-test
+else
 check_PROGRAMS = gpiod-test
+endif
 
 gpiod_test_SOURCES =   gpiod-test.c \
                        gpiod-test.h \