13 lines
229 B
Bash
Executable File
13 lines
229 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if ! [[ -d src ]]; then
|
|
echo "The src/ dir does not exist."
|
|
echo "Your xv6 code should be in the src/ directory"
|
|
echo "to enable the automatic tester to work."
|
|
exit 1
|
|
fi
|
|
|
|
../tester/run-tests.sh $*
|
|
|
|
|