Description:
add feature to import_problem to automatically copy *.txt file and fix the judge script accordingly
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r235:90afe1fa9431 - - 2 files changed: 12 inserted, 0 deleted
@@ -142,12 +142,18 | |||
|
142 | 142 | copy_testcase("#{testcase_dir}",testcase_fname,"#{problem_dir}/test_cases/#{testcase_num}",testcase_num) |
|
143 | 143 | |
|
144 | 144 | num_testcases += 1 |
|
145 | 145 | end |
|
146 | 146 | end |
|
147 | 147 | |
|
148 | + #also include any .txt files | |
|
149 | + Dir.glob("#{testcase_dir}/*.txt") do |file| | |
|
150 | + puts "copy data file #{file}" | |
|
151 | + FileUtils.cp(file,"#{problem_dir}") | |
|
152 | + end | |
|
153 | + | |
|
148 | 154 | # generating all_tests.cfg |
|
149 | 155 | puts "generating testcase config file" |
|
150 | 156 | |
|
151 | 157 | template = File.open(SCRIPT_DIR + "/templates/all_tests.cfg.erb").read |
|
152 | 158 | all_test_cfg = ERB.new(template) |
|
153 | 159 |
@@ -137,12 +137,18 | |||
|
137 | 137 | call_and_log("Cannot copy the compiled program into #{sandbox_dir}") { |
|
138 | 138 | FileUtils.cp("#{test_result_dir}/a.out", sandbox_dir, :preserve => true) |
|
139 | 139 | if language == "java" then Dir["#{test_result_dir}/*.class"].each { |file| FileUtils.cp(file,sandbox_dir)} end |
|
140 | 140 | if language == "python" then Dir["#{test_result_dir}/*.pyc"].each { |file| FileUtils.cp(file,sandbox_dir)} end |
|
141 | 141 | } |
|
142 | 142 | |
|
143 | + #additionally copy any extra .txt file | |
|
144 | + data_files = Dir[problem_home + '/*.txt'] | |
|
145 | + data_files.each do |file| | |
|
146 | + FileUtils.cp(file,sandbox_dir) | |
|
147 | + end | |
|
148 | + | |
|
143 | 149 | begin |
|
144 | 150 | execute("#{problem_home}/script/run #{language} #{test_num} ", "Error occured during execution of the run script") |
|
145 | 151 | rescue |
|
146 | 152 | # do nothing |
|
147 | 153 | end |
|
148 | 154 |
You need to be logged in to leave comments.
Login now