diff --git a/os161-container/helpers.sh b/os161-container/helpers.sh index ecf31740f2da596e66c72056835721e9f6aab4cf..cd0e4db2924f23fe223ec12faf32a40432f5f4c8 100755 --- a/os161-container/helpers.sh +++ b/os161-container/helpers.sh @@ -36,12 +36,12 @@ build_k_helper() { cd ../compile/$1 echo "[CS350] $1 Making Kernel..." touch $LOGS/depend.log - bmake depend >> $LOGS/depend.log 2>> $LOG/depend.log + bmake depend >> $LOGS/depend.log 2>> $LOGS/depend.log # Make and install - step 3 touch $LOGS/make.log - bmake WERROR= >> $LOGS/make.log 2>> $LOG/make.log - bmake install >> $LOGS/make.log 2>> $LOG/make.log + bmake WERROR= >> $LOGS/make.log 2>> $LOGS/make.log + bmake install >> $LOGS/make.log 2>> $LOGS/make.log cd /os-compile/ cp /sys161.conf . @@ -60,6 +60,7 @@ test_kernel() { if [ "$#" -ne 1 ]; then echo "Usage: test_kernel <ASST0, ASST1 ...>" fi + echo $LOGS cd /os-compile echo "[CS350] Tests $1" @@ -81,6 +82,7 @@ test_kernel() { done done cd - > /dev/null + echo $LOGS /evalaute $LOGS/test_public.log /assignments/$1 }