| 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 {
 | 
| 96 |     15 |    (egrep '\bvar\b|\breturn\b|ListBuffer|mutable' "$1" 2> /dev/null 1> /dev/null)
 | 
| 86 |     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 | 
 | 
| 96 |     69 | if [ $tsts1 -eq 0 ]
 | 
|  |     70 | then
 | 
|  |     71 |   echo " ordered_moves(8, List((3,4), (3,2)), (1,3)) == (0,1), (0,5), (2,1), (2,5)" | tee -a $out
 | 
|  |     72 |   echo " ordered_moves(8, List((4,0)), (0,0)) == (2,1), (1,2)" | tee -a $out
 | 
|  |     73 |   echo " ordered_moves(8, List((0,4)), (0,0)) == (1,2), (2,1)" | tee -a $out
 | 
|  |     74 |   
 | 
|  |     75 |   if (scala_assert "knight3.scala.bak" "../../../marking/knight3a_test.scala")
 | 
|  |     76 |   then
 | 
|  |     77 |     echo "  --> success" | tee -a $out
 | 
|  |     78 |     marks=$(( marks + 1 ))
 | 
|  |     79 |   else
 | 
|  |     80 |     echo "  --> test failed" | tee -a $out
 | 
|  |     81 |   fi
 | 
|  |     82 | fi
 | 
| 86 |     83 | 
 | 
| 96 |     84 | if [ $tsts1 -eq 0 ]
 | 
|  |     85 | then
 | 
|  |     86 |   echo " first_closed_tour_heuristic(6, List((3, 3))) is ok?" | tee -a $out
 | 
|  |     87 |   
 | 
|  |     88 |   if (scala_assert "knight3.scala.bak" "../../../marking/knight3b_test.scala")
 | 
|  |     89 |   then
 | 
|  |     90 |     echo "  --> success" | tee -a $out
 | 
|  |     91 |     marks=$(( marks + 1 ))
 | 
|  |     92 |   else
 | 
|  |     93 |     echo "  --> test failed" | tee -a $out
 | 
|  |     94 |   fi
 | 
|  |     95 | fi
 | 
| 86 |     96 | 
 | 
|  |     97 | 
 | 
|  |     98 | ## final marks
 | 
|  |     99 | echo "Overall mark for CW 7, Part 2" | tee -a $out
 | 
|  |    100 | echo "$marks" | tee -a $out
 |