2019-03-08 02:04:55 +00:00
|
|
|
#!/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
|
2019-03-08 02:04:55 +00:00
|
|
|
|
|
|
|
meson builddir -Ddocumentation=false -Dtests=true -Ddebug-gui=false
|
|
|
|
ninja -C builddir test
|
|
|
|
|
|
|
|
popd > /dev/null
|