Skip to content

Commit

Permalink
add tree output
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Apr 13, 2024
1 parent 8db5b2a commit bf80ae7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions misc/tests/test-parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,10 @@ def main():
print("WARNING: Not .cc files found.")
print("search_dir: ", search_dir)
print(str(subprocess.run(["pwd"], stdout=subprocess.PIPE).stdout))
tree = subprocess.run(["cd", "~"+str(search_dir),], stdout=subprocess.PIPE, text=True)
print(tree.stdout)
tree = subprocess.run(["ls", "~"+str(search_dir),], stdout=subprocess.PIPE, text=True)
print(tree.stdout)
tree = subprocess.run(["tree", str(search_dir), "-L", "2"], stdout=subprocess.PIPE, text=True)
print(tree.stdout)
print("Checking Component Parameters of"
Expand Down

0 comments on commit bf80ae7

Please sign in to comment.