1 #!/bin/sh 1 #!/bin/sh 2 # SPDX-License-Identifier: GPL-2.0 2 # SPDX-License-Identifier: GPL-2.0 3 # Runs tests for the HID subsystem 3 # Runs tests for the HID subsystem 4 4 5 if ! command -v python3 > /dev/null 2>&1; then 5 if ! command -v python3 > /dev/null 2>&1; then 6 echo "hid-tools: [SKIP] python3 not in 6 echo "hid-tools: [SKIP] python3 not installed" 7 exit 77 7 exit 77 8 fi 8 fi 9 9 10 if ! python3 -c "import pytest" > /dev/null 2> 10 if ! python3 -c "import pytest" > /dev/null 2>&1; then 11 echo "hid: [SKIP/ pytest module not in 11 echo "hid: [SKIP/ pytest module not installed" 12 exit 77 12 exit 77 13 fi 13 fi 14 14 15 if ! python3 -c "import pytest_tap" > /dev/nul 15 if ! python3 -c "import pytest_tap" > /dev/null 2>&1; then 16 echo "hid: [SKIP/ pytest_tap module no 16 echo "hid: [SKIP/ pytest_tap module not installed" 17 exit 77 17 exit 77 18 fi 18 fi 19 19 20 if ! python3 -c "import hidtools" > /dev/null 20 if ! python3 -c "import hidtools" > /dev/null 2>&1; then 21 echo "hid: [SKIP/ hid-tools module not 21 echo "hid: [SKIP/ hid-tools module not installed" 22 exit 77 22 exit 77 23 fi 23 fi 24 24 25 TARGET=${TARGET:=.} 25 TARGET=${TARGET:=.} 26 26 27 echo TAP version 13 27 echo TAP version 13 28 python3 -u -m pytest $PYTEST_XDIST ./tests/$TA 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.