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