1 # Configuration file for the MO Evaluator
2 # (c) 2001--2008 Martin Mares <mj@ucw.cz>
4 # The root of the whole directory hierarchy
7 # User and group used by the evaluator itself
11 # Test user for the sandbox. You can let mo-setup create more test users
12 # and then run several evaluators in parallel, each in its own sandbox.
13 # For testing, you can also leave TEST_USER undefined and run the sandbox
14 # with EVAL_USER privileges, but beware, this is INSECURE.
15 #TEST_USER=${TEST_USER:-mo-test1}
16 TEST_USERS="mo-test1 mo-test2"
19 # These values are used when creating logins for eval and contestants
20 # (group id's are from the same range)
25 # Sometimes we need to get a list of all contestants (not in the evaluator
26 # itself, but in various auxiliary scripts). In such cases we call mo-get-users,
27 # which either uses an explicit list of contestants CT_USER_LIST (username<tab>fullname),
28 # or (if undefined) scans /etc/passwd for users with UID between CT_UID_MIN and CT_UID_MAX.
31 # (optional) Use remote submitting
33 REMOTE_SUBMIT_USER=mo-submit
34 REMOTE_SUBMIT_GROUP=mo-submit
36 ### Programming language settings
38 # Known source file extensions
39 EXTENSIONS="c cc C cpp p pas"
41 ## Variables which control compilation and execution
42 ## (see below for values for individual languages)
44 # Command used to run the compiler
47 # Sandbox options used when compiling
48 COMP_SANDBOX_OPTS='-m262144 -w60 -e -i/dev/null'
50 # Sandbox initialization commands for compilation
53 ## Settings for individual languages
56 EXT_c_COMP='/usr/bin/gcc -std=gnu99 -O2 -g -o $EXE $EXTRA_CFLAGS $SRC -lm'
60 EXT_C_COMP='/usr/bin/g++ -O2 -g -o $EXE $EXTRA_CXXFLAGS $SRC -lm'
61 EXT_cpp_COMP="$EXT_C_COMP"
62 EXT_cc_COMP="$EXT_C_COMP"
66 EXT_p_COMP='/usr/bin/fpc -Ci -Cr -Ct -g -O2 -Sg -o$EXE $EXTRA_PFLAGS $SRC'
67 EXT_pas_COMP="$EXT_p_COMP"
70 # Translate FreePascal exit codes to names of well-known runtime errors
73 ### Per-task configuration variables (default values, override in per-task config)
75 # List of extra files needed for compilation. They are copied to the compiler
76 # sandbox from the problem's directory.
77 #COMP_EXTRAS="extras.h"
79 ## Tester settings (most can be overriden in per-test config):
81 # The following variables are automatically set by the evaluator:
82 # PROBLEM name of the problem
83 # HDIR home directory of the evaluator (i.e., this file is $HDIR/config)
84 # PDIR directory containing problem data
85 # SDIR directory containing contestant's solution
86 # TDIR directory containing testing results
87 # TMPDIR directory containing temporary files
88 # TEST name of the current test
91 # offline off-line task
92 # interactive interactive task communicating via stdio with a testing program
93 # open-data open-data task (i.e., we don't submit program, but output files)
96 # I/O type (IO_TYPE sets defaults for IN_TYPE and OUT_TYPE)
97 # file input from $PROBLEM.in, output to $PROBLEM.out (possible even for interactive tasks)
98 # stdio input from stdin, output to stdout
99 # none no input/output
104 # A list of all tests
105 TESTS="1 2 3 4 5 6 7 8 9 10"
107 # A list of public tests (executed by submit and check scripts)
110 # Number of points per test
113 # Time limit in seconds (can be fractional, but beware of noise)
116 # Memory limit in kilobytes
119 # Command used for filtering of program output (optional)
120 # If turned on, program output (*.raw) is ran through this filter and the
121 # checkers are applied to the output of the filter (*.out).
122 # Can exit with code 1 if there is a syntax error in the output.
123 #OUTPUT_FILTER='tr -d '\''\r'\'' <$TDIR/$TEST.raw >$TDIR/$TEST.out'
125 # Command used to check output syntax (optional)
126 # Returns exit code 1 if syntax is wrong, 0 if correct
127 # fd1 is connect to evaluator log, feel free to log anything
128 # fd2 is an optional one-line verdict
129 #SYNTAX_CHECK='grep -v -- - $TDIR/$TEST.out'
131 # Command used to check output correctness
132 # Returns exit code 1 if output is incorrect, 0 if correct
133 # fd1 is connect to evaluator log, feel free to log anything
134 # fd2 is an optional one-line verdict
135 # The checker can generate $TDIR/$TEST.pts to assign points irregularly
136 OUTPUT_CHECK='diff -bBu $TDIR/$TEST.ok $TDIR/$TEST.out'
138 # Checker for interactive tasks
139 # Returns exit code 1 if test failed, 0 if passed
140 # fd0 and fd1 are connected to fd1 and fd0 of the program tested
141 # fd2 is an optional one-line verdict
142 # The checker can generate $TDIR/$TEST.pts to assign points irregularly
143 #IC_CHECK='$PDIR/checker $PDIR/$TEST.in $PDIR/$TEST.chk'
145 # Sandbox options used when testing
146 TEST_SANDBOX_OPTS='-a2 -f -m$MEM_LIMIT -t$TIME_LIMIT $BOX_EXTRAS'
148 # Extra options to be overridden in task configuration
151 # Sandbox initialization commands
154 ### Debugging and testing
156 # DEBUG: Let `ev' run sample tests, too.
159 # DEBUG: Run `pedant' on all input data. Set either to `1' or to pedant's options.
162 # DEBUG: Skip checks (useful when generating output files by running model solution)
165 # DEBUG: Skip output filters (if you suspect they are buggy)
168 ### Variables overrides (most variables can be overridden for specific tests or source extensions):
170 #EXT_pas_TIME_LIMIT=100
171 #TEST_1_TIME_LIMIT=100
172 #EXT_pas_TEST_1_TIME_LIMIT=100