Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Improve skipping code
  • Loading branch information
Paul Cochrane committed Aug 28, 2015
1 parent 45f1eb6 commit 13177d5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions t/categories/euler.t
Expand Up @@ -105,7 +105,7 @@ subtest {
}, "prob009";

skip("prob010-polettix.pl takes too long to run");
if False {
unless $skip {
subtest {
plan 1;

Expand All @@ -128,7 +128,7 @@ subtest {
}, "prob011";

skip("prob012-polettix.pl uses too much memory");
if False {
unless $skip {
subtest {
plan 1;

Expand All @@ -151,7 +151,7 @@ subtest {
}, "prob013";

skip("prob014-felher.pl takes too long and uses too much memory");
if False {
unless $skip {
subtest {
plan 1;

Expand Down Expand Up @@ -290,7 +290,7 @@ subtest {
}, "prob026";

skip("prob027-shlomif.pl uses too much memory");
if False {
unless $skip {
subtest {
plan 1;

Expand Down Expand Up @@ -514,7 +514,7 @@ subtest {


skip("prob092-moritz.pl takes too long to run");
if False {
unless $skip {
subtest {
plan 1;

Expand Down Expand Up @@ -564,7 +564,7 @@ subtest {
}, "prob100";

skip("prob104-moritz.pl takes too long to run");
if False {
unless $skip {
subtest {
plan 1;

Expand All @@ -590,7 +590,7 @@ unless $skip {
}

skip("prob149-shlomif.pl takes too long to run");
if False {
unless $skip {
subtest {
plan 1;

Expand Down Expand Up @@ -636,7 +636,7 @@ subtest {
}, "prob188";

skip("prob189-shlomif.pl takes too long to run");
if False {
unless $skip {
subtest {
plan 1;

Expand Down

0 comments on commit 13177d5

Please sign in to comment.