From 4c3c4ccb9916411aaa682cb60acfbfd7d6232a33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Wed, 9 Oct 2019 14:20:18 +0400 Subject: dumptrees: pass outputdir as first argument MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instead of outputing files to current directory, allow to specificy an output directory. This helps with meson build system out-of-tree support. Signed-off-by: Marc-André Lureau Message-Id: <20191009102025.10179-4-marcandre.lureau@redhat.com> Signed-off-by: David Gibson --- tests/Makefile.tests | 2 +- tests/dumptrees.c | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/Makefile.tests b/tests/Makefile.tests index 5093aaa..51259f0 100644 --- a/tests/Makefile.tests +++ b/tests/Makefile.tests @@ -74,7 +74,7 @@ $(TESTS_PREFIX)dumptrees: $(TESTS_PREFIX)trees.o $(TESTS_TREES): $(TESTS_PREFIX)dumptrees @$(VECHO) DUMPTREES - cd $(TESTS_PREFIX); ./dumptrees >/dev/null + cd $(TESTS_PREFIX); ./dumptrees . >/dev/null tests_clean: @$(VECHO) CLEAN "(tests)" diff --git a/tests/dumptrees.c b/tests/dumptrees.c index b2f5b26..aecb326 100644 --- a/tests/dumptrees.c +++ b/tests/dumptrees.c @@ -32,6 +32,16 @@ int main(int argc, char *argv[]) { int i; + if (argc != 2) { + fprintf(stderr, "Missing output directory argument\n"); + return 1; + } + + if (chdir(argv[1]) != 0) { + perror("chdir()"); + return 1; + } + for (i = 0; i < NUM_TREES; i++) { void *blob = trees[i].blob; const char *filename = trees[i].filename; -- cgit v1.1