X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=examples%2Fproblems%2Fsum%2Fconfig;h=9bcc2bc2602e6a3e712fc8e8808b4a923ae790f6;hb=666506e10535397d92733c7b6df0421c18708d04;hp=6cd4c6dd7911498915f997726f972ca16da9aa06;hpb=283214723416710aaf5d94b9c1e3527fa6f1208e;p=eval.git diff --git a/examples/problems/sum/config b/examples/problems/sum/config index 6cd4c6d..9bcc2bc 100644 --- a/examples/problems/sum/config +++ b/examples/problems/sum/config @@ -1,8 +1,23 @@ # Per-task config +# All variables can be overriden in test-specific .config +# A list of all tests TESTS="1 2" + +# Number of points per test POINTS_PER_TEST=1 + +# List of extra files needed for compilation EXTRAS="extras.h" -TEST_EXTRAS="extras.h" + +# Time limit in seconds TIME_LIMIT=10 + +# Memory limit in kilobytes MEM_LIMIT=16384 + +# Command used to check output syntax (optional) +SYNTAX_CHECK='grep -v -- - $TDIR/$TEST.out' + +# Command used to check output correctness +OUTPUT_CHECK='diff -bBu $TDIR/$TEST.ok $TDIR/$TEST.out'