X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=examples%2Fproblems%2Fsum%2Fconfig;h=c22fc21abc4a5d7c6628edf0a4ee7a2af6d74c5a;hb=HEAD;hp=6cd4c6dd7911498915f997726f972ca16da9aa06;hpb=283214723416710aaf5d94b9c1e3527fa6f1208e;p=moe.git diff --git a/examples/problems/sum/config b/examples/problems/sum/config index 6cd4c6d..c22fc21 100644 --- a/examples/problems/sum/config +++ b/examples/problems/sum/config @@ -1,8 +1,26 @@ # Per-task config +# All variables can be overriden in test-specific .config +# A list of all tests TESTS="1 2" + +# Test with example input +SAMPLE_TESTS=1 + +# 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'