Skip to content

Commit

Permalink
Add ls log for windows debug
Browse files Browse the repository at this point in the history
Signed-off-by: romanodanilo <[email protected]>
  • Loading branch information
romanodanilo committed Jun 4, 2024
1 parent ef9aef8 commit f934319
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions runtime/tests/test_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,15 @@ def check_node_exists(xml_file: str, node_name: str) -> bool:
return len(nodes) > 0


def ls(directory=None):
print(os.listdir(directory))


def test_runtime_execution():
ls()
ls("..")
ls(os.path.join("..", "build"))

install_dir = os.path.join("..", "build", "bin")
os.chdir(install_dir)

Expand Down

0 comments on commit f934319

Please sign in to comment.