forked from Minki/linux
d78388dbec
Add a new video device test that opens user specified Video Device and calls video ioctls in a loop once every 10 seconds. This test is intended for testing device removal and driver unbind while an ioctl is active. Clean device removal and driver unbind is expected without any use-after-free and panics. Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
8 lines
176 B
Makefile
8 lines
176 B
Makefile
TEST_PROGS := media_device_test media_device_open video_device_test
|
|
all: $(TEST_PROGS)
|
|
|
|
include ../lib.mk
|
|
|
|
clean:
|
|
rm -fr media_device_test media_device_open video_device_test
|