#!/bin/bash

set -e

echo "creating makefile for tests"
./gyp_uv.py -f make

echo "creating test binaries"
make -C out

echo "Runing tests"
./out/Debug/run-tests

echo "tests are done"
