2 # SPDX-License-Identifier: GPL-2.0
3 # Media Device Allocator API test script
4 # Copyright (c) 2019 Shuah Khan <shuah@kernel.org>
6 echo "Media Device Allocator testing: unbind and bind"
7 echo "media driver $1 audio driver $2"
9 MDRIVER
=/sys
/bus
/usb
/drivers
/$1
13 ADRIVER
=/sys
/bus
/usb
/drivers
/$2
17 echo "=================================="
18 echo "Test unbind both devices - start"
19 echo "Running unbind of $MDEV from $MDRIVER"
20 echo $MDEV > $MDRIVER/unbind
;
22 echo "Media device should still be present!"
25 echo "sound driver is at: $ADRIVER"
26 echo "Device is: $ADEV"
28 echo "Running unbind of $ADEV from $ADRIVER"
29 echo $ADEV > $ADRIVER/unbind
;
31 echo "Media device should have been deleted!"
33 echo "Test unbind both devices - end"
35 echo "=================================="
37 echo "Test bind both devices - start"
38 echo "Running bind of $MDEV from $MDRIVER"
39 echo $MDEV > $MDRIVER/bind;
41 echo "Media device should be present!"
44 echo "Running bind of $ADEV from $ADRIVER"
45 echo $ADEV > $ADRIVER/bind;
47 echo "Media device should be there!"
50 echo "Test bind both devices - end"
52 echo "=================================="
54 echo "Test unbind $MDEV - bind $MDEV - unbind $ADEV - bind $ADEV start"
56 echo "Running unbind of $MDEV from $MDRIVER"
57 echo $MDEV > $MDRIVER/unbind
;
59 echo "Media device should be there!"
64 echo "Running bind of $MDEV from $MDRIVER"
65 echo $MDEV > $MDRIVER/bind;
67 echo "Media device should be there!"
70 echo "Running unbind of $ADEV from $ADRIVER"
71 echo $ADEV > $ADRIVER/unbind
;
73 echo "Media device should be there!"
78 echo "Running bind of $ADEV from $ADRIVER"
79 echo $ADEV > $ADRIVER/bind;
81 echo "Media device should be there!"
84 echo "Test unbind $MDEV - bind $MDEV - unbind $ADEV - bind $ADEV end"
85 echo "=================================="