File: create_all_gold

package info (click to toggle)
libdevel-cover-perl 1.51-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,036 kB
  • sloc: perl: 10,861; sh: 687; makefile: 7
file content (22 lines) | stat: -rwxr-xr-x 523 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

# Copyright 2011-2025, Paul Johnson (paul@pjcj.net)

# This software is free.  It is licensed under the same terms as Perl itself.

# The latest version of this software should be available from my homepage:
# https://pjcj.net

require 5.12.0;

use strict;
use warnings;

# VERSION

my @tests = @ARGV;
die "Only one test allowed" if @tests > 1;
my $fn = @tests ? $tests[0] : "";
unlink for <test_output/cover/$fn*>;
# print "tests [@tests]\n";
exec $^X, "utils/all_versions", "make", "gold", "TEST=@tests"