Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

volume-basic-test.sh: switch to .tplg parsing to test topologies v2 #1193

Merged
merged 4 commits into from
May 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/tplgtool2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1330,6 +1330,7 @@ def main():
errors = 0
for f in files:
tplg = GroupedTplg(tplgFormat.parse_file(f))
assert set(dump_types) <= set(supported_dump), f"unsupported type in {dump_types}"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no idea what this does.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Before this commit, a typo in the command-line argument was silently producing no output.

if 'pcm' in dump_types:
tplg.print_pcm_info()
if 'graph' in dump_types:
Expand Down