forked from Minki/linux
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>
11 lines
150 B
Bash
Executable File
11 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
|