]>
iEval git - gruntmaster-daemon.git/blob - lib/Gruntmaster/Daemon/Runner/File.pm
1 package Gruntmaster
:: Daemon
:: Runner
:: File
;
7 use Gruntmaster
:: Daemon
:: Constants qw
/WA/ ;
8 use File
:: Slurp qw
/slurp/ ;
9 use Log
:: Log4perl qw
/get_logger/ ;
11 our $VERSION = "5999.000_001" ;
13 ##################################################
16 my ( $test , $meta ) = @_ ;
17 get_logger
-> trace ( "Running on test $test ..." );
18 $meta ->{ files
}{ prog
}{ run
}->( $meta ->{ files
}{ prog
}{ name
}, fds
=> [ qw
/0 input 1 >output/ ], map { defined $meta ->{ $_ } ?
( $_ => $meta ->{ $_ }) : () } qw
/timeout olimit mlimit/ );
19 my $out = slurp
'output' ;
21 if ( exists $meta ->{ okfile
}) {
22 $ok = $meta ->{ okfile
}[ $test - 1 ]
24 my $ct = defined $Gruntmaster :: Data
:: contest ?
"ct/ $Gruntmaster ::Data::contest" : '' ;
25 $ok = slurp
"/var/lib/gruntmasterd/ $ct /pb/ $meta ->{problem}/ $test .ok"
35 die [ WA
, "Wrong answer" ] if $out ne $ok ;
36 $meta ->{ tests
}[ $test - 1 ] // 0
46 Gruntmaster::Daemon::Runner::File - Compare output with static text files
50 use Gruntmaster::Daemon::Runner::File;
51 Gruntmaster::Daemon::Runner::File->run(5, $meta);
55 Gruntmaster::Daemon::Runner::File is a runner which compares the program output for test C<$test> with C<< $meta->{tests}[$test - 1] >>. Before comparing, leading and trailing whitespace is removed, and sequences of whitespace are converted to a single space.
59 Marius Gavrilescu E<lt>marius@ieval.roE<gt>
61 =head1 COPYRIGHT AND LICENSE
63 Copyright (C) 2014 by Marius Gavrilescu
65 This library is free software: you can redistribute it and/or modify
66 it under the terms of the GNU Affero General Public License as published by
67 the Free Software Foundation, either version 3 of the License, or
68 (at your option) any later version.
This page took 0.04911 seconds and 4 git commands to generate.