From 05d9dd2cb8cbec428fe57361e5e5d75e6346cba6 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Sun, 31 Mar 2019 08:57:03 -0500 Subject: [PATCH] better message for testing wrapper --- initial-xv6/test-getreadcount.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/initial-xv6/test-getreadcount.sh b/initial-xv6/test-getreadcount.sh index 0057808..1c9c4c9 100755 --- a/initial-xv6/test-getreadcount.sh +++ b/initial-xv6/test-getreadcount.sh @@ -1,7 +1,9 @@ #! /bin/bash if ! [[ -d src ]]; then - echo "src dir does not exist" + 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