From 37fc57a213c5dd7a15dfdf571ce4a58de124cb0f Mon Sep 17 00:00:00 2001 From: Guanqun Lu Date: Thu, 5 Feb 2009 05:00:41 +0800 Subject: [PATCH] add test-dump-cache-tree in Makefile 5c5ba73 (Makefile: Use generic rule to build test programs, 2007-05-31) tried to use generic rule to build test programs, but it misses the file 'dump-cache-tree.c', since its name is not prefixed by 'test-'. This commit solves this little problem by renaming this file instead of carrying out an explicit rule in Makefile. Signed-off-by: Guanqun Lu Signed-off-by: Junio C Hamano --- Makefile | 2 +- dump-cache-tree.c => test-dump-cache-tree.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename dump-cache-tree.c => test-dump-cache-tree.c (100%) diff --git a/Makefile b/Makefile index 186a8efd1b..5de4247fbd 100644 --- a/Makefile +++ b/Makefile @@ -1301,7 +1301,7 @@ endif ### Testing rules -TEST_PROGRAMS = test-chmtime$X test-genrandom$X test-date$X test-delta$X test-sha1$X test-match-trees$X test-parse-options$X test-path-utils$X +TEST_PROGRAMS = test-chmtime$X test-dump-cache-tree$X test-genrandom$X test-date$X test-delta$X test-sha1$X test-match-trees$X test-parse-options$X test-path-utils$X all:: $(TEST_PROGRAMS) diff --git a/dump-cache-tree.c b/test-dump-cache-tree.c similarity index 100% rename from dump-cache-tree.c rename to test-dump-cache-tree.c -- 2.11.4.GIT