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"
|