From 3db69c2c2f58b15c5e5052ef5df375b0c7607451 Mon Sep 17 00:00:00 2001 From: Benjamin Berg Date: Wed, 2 Oct 2019 14:07:42 +0200 Subject: [PATCH] utils: Move test binaries into utils These utilities are generally useful beyond only testing purproses. And, since it is desirable to have automated tests inside the tests subdirecty, it makes sense to move them elsewhere. --- Makefile.am | 2 +- configure.ac | 2 +- {tests => utils}/Makefile.am | 0 {tests => utils}/delete.c | 0 {tests => utils}/enroll.c | 0 {tests => utils}/list.c | 0 {tests => utils}/verify.c | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {tests => utils}/Makefile.am (100%) rename {tests => utils}/delete.c (100%) rename {tests => utils}/enroll.c (100%) rename {tests => utils}/list.c (100%) rename {tests => utils}/verify.c (100%) diff --git a/Makefile.am b/Makefile.am index 6c247a8..ebec8a2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ AUTOMAKE_OPTIONS = dist-bzip2 -SUBDIRS = src data tests pam doc po +SUBDIRS = src data utils pam doc po EXTRA_DIST = TODO intltool-extract.in intltool-merge.in intltool-update.in DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --with-systemdsystemunitdir='$${libdir}/systemd/system-distcheck' diff --git a/configure.ac b/configure.ac index 5f971a7..2b57a72 100644 --- a/configure.ac +++ b/configure.ac @@ -81,7 +81,7 @@ AC_OUTPUT([ Makefile src/Makefile data/Makefile -tests/Makefile +utils/Makefile pam/Makefile doc/Makefile doc/version.xml diff --git a/tests/Makefile.am b/utils/Makefile.am similarity index 100% rename from tests/Makefile.am rename to utils/Makefile.am diff --git a/tests/delete.c b/utils/delete.c similarity index 100% rename from tests/delete.c rename to utils/delete.c diff --git a/tests/enroll.c b/utils/enroll.c similarity index 100% rename from tests/enroll.c rename to utils/enroll.c diff --git a/tests/list.c b/utils/list.c similarity index 100% rename from tests/list.c rename to utils/list.c diff --git a/tests/verify.c b/utils/verify.c similarity index 100% rename from tests/verify.c rename to utils/verify.c