In order to learn Coq, I downloaded Benjamin Pierce's ebook Software Foundations from here, and extracted the contents. I am now starting to work through the exercises in Basics.v, by editing the file directly in Vim.
I would like to automatically grade my answers (e.g. to track my point score against time).
In preparation for this, I ran coqc against each of the .v files in the order given in the Makefile. As such, I am now able to invoke, e.g. coqtop -batch -l BasicsTest.v.
However, although this reports the available number of points for that chapter, it does not report my score. (I am mid-way through the chapter, and am confident my answers so far are correct, as coqtop -batch -l Basics.v executes without errors.)
I suspect I have overlooked an invocation of Make or Coq that will produce a points score for my answers so far. If so, what is it?