Check if the testsuite directory exists

This commit is contained in:
afpr
2014-04-08 16:24:00 +01:00
parent c9d39907f3
commit 6cca060174

View File

@@ -276,6 +276,10 @@ if [[ ! -d $sourcedir ]]; then
echo "Invalid source dir. Go to RTEMS source dir or specify the testsuites source dir with -s."
exit 1
fi
if [[ ! -d $testsuitedir ]]; then
echo "Invalid testsuite dir. Check if the specified BSP is correct."
exit 1
fi
cd $sourcedir
if [[ $resumeflag == 0 ]]; then