25 lines
580 B
Bash
Executable File
25 lines
580 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check if we have enough arguments
|
|
|
|
# Delete temporary files
|
|
|
|
# Compile the reference program
|
|
|
|
# Generate reference output files
|
|
|
|
# Now mark submissions
|
|
|
|
#
|
|
# Note: See Lab02Qn.pdf for format of output file. Marks will be deducted for missing elements.
|
|
#
|
|
|
|
# Iterate over every submission directory
|
|
# Compile C code
|
|
# Print compile error message to output file
|
|
# Generate output from C code using *.in files in ref
|
|
# Compare with reference output files and award 1 mark if they are identical
|
|
# print score for student
|
|
# print total files marked.
|
|
|