aboutsummaryrefslogtreecommitdiff
path: root/test-absolute-path.c
diff options
context:
space:
mode:
authorDavid Reiss <dreiss@facebook.com>2008-05-19 23:49:00 -0700
committerJunio C Hamano <gitster@pobox.com>2008-05-23 14:15:01 -0700
commitd553e737897e8edbbc2092bf345fc58b2dae5251 (patch)
tree9de693a3d6cd4f0f76674925adc752476f4d00c5 /test-absolute-path.c
parentae299be0e5e610027e6492d48d70c1cbb0e9edd8 (diff)
downloadgit-d553e737897e8edbbc2092bf345fc58b2dae5251.tar.gz
git-d553e737897e8edbbc2092bf345fc58b2dae5251.tar.xz
Fold test-absolute-path into test-path-utils
Signed-off-by: David Reiss <dreiss@facebook.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-absolute-path.c')
-rw-r--r--test-absolute-path.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/test-absolute-path.c b/test-absolute-path.c
deleted file mode 100644
index c959ea20d..000000000
--- a/test-absolute-path.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "cache.h"
-
-int main(int argc, char **argv)
-{
- while (argc > 1) {
- puts(make_absolute_path(argv[1]));
- argc--;
- argv++;
- }
- return 0;
-}