#!/usr/bin/env bash

if [ -z "$SAGE_LOCAL" ]; then
    echo "Error: SAGE_LOCAL undefined - exiting..."
    echo "Maybe run 'sage -sh'?"
    exit 1
fi

cd src

mv src/icas src/icas.orig
# testing the newly installed version of giac
ln -s $SAGE_LOCAL/bin/giac src/icas
$MAKE check

if [ $? -ne 0 ]; then
  echo "There was a problem during the giac tests."
  exit 1
fi

