]> mj.ucw.cz Git - eval.git/blob - config
Basically works.
[eval.git] / config
1 # Configuration file for MO Evaluator
2 # (c) 2001 Martin Mares <mj@ucw.cz>
3
4 # Directories and users
5 MO_ROOT=/aux/mo
6 EVAL_USER=mo-eval
7 EVAL_GROUP=mo-eval
8 TEST_USERS="mo-test1 mo-test2"
9
10 # Currently used test user
11 TEST_USER=mo-eval
12
13 ### all of the following variables can be overriden in per-task config file
14
15 # Known source file extensions
16 EXTENSIONS="c C cpp p pas"
17
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'
21 COMP_cpp="$COMP_C"
22 COMP_p='/usr/bin/fpc -o $EXE $SRC'
23 COMP_pas="$COMP_p"
24
25 # Sandbox options used when compiling
26 COMP_SANDBOX_OPTS='-m65536 -t60 -w -e'
27
28 # Shell command used to run the tests
29 TEST_RUN_METHOD="test-run-with-files"
30
31 # Sandbox options used when testing
32 TEST_SANDBOX_OPTS='-a2 -f -m$MEM_LIMIT -t$TIME_LIMIT -w'
33 # For stdio tasks append '-i$PROBLEM.in -o$PROBLEM.out'