1#! /bin/bash 2 3if ! [[ -d src ]]; then 4 echo "The src/ dir does not exist." 5 echo "Your xv6 code should be in the src/ directory" 6 echo "to enable the automatic tester to work." 7 exit 1 8fi 9 10../tester/run-tests.sh $* 11 12 13 14