libinput/tests/libinput-test-suite/runtest.sh

17 lines
327 B
Bash
Raw Normal View History

#!/bin/bash
2019-03-08 06:52:48 +00:00
export # let's see what's available
2019-03-08 03:49:04 +00:00
pwd
set -e
2019-03-08 06:52:48 +00:00
ls /dev/input # if this fails, we don't have a VM
ls /dev/uinput # same as above
# this is where the standard-test-source extracts to
2019-03-08 05:59:26 +00:00
pushd ../source
meson builddir -Ddocumentation=false -Dtests=true -Ddebug-gui=false
ninja -C builddir test
popd > /dev/null