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.c | |
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.c')
-rw-r--r-- | t/helper/test-tool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/helper/test-tool.c b/t/helper/test-tool.c index 087a8c0..7bc9bb2 100644 --- a/t/helper/test-tool.c +++ b/t/helper/test-tool.c @@ -19,6 +19,7 @@ static struct test_cmd cmds[] = { { "ctype", cmd__ctype }, { "date", cmd__date }, { "delta", cmd__delta }, + { "dir-iterator", cmd__dir_iterator }, { "drop-caches", cmd__drop_caches }, { "dump-cache-tree", cmd__dump_cache_tree }, { "dump-fsmonitor", cmd__dump_fsmonitor }, |