Autograder
The autograder does not run when you commit files to the repository. Instead, the autograder is manually run a few times immediately before and immediately after the deadline.
The autograder creates the following files inside your subversion directory. These files are at the root level (i.e. they are not inside the MP project). Use the Eclipse view "SVN Repository" to read their contents.
result_summary.txt
- This file includes a summary of how well you did each time the autograding was performed. The file will contain lines simililar to the following:
- 20071031-10_55_37.628,YOUR-NET-ID,MP6,3
- i.e. On Halloween at nearly 11am your MP6 project was awarded 3 points
- i.e. Check the details inside the directory 20071031-10_55_37.628 for more information.
- Your final score will be based on the maximum value in the last column.
lastgradetime
- Ignore this file; it's used by the autograder to check whether you've changed your files.
20071031-10_58_10.641/
- The results of the grading cycle (compile and run unit tests)
- The directory name is the date and time (to the nearest of the millisecond) of the test.
- Inside you'll find the following files:
- compile_log.txt
- Check this to see if the project compiled correctly.
- result.txt
- The number of points that the autograder awarded
- revision.txt
- subversion information about which version of your files were used in this test.
- Use the information in here to figure out if it was testing your latest version.
- stderr.txt
- Any error output during testing is sent to this file (probably empty)
- stdout.txt
- The raw output from running the unit tests.
- The name of the unit test that failed is often useful.