#!/bin/sh
set -efux

cp testinstall.cc "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

g++ --std=c++14 -Wall -o testinstall testinstall.cc $(pkgconf --libs re2)

./testinstall
