From 8db5b2a9efd84d7440b022dfcd1d88936c168dc6 Mon Sep 17 00:00:00 2001 From: Simon Dold Date: Sat, 13 Apr 2024 15:26:09 +0200 Subject: [PATCH] add output --- misc/tests/test-parameters.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/tests/test-parameters.py b/misc/tests/test-parameters.py index ca0b418683..12f867ecbb 100644 --- a/misc/tests/test-parameters.py +++ b/misc/tests/test-parameters.py @@ -250,10 +250,10 @@ def main(): cc_files = get_src_files(search_dir, (".cc",)) # assert len(cc_files) > 0 if not len(cc_files) > 0: - print("WARNING: Not .cc files found.") - + print("WARNING: Not .cc files found.") + print("search_dir: ", search_dir) print(str(subprocess.run(["pwd"], stdout=subprocess.PIPE).stdout)) - tree = subprocess.run(["tree", search_dir, "-L", "2"], stdout=subprocess.PIPE, text=True) + tree = subprocess.run(["tree", str(search_dir), "-L", "2"], stdout=subprocess.PIPE, text=True) print(tree.stdout) print("Checking Component Parameters of" " {} *.cc files".format(len(cc_files)))