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>
13 lines
324 B
Bash
Executable File
13 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
# Find device number in /sys/bus/usb/drivers/drivername
|
|
# Edit this file to update the driver numer and name
|
|
# Example test for uvcvideo driver
|
|
#i=0
|
|
# while :; do
|
|
# i=$((i+1))
|
|
# echo 1-5:1.0 > /sys/bus/usb/drivers/uvcvideo/unbind;
|
|
# echo 1-5:1.0 > /sys/bus/usb/drivers/uvcvideo/bind;
|
|
# clear
|
|
# echo $i
|
|
#done
|