diff options
author | Daniel Ferreira <bnmvco@gmail.com> | 2019-07-10 23:58:57 (GMT) |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-07-11 20:52:15 (GMT) |
commit | 150791adbf1eb432af0b895d81eef5c2717aa6cc (patch) | |
tree | 672c58235fc45bce91789b316ce0473da36dee05 /t/helper/test-tool.h | |
parent | 36596fd2dfa473cf1069d23776e62cc156e7b5c6 (diff) | |
download | git-150791adbf1eb432af0b895d81eef5c2717aa6cc.zip git-150791adbf1eb432af0b895d81eef5c2717aa6cc.tar.gz git-150791adbf1eb432af0b895d81eef5c2717aa6cc.tar.bz2 |
dir-iterator: add tests for dir-iterator API
Create t/helper/test-dir-iterator.c, which prints relevant information
about a directory tree iterated over with dir-iterator.
Create t/t0066-dir-iterator.sh, which tests that dir-iterator does
iterate through a whole directory tree as expected.
Signed-off-by: Daniel Ferreira <bnmvco@gmail.com>
[matheus.bernardino: update to use test-tool and some minor aesthetics]
Helped-by: Matheus Tavares <matheus.bernardino@usp.br>
Signed-off-by: Matheus Tavares <matheus.bernardino@usp.br>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper/test-tool.h')
-rw-r--r-- | t/helper/test-tool.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/helper/test-tool.h b/t/helper/test-tool.h index 7e703f3..ec0ffbd 100644 --- a/t/helper/test-tool.h +++ b/t/helper/test-tool.h @@ -9,6 +9,7 @@ int cmd__config(int argc, const char **argv); int cmd__ctype(int argc, const char **argv); int cmd__date(int argc, const char **argv); int cmd__delta(int argc, const char **argv); +int cmd__dir_iterator(int argc, const char **argv); int cmd__drop_caches(int argc, const char **argv); int cmd__dump_cache_tree(int argc, const char **argv); int cmd__dump_fsmonitor(int argc, const char **argv); |