1 #!/bin/sh 2 # SPDX-License-Identifier: GPL-2.0 3 # Runs tests for the HID subsystem 4 5 if ! command -v python3 > /dev/null 2>&1; then 6 echo "hid-tools: [SKIP] python3 not installed" 7 exit 77 8 fi 9 10 if ! python3 -c "import pytest" > /dev/null 2>&1; then 11 echo "hid: [SKIP/ pytest module not installed" 12 exit 77 13 fi 14 15 if ! python3 -c "import pytest_tap" > /dev/null 2>&1; then 16 echo "hid: [SKIP/ pytest_tap module not installed" 17 exit 77 18 fi 19 20 if ! python3 -c "import hidtools" > /dev/null 2>&1; then 21 echo "hid: [SKIP/ hid-tools module not installed" 22 exit 77 23 fi 24 25 TARGET=${TARGET:=.} 26 27 echo TAP version 13 28 python3 -u -m pytest $PYTEST_XDIST ./tests/$TARGET --tap-stream --udevd
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.