Advertisement
Guest User

ejudge config

a guest
Sep 11th, 2012
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. # -*- coding: UTF-8 -*-
  2. # $Id$
  3. contest_id = 1200
  4.  
  5. contest_time = 270
  6. score_system = acm
  7. board_fog_time = 0
  8. board_unfog_time = 0
  9. standings_locale = "ru"
  10.  
  11. compile_dir = "../../compile/var/compile"
  12.  
  13. team_enable_src_view
  14. team_enable_rep_view
  15. team_enable_ce_view
  16. ignore_compile_errors
  17. problem_navigation
  18.  
  19.  
  20.  
  21. external_xml_update_time = 30
  22.  
  23.  
  24. rounding_mode = floor
  25. cr_serialization_key = 22723
  26. enable_runlog_merge
  27. secure_run
  28. enable_memory_limit_error
  29. advanced_layout
  30. enable_l10n
  31. team_download_time = 0
  32. cpu_bogomips = 6825
  33.  
  34. [language]
  35. id = 1
  36. short_name = "fpc"
  37. long_name = "Free Pascal 2.6.0"
  38. src_sfx = ".pas"
  39.  
  40. [language]
  41. id = 2
  42. short_name = "gcc"
  43. long_name = "GNU C 4.7.1"
  44. src_sfx = ".c"
  45.  
  46. [language]
  47. id = 3
  48. short_name = "g++"
  49. long_name = "GNU C++ 4.7.1"
  50. src_sfx = ".cpp"
  51.  
  52. [language]
  53. id = 8
  54. short_name = "dcc"
  55. long_name = "Borland Delphi 6 (Kylix) 14.5"
  56. arch = "linux-shared-32"
  57. src_sfx = ".pas"
  58.  
  59. [language]
  60. id = 18
  61. short_name = "javac"
  62. long_name = "Java JDK 1.6.0_24"
  63. arch = "java"
  64. src_sfx = ".java"
  65. exe_sfx = ".jar"
  66.  
  67. [language]
  68. id = 23
  69. short_name = "python3"
  70. long_name = "Python 3.2.3"
  71. arch = "linux-shared"
  72. src_sfx = ".py"
  73.  
  74. [problem]
  75. abstract
  76. short_name = "Generic"
  77. test_dir = "%Ps"
  78. test_pat = "%02d"
  79. use_corr
  80. corr_dir = "%Ps"
  81. corr_pat = "%02d.a"
  82. info_dir = "%Ps"
  83. tgz_dir = "%Ps"
  84. time_limit = 1
  85. real_time_limit = 5
  86. max_vm_size = 64M
  87. check_cmd = "check"
  88.  
  89. /* тут описание задач, которое я удалил */
  90.  
  91. [tester]
  92. name = Generic
  93. arch = ""
  94. abstract
  95. no_core_dump
  96. enable_memory_limit_error
  97. kill_signal = KILL
  98. memory_limit_type = "default"
  99. secure_exec_type = "static"
  100. clear_env
  101. start_env = "PATH=/usr/local/bin:/usr/bin:/bin"
  102. start_env = "HOME"
  103.  
  104. [tester]
  105. name = Linux-shared
  106. arch = "linux-shared"
  107. abstract
  108. no_core_dump
  109. enable_memory_limit_error
  110. kill_signal = KILL
  111. memory_limit_type = "default"
  112. secure_exec_type = "dll"
  113. clear_env
  114. start_env = "PATH=/usr/local/bin:/usr/bin:/bin"
  115. start_env = "HOME"
  116.  
  117. [tester]
  118. name = Linux-shared-32
  119. arch = "linux-shared-32"
  120. abstract
  121. no_core_dump
  122. enable_memory_limit_error
  123. kill_signal = KILL
  124. memory_limit_type = "default"
  125. secure_exec_type = "dll32"
  126. clear_env
  127. start_env = "PATH=/usr/local/bin:/usr/bin:/bin"
  128. start_env = "HOME"
  129.  
  130. [tester]
  131. name = Linux-java
  132. arch = "java"
  133. abstract
  134. no_core_dump
  135. kill_signal = TERM
  136. memory_limit_type = "java"
  137. secure_exec_type = "java"
  138. start_cmd = "runjava"
  139. start_env = "LANG=C"
  140. start_env = "EJUDGE_PREFIX_DIR"
  141.  
  142. [tester]
  143. any
  144. super = Generic
  145.  
  146. [tester]
  147. any
  148. super = Linux-shared
  149. arch = linux-shared
  150.  
  151. [tester]
  152. any
  153. super = Linux-shared-32
  154. arch = linux-shared-32
  155.  
  156. [tester]
  157. any
  158. super = Linux-java
  159. arch = java
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement