tweak debug output.
[cxgn-corelibs.git] / t / CXGN / Tools / RunTorque.t
blob61ec86d4f5fdd728143d4bb9fc046177cf435c83
2 use strict;
3 use Test::More;
4 use CXGN::Tools::Run;
6 my $hostname = `/bin/hostname`;
8 my $ctr2 = CXGN::Tools::Run->new({ backend => 'Torque' });
9 $ctr2->run_cluster('/bin/hostname');
11 while (my $alive = $ctr2->alive()) { 
12     sleep(1);
15 is($ctr2->out(), $hostname, "Check output from clusterjob (torque)");