2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 09:20:52 +00:00
qpdf/qtest/QTC/perl/QTC.pm

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
420 B
Perl
Raw Permalink Normal View History

# -*- 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
#