]> mj.ucw.cz Git - eval.git/blob - config
...
[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 # Compilation commands
14 EXTENSIONS="c C cpp p pas"
15 COMP_c='/usr/bin/gcc -o $EXE $SRC'
16 COMP_C='/usr/bin/g++ -o $EXE $SRC'
17 COMP_cpp="$COMP_C"
18 COMP_p='/usr/bin/fpc -o $EXE $SRC'
19 COMP_pas="$COMP_p"
20 COMP_SANDBOX_OPTS='-m65536 -t60 -w -e'
21
22 # Testing commands
23 TEST_RUN_METHOD="test-run-with-files"
24 TEST_SANDBOX_OPTS='-a2 -f -m$MEM_LIMIT -t$TIME_LIMIT -w'