mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-26 02:25:00 -05:00
fe8777a8a0
Add regression test scripts open_loop_test.sh, and bind_unbind_sample.sh. Also add regression_test.txt that describes the regression test procedure. Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
10 lines
150 B
Bash
Executable file
10 lines
150 B
Bash
Executable file
#!/bin/bash
|
|
i=0
|
|
file=/dev/media$1
|
|
while :; do
|
|
echo $file
|
|
i=$((i+1))
|
|
R=$(./media_device_open -d $file);
|
|
# clear
|
|
echo -e "Loop $i\n$R"
|
|
done
|