From: Marius Gavrilescu Date: Mon, 9 Mar 2015 09:19:59 +0000 (+0200) Subject: Fix 'requires multiple processes' check in test suite X-Git-Tag: 5999.000_005~27 X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=commitdiff_plain;h=1ce303c36f4ffed6b5cef4c4b9a275384094831d Fix 'requires multiple processes' check in test suite --- diff --git a/t/01-jobs.t b/t/01-jobs.t index 552e36f..44fa9cc 100644 --- a/t/01-jobs.t +++ b/t/01-jobs.t @@ -87,7 +87,7 @@ for my $problem (@problems) { 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} && $format eq 'JAVA' || $format eq 'GOLANG' || $format eq 'GCCGO' || $format eq 'RUBY'; + 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;