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 05ffcc0Copy full SHA for 05ffcc0
test-case/check-sof-logger.sh
@@ -71,7 +71,14 @@ 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
+ # test -e /proc/asound/sof*/id
75
+ # - https://github.com/thesofproject/sof-test/issues/1243
76
+ # Internal issue #615
77
+ # Designed to support multiple sof*
78
+ for i in /proc/asound/sof*/id; do
79
+ if test -e "$i"; then return 0; fi
80
+ done
81
+ return 1
82
}
83
84
wait_for_sof_alsa_card()
0 commit comments