Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Skip prob034 as it takes too long in tests
  • Loading branch information
Paul Cochrane committed Aug 28, 2015
1 parent f418282 commit 9f9f3d0
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions t/categories/euler.t
Expand Up @@ -648,14 +648,17 @@ unless $skip {
}, "prob189";
}

subtest {
plan 1;
my $problem = "prob034";
my @authors = <quinny>;
my $expected-output = 40730;
skip("prob034 takes too long in tests");
unless $skip {
subtest {
plan 1;
my $problem = "prob034";
my @authors = <quinny>;
my $expected-output = 40730;

check-example-solutions($problem, $expected-output, @authors)
}, "prob034";
check-example-solutions($problem, $expected-output, @authors)
}, "prob034";
}

#| check examples provided by the given authors
sub check-example-solutions($problem, $expected-output, @authors) {
Expand Down

0 comments on commit 9f9f3d0

Please sign in to comment.