Add d_timegm to uconfig.sh to fix the generated uconfig.h.
[p5sagit/p5-mst-13.2.git] / lib / Test / Harness / t / compat / regression.t
CommitLineData
b965d173 1#!/usr/bin/perl -w
2
3use strict;
4use lib 't/lib';
5
6use Test::More tests => 1;
7use Test::Harness;
8
9{
10 #28567
11 unshift @INC, 'wibble';
12 my @before = Test::Harness::_filtered_inc();
13 unshift @INC, sub {die};
14 my @after = Test::Harness::_filtered_inc();
15 is_deeply \@after, \@before, 'subref removed from @INC';
16}