#!/bin/sh

set -e
set -u

cp -a tests "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"/tests/

echo ========= BUILDING TEST PROGRAM =========
g++ BS_thread_pool_test.cpp -o thread_pool_test

echo ========= RUNNING TEST PROGRAM =========
./thread_pool_test
