From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/perl
#===============================================================================
# FILE: 101_alpine.t
# DESCRIPTION: container test with Alpine
# AUTHOR: Ian Kluft (IKLUFT),
# CREATED: 05/03/2022 08:15:00 PM
#===============================================================================
# container tests are expensive and only for release candidate tests, or for advanced users who want to run them
BEGIN {
unless ( $ENV{RELEASE_TESTING} ) {
print qq{1..0 # SKIP container tests are for release candidate testing\n};
exit;
}
}
# Test Anything Protocol (TAP) output will come from the container
use strict;
exec "perl", "t/testcon.pl", "--alpine";