X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=t%2F01-jobs.t;h=a7a1ffaa7e6014e160aef23b3c245032a9011a37;hb=3e58f1a188735de523a628d76126ea275112a305;hp=90f7d706f1fca3ccc84e767407197d8952ccfe92;hpb=8473542d42779eebcd7b0dd45dcf5183d112252c;p=gruntmaster-daemon.git diff --git a/t/01-jobs.t b/t/01-jobs.t index 90f7d70..a7a1ffa 100644 --- a/t/01-jobs.t +++ b/t/01-jobs.t @@ -22,6 +22,7 @@ use constant COMPILER => { qw/BRAINFUCK bfc C gcc CPP g++ + D dmd GOLFSCRIPT golfscript MONO gmcs JAVA javac @@ -32,9 +33,11 @@ use constant COMPILER => { HASKELL ghc PERL perl PHP php - PYTHON python + PYTHON python2.7 RUBY ruby RUST rustc + OBERON obc + OCAML ocaml SBCL sbcl/}; my %needs_fork = map { $_ => 1 } qw/GOLANG GOLFSCRIPT GCCGO JAVA JULIA RUBY/; @@ -93,8 +96,8 @@ for my $problem (@problems) { if ($meta->{files}{prog}) { my $format = $meta->{files}{prog}{format}; my $compiler = COMPILER->{$format}; - skip "$compiler not found in path", 3 unless $ENV{GRUNTMASTER_VM} || which $compiler; - skip "$format requires multiple processes. Set GRUNTMASTER_KILL_USER and GRUNTMASTER_SUDO to allow multiple processes.", 3 if !$ENV{GRUNTMASTER_KILL_USER} && $needs_fork{$format}; +# skip "$compiler not found in path", 3 unless $ENV{GRUNTMASTER_VM} || which $compiler; +# skip "$format requires multiple processes. Set GRUNTMASTER_KILL_USER and GRUNTMASTER_SUDO to allow multiple processes.", 3 if !$ENV{GRUNTMASTER_KILL_USER} && $needs_fork{$format}; $meta->{files}{prog}{content} = read_file "$source/$meta->{files}{prog}{name}"; } $meta = merge $meta, $pbmeta;