Description:
fix various bugs, save output, save comment
git-svn-id: http://theory.cpe.ku.ac.th/grader/cli/trunk/scripts@21 6386c4cd-e34a-4fa8-8920-d93eb39b512e
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r8:4a121cdd0baf - - 3 files changed: 6 inserted, 7 deleted
@@ -28,6 +28,7 | |||
|
28 | 28 | run = problem.runs[k] |
|
29 | 29 | run_score = 0 |
|
30 | 30 | run_comment = '' |
|
31 | + run_comment_short = '' | |
|
31 | 32 | run.tests.each do |test_num| |
|
32 | 33 | result_file_name = "#{test_num}/result" |
|
33 | 34 | if not File.exists?(result_file_name) |
@@ -38,11 +39,8 | |||
|
38 | 39 | result_file = File.new(result_file_name, "r") |
|
39 | 40 | result_file_lines = result_file.readlines |
|
40 | 41 | run_score = run_score + result_file_lines[1].to_i |
|
41 |
- |
|
|
42 | - result_file_lines.each do |l| | |
|
43 | - run_comment += l | |
|
44 | - end | |
|
45 | - run_comment += "----\n" | |
|
42 | + run_comment += result_file_lines[0] | |
|
43 | + run_comment_short += char_comment(result_file_lines[0]) | |
|
46 | 44 | result_file.close |
|
47 | 45 | end |
|
48 | 46 | |
@@ -56,7 +54,7 | |||
|
56 | 54 | run_comment_file.close |
|
57 | 55 | |
|
58 | 56 | all_score = all_score + run_score |
|
59 | - all_comment += run_comment | |
|
57 | + all_comment += run_comment_short | |
|
60 | 58 | end |
|
61 | 59 | |
|
62 | 60 | result_file = File.new("result", "w") |
@@ -96,6 +96,7 | |||
|
96 | 96 | execute("mkdir #{test_result_dir}/#{test_num}", "Cannot create directory #{test_result_dir}/#{test_num}") |
|
97 | 97 | execute("mv #{sandbox_dir}/result #{test_result_dir}/#{test_num}", "Cannot copy the result file into #{test_result_dir}/#{test_num}") |
|
98 | 98 | execute("mv #{sandbox_dir}/comment #{test_result_dir}/#{test_num}", "Cannot copy the comment file into #{test_result_dir}/#{test_num}") |
|
99 | + execute("mv #{sandbox_dir}/output.txt #{test_result_dir}/#{test_num}", "Cannot copy the output file into #{test_result_dir}/#{test_num}") | |
|
99 | 100 | execute("rm -Rf #{sandbox_dir}/*", "Cannot clear #{sandbox_dir}") |
|
100 | 101 | end |
|
101 | 102 |
You need to be logged in to leave comments.
Login now