We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f680543 + 4d37ac6 commit 8f592b1Copy full SHA for 8f592b1
1 file changed
Runner/suites/Multimedia/Audio/AudioRecord/run.sh
@@ -84,7 +84,7 @@ while [ $# -gt 0 ]; do
84
DURATIONS="$2"
85
shift 2
86
;;
87
- --rec-secs)
+ --rec-secs|--record-seconds)
88
REC_SECS="$2"
89
90
@@ -97,8 +97,16 @@ while [ $# -gt 0 ]; do
97
98
99
--strict)
100
- STRICT=1
101
- shift
+ case "$2" in
+ --*|"")
102
+ STRICT=1
103
+ shift
104
+ ;;
105
+ *)
106
+ STRICT="$2"
107
+ shift 2
108
109
+ esac
110
111
--no-dmesg)
112
DMESG_SCAN=0
0 commit comments