X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=blobdiff_plain;f=t%2F01-jobs.t;h=44fa9cc166a93b055d2ea7887a8484bba0127347;hp=f44a1e893c631878f0578d865d5de3a2aa4de96f;hb=1ce303c36f4ffed6b5cef4c4b9a275384094831d;hpb=ee638edb8ce97aeb5b6e76921cf63a0cc995f786 diff --git a/t/01-jobs.t b/t/01-jobs.t index f44a1e8..44fa9cc 100644 --- a/t/01-jobs.t +++ b/t/01-jobs.t @@ -28,7 +28,9 @@ use constant COMPILER => { GCCGO gccgo HASKELL ghc PERL perl - PYTHON python/}; + PYTHON python + RUBY ruby + SBCL sbcl/}; my $loglevel = $ENV{TEST_LOG_LEVEL} // ($ENV{TEST_VERBOSE} ? 'TRACE' : 'OFF'); my $log_conf = <{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} && $format eq 'JAVA' || $format eq 'GOLANG' || $format eq 'GCCGO'; + skip "$format requires multiple processes. Set GRUNTMASTER_KILL_USER and GRUNTMASTER_SUDO to allow multiple processes.", 3 if !$ENV{GRUNTMASTER_KILL_USER} && ($format eq 'JAVA' || $format eq 'GOLANG' || $format eq 'GCCGO' || $format eq 'RUBY'); $meta->{files}{prog}{content} = read_file "$source/$meta->{files}{prog}{name}"; } $meta = merge $meta, $pbmeta;