2019-03-08 02:04:55 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export # let's see what's available
|
2019-03-08 03:49:04 +00:00
|
|
|
pwd
|
2019-03-08 02:04:55 +00:00
|
|
|
ls /dev/input
|
|
|
|
ls /dev/
|
|
|
|
|
2019-03-08 03:49:04 +00:00
|
|
|
set -e
|
|
|
|
tree # figure out where we are
|
2019-03-08 02:04:55 +00:00
|
|
|
# Can we use the spec file version number here??
|
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
|