86
|
1 |
#!/bin/bash
|
|
2 |
set -e
|
|
3 |
|
|
4 |
out=${1:-output}
|
|
5 |
|
|
6 |
echo "" > $out
|
|
7 |
|
|
8 |
echo "Below is the feedback and provisional mark for your submission" >> $out
|
|
9 |
echo "for CW 7, Part 2. Please note all marks are provisional until" >> $out
|
|
10 |
echo "ratified by the assessment board -- this is not an official" >> $out
|
|
11 |
echo "results transcript." >> $out
|
|
12 |
echo "" >> $out
|
|
13 |
|
|
14 |
function scala_vars {
|
|
15 |
(egrep 'var|return|ListBuffer|mutable' "$1" 2> /dev/null 1> /dev/null)
|
|
16 |
}
|
|
17 |
|
|
18 |
|
|
19 |
# compilation tests
|
|
20 |
|
|
21 |
function scala_compile {
|
|
22 |
(scala "$1" 2> /dev/null 1> /dev/null)
|
|
23 |
}
|
|
24 |
|
|
25 |
|
|
26 |
# functional tests
|
|
27 |
|
|
28 |
function scala_assert {
|
|
29 |
(scala -i "$1" "$2" -e "" 2> /dev/null 1> /dev/null)
|
|
30 |
}
|
|
31 |
|
|
32 |
|
|
33 |
# marks for CW2b
|
|
34 |
marks=$(( 0 ))
|
|
35 |
|
|
36 |
|
|
37 |
# knights3: var, comments test
|
|
38 |
#
|
|
39 |
echo "knight3.scala does not contain vars, returns etc?" | tee -a $out
|
|
40 |
|
|
41 |
if (scala_vars knight3.scala)
|
|
42 |
then
|
|
43 |
echo " --> fail" | tee -a $out
|
|
44 |
tsts0=$(( 1 ))
|
|
45 |
else
|
|
46 |
echo " --> yes" | tee -a $out
|
|
47 |
tsts0=$(( 0 ))
|
|
48 |
fi
|
|
49 |
|
|
50 |
|
|
51 |
# compilation test
|
|
52 |
if [ $tsts0 -eq 0 ]
|
|
53 |
then
|
|
54 |
echo "knight3.scala runs?" | tee -a $out
|
|
55 |
|
|
56 |
if (scala_compile knight3.scala.bak)
|
|
57 |
then
|
|
58 |
echo " --> yes" | tee -a $out
|
|
59 |
tsts1=$(( 0 ))
|
|
60 |
else
|
|
61 |
echo " --> scala knight3.scala did not run successfully" | tee -a $out
|
|
62 |
tsts1=$(( 1 ))
|
|
63 |
fi
|
|
64 |
else
|
|
65 |
tsts1=$(( 1 ))
|
|
66 |
fi
|
|
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
## final marks
|
|
73 |
echo "Overall mark for CW 7, Part 2" | tee -a $out
|
|
74 |
echo "$marks" | tee -a $out
|