#!/bin/bash


function errmsg {
  echo ""
  echo "Please supply the mesa version number for testing as command line argument."
  echo ""
}

if test -z "$1"
then
  errmsg
  exit 1
fi

echo $1 > test_version
./mesa_test_check_out_diff

