#! /bin/sh

LOG = `mktemp --suffix=.buildlog`

function error {
  cat $LOG
  exit 1
}

echo Testing ...
cargo test > $LOG 