Skip to content
Snippets Groups Projects
Unverified Commit 1b549d4e authored by Ryan Hancock's avatar Ryan Hancock
Browse files

LOGS not LOG

parent 0d3808b0
No related branches found
No related tags found
No related merge requests found
...@@ -36,12 +36,12 @@ build_k_helper() { ...@@ -36,12 +36,12 @@ build_k_helper() {
cd ../compile/$1 cd ../compile/$1
echo "[CS350] $1 Making Kernel..." echo "[CS350] $1 Making Kernel..."
touch $LOGS/depend.log 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 # Make and install - step 3
touch $LOGS/make.log touch $LOGS/make.log
bmake WERROR= >> $LOGS/make.log 2>> $LOG/make.log bmake WERROR= >> $LOGS/make.log 2>> $LOGS/make.log
bmake install >> $LOGS/make.log 2>> $LOG/make.log bmake install >> $LOGS/make.log 2>> $LOGS/make.log
cd /os-compile/ cd /os-compile/
cp /sys161.conf . cp /sys161.conf .
...@@ -60,6 +60,7 @@ test_kernel() { ...@@ -60,6 +60,7 @@ test_kernel() {
if [ "$#" -ne 1 ]; then if [ "$#" -ne 1 ]; then
echo "Usage: test_kernel <ASST0, ASST1 ...>" echo "Usage: test_kernel <ASST0, ASST1 ...>"
fi fi
echo $LOGS
cd /os-compile cd /os-compile
echo "[CS350] Tests $1" echo "[CS350] Tests $1"
...@@ -81,6 +82,7 @@ test_kernel() { ...@@ -81,6 +82,7 @@ test_kernel() {
done done
done done
cd - > /dev/null cd - > /dev/null
echo $LOGS
/evalaute $LOGS/test_public.log /assignments/$1 /evalaute $LOGS/test_public.log /assignments/$1
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment