Show More
Commit Description:
allow __NR_time in box...
Commit Description:
allow __NR_time in box
git-svn-id: http://theory.cpe.ku.ac.th/grader/judge/trunk/scripts@266 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
std-script/grade
| 108 lines
| 2.8 KiB
| text/plain
| TextLexer
|
|
r0 | #!/usr/bin/ruby | ||
|
r31 | CORRECT_MARK = 'P' | ||
INCORRECT_MARK = '-' | ||||
TIMEOUT_MARK = 'T' | ||||
RUN_ERROR_MARK = 'x' | ||||
|
r22 | def log(str='') | ||
if ENV['TALKATIVE']!=nil | ||||
puts str | ||||
end | ||||
if ENV['GRADER_LOGGING']!=nil | ||||
log_fname = ENV['GRADER_LOGGING'] | ||||
fp = File.open(log_fname,"a") | ||||
fp.puts("grade: #{Time.new.strftime("%H:%M")} #{str}") | ||||
fp.close | ||||
end | ||||
end | ||||
|
r0 | def char_comment(comment) | ||
|
r40 | if comment =~ /[Ii]ncorrect/ | ||
|
r31 | INCORRECT_MARK | ||
|
r0 | elsif comment =~ /[Cc]orrect/ | ||
|
r31 | CORRECT_MARK | ||
|
r0 | elsif comment =~ /[Tt]ime/ | ||
|
r31 | TIMEOUT_MARK | ||
|
r40 | elsif res = /^[Cc]omment:(.*)$/.match(comment) | ||
res[1] | ||||
|
r0 | else | ||
|
r31 | RUN_ERROR_MARK # these are run time errors | ||
|
r0 | end | ||
end | ||||
problem_home = ENV['PROBLEM_HOME'] | ||||
require "#{problem_home}/script/test_dsl.rb" | ||||
load "#{problem_home}/test_cases/all_tests.cfg" | ||||
problem = Problem.get_instance | ||||
if problem.well_formed? == false | ||||
|
r22 | log "The problem specification is not well formed." | ||
|
r0 | exit(127) | ||
end | ||||
all_score = 0 | ||||
all_comment = '' | ||||
(1..(problem.runs.length-1)).each do |k| | ||||
|
r22 | log "grade run #{k}" | ||
|
r0 | run = problem.runs[k] | ||
run_score = 0 | ||||
run_comment = '' | ||||
|
r8 | run_comment_short = '' | ||
|
r0 | run.tests.each do |test_num| | ||
result_file_name = "#{test_num}/result" | ||||
if not File.exists?(result_file_name) | ||||
|
r30 | run_comment += "result file for test #{test_num} not found\n" | ||
|
r31 | run_comment_short += RUN_ERROR_MARK | ||
|
r22 | log "Cannot find the file #{test_num}/result!" | ||
|
r30 | else | ||
result_file = File.new(result_file_name, "r") | ||||
result_file_lines = result_file.readlines | ||||
|
r34 | if result_file_lines.length>=2 | ||
run_score = run_score + result_file_lines[1].to_i | ||||
run_comment += result_file_lines[0] | ||||
|
r40 | run_comment_short += char_comment(result_file_lines[0].chomp) | ||
|
r34 | else | ||
run_comment += "result file for test #{test_num} error\n" | ||||
run_comment_short += RUN_ERROR_MARK | ||||
log "Error in #{test_num}/result!" | ||||
end | ||||
|
r30 | result_file.close | ||
|
r0 | end | ||
end | ||||
|
r32 | |||
# find total score for this run | ||||
run_total_score = 0 | ||||
problem = Problem.get_instance | ||||
run.tests.each { |test_num| run_total_score += problem.get_score(test_num) } | ||||
if run_total_score!=run_score # fail in some test cases, fail the run | ||||
run_score = 0 | ||||
end | ||||
|
r0 | |||
run_result_file = File.new("result-#{k}", "w") | ||||
run_result_file.write run_score | ||||
run_result_file.write "\n" | ||||
run_result_file.close | ||||
run_comment_file = File.new("comment-#{k}", "w") | ||||
run_comment_file.write "#{run_comment}\n" | ||||
run_comment_file.close | ||||
all_score = all_score + run_score | ||||
|
r32 | |||
# append comment for test run with many test cases | ||||
if run.tests.length > 1 | ||||
run_comment_short = '[' + run_comment_short + ']' | ||||
end | ||||
|
r8 | all_comment += run_comment_short | ||
|
r0 | end | ||
result_file = File.new("result", "w") | ||||
result_file.write all_score | ||||
result_file.write "\n" | ||||
result_file.close | ||||
comment_file = File.new("comment", "w") | ||||
comment_file.write "#{all_comment}\n" | ||||
comment_file.close | ||||