1 # Configuration file for MO Evaluator
2 # (c) 2001 Martin Mares <mj@ucw.cz>
4 # Directories and users
8 TEST_USERS="mo-test1 mo-test2"
10 # Currently used test user
13 ### all of the following variables can be overriden in per-task config file
15 # Known source file extensions
16 EXTENSIONS="c C cpp p pas"
18 # For each source extension, we must give compiler command
19 COMP_c='/usr/bin/gcc -o $EXE $SRC'
20 COMP_C='/usr/bin/g++ -o $EXE $SRC'
22 COMP_p='/usr/bin/fpc -o $EXE $SRC'
25 # Sandbox options used when compiling
26 COMP_SANDBOX_OPTS='-m65536 -t60 -w -e'
28 # Sandbox options used when testing
29 TEST_SANDBOX_OPTS='-a2 -f -m$MEM_LIMIT -t$TIME_LIMIT -w'
30 # For stdio tasks append '-i$PROBLEM.in -o$PROBLEM.out'