]> mj.ucw.cz Git - moe.git/blob - examples/problems/sum/config
Basically works.
[moe.git] / examples / problems / sum / config
1 # Per-task config
2 # All variables can be overriden in test-specific <test>.config
3
4 # A list of all tests
5 TESTS="1 2"
6
7 # Number of points per test
8 POINTS_PER_TEST=1
9
10 # List of extra files needed for compilation
11 EXTRAS="extras.h"
12
13 # Time limit in seconds
14 TIME_LIMIT=10
15
16 # Memory limit in kilobytes
17 MEM_LIMIT=16384
18
19 # Command used to check output syntax (optional)
20 SYNTAX_CHECK='grep -v -- - $TDIR/$TEST.out'
21
22 # Command used to check output correctness
23 OUTPUT_CHECK='diff -bBu $TDIR/$TEST.ok $TDIR/$TEST.out'