#!/bin/sh

set -eu

export PATH="$PATH:/usr/libexec"

patch -p1 <debian/tests/patches/tests.patch

meson setup build
cd build
ninja test

exit 0
