mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
27 lines
420 B
Perl
27 lines
420 B
Perl
|
# -*- perl -*-
|
||
|
|
||
|
require 5.005;
|
||
|
use strict;
|
||
|
use FileHandle;
|
||
|
|
||
|
package QTC;
|
||
|
|
||
|
sub TC
|
||
|
{
|
||
|
my ($scope, $case, $n) = @_;
|
||
|
local $!;
|
||
|
$n = 0 unless defined $n;
|
||
|
return unless ($scope eq ($ENV{'TC_SCOPE'} || ""));
|
||
|
my $filename = $ENV{'TC_FILENAME'} || return;
|
||
|
my $fh = new FileHandle(">>$filename") or
|
||
|
die "open test coverage file: $!\n";
|
||
|
print $fh "$case $n\n";
|
||
|
$fh->close();
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|
||
|
#
|
||
|
# END OF QTC
|
||
|
#
|