Skip to content

Commit

Permalink
Remove 'contents of test directory' output. (#33852)
Browse files Browse the repository at this point in the history
This does not seem useful right now: it just outputs
a "ls -l" on connectedhomip and it is unclear why
we have it.
  • Loading branch information
andy31415 authored and pull[bot] committed Jul 18, 2024
1 parent 42c0144 commit 96e65f8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions scripts/tests/run_java_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ def main(app: str, app_args: str, tool_path: str, tool_cluster: str, tool_args:
if retcode != 0:
raise Exception("Failed to remove /tmp/chip* for factory reset.")

print("Contents of test directory: %s" % os.getcwd())
print(subprocess.check_output(["ls -l"], shell=True).decode('utf-8'))

# Remove native app KVS if that was used
kvs_match = re.search(r"--KVS (?P<kvs_path>[^ ]+)", app_args)
if kvs_match:
Expand Down
3 changes: 0 additions & 3 deletions scripts/tests/run_kotlin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ def main(app: str, app_args: str, tool_path: str, tool_cluster: str, tool_args:
if retcode != 0:
raise Exception("Failed to remove /tmp/chip* for factory reset.")

print("Contents of test directory: %s" % os.getcwd())
print(subprocess.check_output(["ls -l"], shell=True).decode('utf-8'))

# Remove native app KVS if that was used
kvs_match = re.search(r"--KVS (?P<kvs_path>[^ ]+)", app_args)
if kvs_match:
Expand Down
3 changes: 0 additions & 3 deletions scripts/tests/run_python_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ def main(app: str, factoryreset: bool, factoryreset_app_only: bool, app_args: st
if retcode != 0:
raise Exception("Failed to remove /tmp/chip* for factory reset.")

print("Contents of test directory: %s" % os.getcwd())
print(subprocess.check_output(["ls -l"], shell=True).decode('utf-8'))

# Remove native app KVS if that was used
kvs_match = re.search(r"--KVS (?P<kvs_path>[^ ]+)", app_args)
if kvs_match:
Expand Down

0 comments on commit 96e65f8

Please sign in to comment.