]> mj.ucw.cz Git - moe.git/blobdiff - examples/problems/sum/config
Doc: Note that Isolate has moved
[moe.git] / examples / problems / sum / config
index 6cd4c6dd7911498915f997726f972ca16da9aa06..c22fc21abc4a5d7c6628edf0a4ee7a2af6d74c5a 100644 (file)
@@ -1,8 +1,26 @@
 # Per-task config
 # Per-task config
+# All variables can be overriden in test-specific <test>.config
 
 
+# A list of all tests
 TESTS="1 2"
 TESTS="1 2"
+
+# Test with example input
+SAMPLE_TESTS=1
+
+# Number of points per test
 POINTS_PER_TEST=1
 POINTS_PER_TEST=1
+
+# List of extra files needed for compilation
 EXTRAS="extras.h"
 EXTRAS="extras.h"
-TEST_EXTRAS="extras.h"
+
+# Time limit in seconds
 TIME_LIMIT=10
 TIME_LIMIT=10
+
+# Memory limit in kilobytes
 MEM_LIMIT=16384
 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'