diff options
author | Preston Cody <codeman@gentoo.org> | 2008-02-17 19:41:55 +0000 |
---|---|---|
committer | Preston Cody <codeman@gentoo.org> | 2008-02-17 19:41:55 +0000 |
commit | 54769277dadda1dab75770bbafda97419f1baffe (patch) | |
tree | 0137e248f39acb070aa225dc00f2b50b40e6b307 | |
parent | removing some comments. small other touchups. (diff) | |
download | scire-54769277dadda1dab75770bbafda97419f1baffe.tar.gz scire-54769277dadda1dab75770bbafda97419f1baffe.tar.bz2 scire-54769277dadda1dab75770bbafda97419f1baffe.zip |
trying to get this a bit more workable.
svn path=/branches/new-fu/; revision=358
-rw-r--r-- | client/test.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/test.pl b/client/test.pl index c198964..e5fdcbb 100644 --- a/client/test.pl +++ b/client/test.pl @@ -9,11 +9,11 @@ use Scire::Job; use Scire::Communicator; my $job = Scire::Job->new(); -$job->load_jobfile("/tmp/scirejobs/job1.job"); +$job->load_jobfile("/tmp/scirejobs/queue/39.job"); #print $job->{script_data} . "\n"; -$job->set_stdout_file("/tmp/scire_stdout.txt"); -$job->set_stderr_file("/tmp/scire_stderr.txt"); -$job->set_script_file("/tmp/scirejobs/runjob.sh"); +$job->set_stdout_file("/tmp/scirejobs/result/39_stdout.txt"); +$job->set_stderr_file("/tmp/scirejobs/result/39_stderr.txt"); +$job->set_script_file("/tmp/scirejobs/run/runjob.sh"); my $exitcode = $job->run(); print "Job complete with exit code ${exitcode}\n"; |