|
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 '\bvar\b|\breturn\b|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 if [ $tsts1 -eq 0 ] |
|
69 then |
|
70 echo " ordered_moves(8, List((3,4), (3,2)), (1, 3)) == List((0,1), (0,5), (2,1), (2,5))" | tee -a $out |
|
71 echo " ordered_moves(8, List((4,0)), (0,0)) == List((2,1), (1,2))" | tee -a $out |
|
72 echo " ordered_moves(8, List((0,4)), (0,0)) == List((1,2), (2,1))" | tee -a $out |
|
73 |
|
74 if (scala_assert "knight3.scala.bak" "../../../marking/knight3a_test.scala") |
|
75 then |
|
76 echo " --> success" | tee -a $out |
|
77 marks=$(( marks + 1 )) |
|
78 else |
|
79 echo " --> test failed" | tee -a $out |
|
80 fi |
|
81 fi |
|
82 |
|
83 if [ $tsts1 -eq 0 ] |
|
84 then |
|
85 echo " first_closed_tour_heuristic(6, List((3, 3))) found and ok?" | tee -a $out |
|
86 |
|
87 if (scala_assert "knight3.scala.bak" "../../../marking/knight3b_test.scala") |
|
88 then |
|
89 echo " --> success" | tee -a $out |
|
90 marks=$(( marks + 1 )) |
|
91 else |
|
92 echo " --> test failed" | tee -a $out |
|
93 fi |
|
94 fi |
|
95 |
|
96 if [ $tsts1 -eq 0 ] |
|
97 then |
|
98 echo " first_tour_heuristic(8, List((0,0))) found and ok?" | tee -a $out |
|
99 echo " first_tour_heuristic(50, List((0,0))) found and ok?" | tee -a $out |
|
100 |
|
101 if (scala_assert "knight3.scala.bak" "../../../marking/knight3c_test.scala") |
|
102 then |
|
103 echo " --> success" | tee -a $out |
|
104 marks=$(( marks + 1 )) |
|
105 else |
|
106 echo " --> test failed" | tee -a $out |
|
107 fi |
|
108 fi |
|
109 |
|
110 |
|
111 ## final marks |
|
112 echo "Overall mark for CW 7, Part 2" | tee -a $out |
|
113 echo "$marks" | tee -a $out |