@@ -, +, @@ sluggishness - Confirm that the two test hasn't changed. They the just get 4s to perform - Push the patch to master and observe that DateUtils.t doesn't fail anymore. --- t/DateUtils.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/t/DateUtils.t +++ a/t/DateUtils.t @@ -79,11 +79,11 @@ for ( qw/ 2014-01-01 2100-01-01 9999-01-01 / ) { my $duration = gettimeofday(); $new_dt = dt_from_string($_, 'iso', $dear_dirty_dublin); $duration = gettimeofday() - $duration; - cmp_ok $duration, '<', 1, "Create DateTime with dt_from_string() for $_ with TZ in less than 1s"; + cmp_ok $duration, '<', 4, "Create DateTime with dt_from_string() for $_ with TZ in less than 4s"; $duration = gettimeofday(); output_pref( { dt => $new_dt } ); $duration = gettimeofday() - $duration; - cmp_ok $duration, '<', 1, "Create DateTime with output_pref() for $_ with TZ in less than 1s"; + cmp_ok $duration, '<', 4, "Create DateTime with output_pref() for $_ with TZ in less than 4s"; } $new_dt = dt_from_string( '2011-06-16 12:00', 'sql' ); --