Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
remzi-arpacidusseau
GitHub Repository: remzi-arpacidusseau/ostep-projects
Path: blob/master/initial-xv6/test-getreadcount.sh
909 views
1
#! /bin/bash
2
3
if ! [[ -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
8
fi
9
10
../tester/run-tests.sh $*
11
12
13
14