]>
iEval git - gruntmaster-daemon.git/blob - lib/Gruntmaster/Daemon/Generator/File.pm
1 package Gruntmaster
::Daemon
::Generator
::File
;
7 use File
::Copy qw
/copy/;
8 use File
::Slurp qw
/write_file/;
9 use Log
::Log4perl qw
/get_logger/;
11 our $VERSION = '5999.000_004';
13 ##################################################
16 my ($test, $meta) = @_;
17 get_logger
->trace("Generating test $test ...");
18 if (exists $meta->{infile
}) {
19 write_file
'input', $meta->{infile
}[$test - 1]
21 copy
"/var/lib/gruntmasterd/pb/$meta->{problem}/$test.in", 'input'
32 Gruntmaster::Daemon::Generator::File - Generate tests from files
36 use Gruntmaster::Daemon::Generator::File;
37 Gruntmaster::Daemon::Generator::File::generate(5, $meta);
41 Gruntmaster::Daemon::Generator::File is a static test generator.
42 If C<< $meta->{infile} >> exists, the input for test C<$i> is C<< $meta->{infile}[$i - 1] >>.
43 Otherwise, the input for test C<$i> is F<< /var/lib/gruntmasterd/pb/$meta->{problem}/$test.in >>.
47 Marius Gavrilescu E<lt>marius@ieval.roE<gt>
49 =head1 COPYRIGHT AND LICENSE
51 Copyright (C) 2014 by Marius Gavrilescu
53 This library is free software: you can redistribute it and/or modify
54 it under the terms of the GNU Affero General Public License as published by
55 the Free Software Foundation, either version 3 of the License, or
56 (at your option) any later version.
This page took 0.044263 seconds and 4 git commands to generate.