mirror of
https://github.com/torvalds/linux.git
synced 2024-12-06 19:11:31 +00:00
ffb85d5c9e
These tests have been developed in the hid-tools[0] tree for a while. Now that we have a proper selftests/hid kernel entry and that the tests are more reliable, it is time to directly include those in the kernel tree. I haven't imported all of hid-tools, the python module, but only the tests related to the kernel. We can rely on pip to fetch the latest hid-tools release, and then run the tests directly from the tree. This should now be easier to request tests when something is not behaving properly in the HID subsystem. [0] https://gitlab.freedesktop.org/libevdev/hid-tools Cc: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
29 lines
663 B
Bash
Executable File
29 lines
663 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Runs tests for the HID subsystem
|
|
|
|
if ! command -v python3 > /dev/null 2>&1; then
|
|
echo "hid-tools: [SKIP] python3 not installed"
|
|
exit 77
|
|
fi
|
|
|
|
if ! python3 -c "import pytest" > /dev/null 2>&1; then
|
|
echo "hid: [SKIP/ pytest module not installed"
|
|
exit 77
|
|
fi
|
|
|
|
if ! python3 -c "import pytest_tap" > /dev/null 2>&1; then
|
|
echo "hid: [SKIP/ pytest_tap module not installed"
|
|
exit 77
|
|
fi
|
|
|
|
if ! python3 -c "import hidtools" > /dev/null 2>&1; then
|
|
echo "hid: [SKIP/ hid-tools module not installed"
|
|
exit 77
|
|
fi
|
|
|
|
TARGET=${TARGET:=.}
|
|
|
|
echo TAP version 13
|
|
python3 -u -m pytest $PYTEST_XDIST ./tests/$TARGET --tap-stream --udevd
|