We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057fbe8 commit 402f4bdCopy full SHA for 402f4bd
test-case/check-sof-logger.sh
@@ -71,7 +71,12 @@ sof_alsa_card_found()
71
# note: assumes SOF card names to start with "sof", e.g.
72
# - /proc/asound/sofsoundwire/id
73
# - /proc/asound/sofhdadsp/id
74
- test -e /proc/asound/sof*/id
+ # - https://github.com/thesofproject/sof-test/issues/1243
75
+ # Designed to support multiple SOF instances with SOF probes
76
+ for i in /proc/asound/sof*/id; do
77
+ if test -e "$i"; then return 0; fi
78
+ done
79
+ return 1
80
}
81
82
wait_for_sof_alsa_card()
0 commit comments