From 158b5a1ec8b4156da1d335a4f940919578928790 Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Sun, 28 Apr 2013 11:21:50 -0700 Subject: [PATCH] test: Rename test/list to test/lib Having a test/list directory is a little too specific, so rename the test/list directory to test/lib as a place for any lib tests. Signed-off-by: Geoff Levand --- configure.ac.in | 2 +- test/Makefile.am | 2 +- test/{list => lib}/Makefile.am | 0 test/{list => lib}/list-test.c | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename test/{list => lib}/Makefile.am (100%) rename test/{list => lib}/list-test.c (100%) diff --git a/configure.ac.in b/configure.ac.in index 53f42ba..1b66244 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -213,7 +213,7 @@ AC_CONFIG_FILES([ lib/Makefile man/Makefile test/Makefile - test/list/Makefile + test/lib/Makefile test/parser/Makefile test/urls/Makefile ui/Makefile diff --git a/test/Makefile.am b/test/Makefile.am index a32f79f..f2f4176 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -12,7 +12,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -SUBDIRS = list parser urls +SUBDIRS = lib parser urls noinst_SCRIPTS = hotplug-device.sh diff --git a/test/list/Makefile.am b/test/lib/Makefile.am similarity index 100% rename from test/list/Makefile.am rename to test/lib/Makefile.am diff --git a/test/list/list-test.c b/test/lib/list-test.c similarity index 100% rename from test/list/list-test.c rename to test/lib/list-test.c -- 2.39.2