#!/bin/bash

if [[ "$(uname)" == "Darwin" ]]; then
    ncores=`sysctl -n hw.ncpu`
else
    ncores=`nproc`
fi

make -j "$ncores" test
