ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/BOSS/Examples/testTask.xml
Revision: 1.9
Committed: Fri Dec 1 09:51:43 2006 UTC (18 years, 5 months ago) by gcodispo
Content type: text/xml
Branch: MAIN
CVS Tags: BOSS_4_3_1b, BOSS_4_3_1a, BOSS_4_3_1
Branch point for: BOSS_4_3_1c
Changes since 1.8: +24 -107 lines
Log Message:
Simplified basic examples

File Contents

# User Rev Content
1 elmer 1.1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 yzhang 1.7 <task name="Test-BossTask" decl_path="$BOSS_ROOT">
3 gcodispo 1.9 <chain >
4     <program >
5     <exec> <![CDATA[ test.pl ]]> </exec>
6     <args> <![CDATA[ 100 ]]> </args>
7     <stdin> <![CDATA[ in ]]> </stdin>
8     <stdout> <![CDATA[ out_1 ]]> </stdout>
9     <stderr> <![CDATA[ err_1 ]]> </stderr>
10     <program_types> <![CDATA[ test ]]> </program_types>
11     <infiles> <![CDATA[ Examples/test.pl,Examples/in ]]> </infiles>
12     <outfiles> <![CDATA[ out_1,err_1,test.pl.log ]]> </outfiles>
13     <outtopdir> <![CDATA[ ]]> </outtopdir>
14     </program>
15     <program >
16     <exec> <![CDATA[ test.pl ]]> </exec>
17     <args> <![CDATA[ 100 ]]> </args>
18     <stdin> <![CDATA[ in ]]> </stdin>
19     <stdout> <![CDATA[ out_2 ]]> </stdout>
20     <stderr> <![CDATA[ err_2 ]]> </stderr>
21     <program_types> <![CDATA[ test ]]> </program_types>
22     <infiles> <![CDATA[ Examples/test.pl,Examples/in ]]> </infiles>
23     <outfiles> <![CDATA[ out_2,err_2,test.pl.log ]]> </outfiles>
24     <outtopdir> <![CDATA[ ]]> </outtopdir>
25     </program>
26 elmer 1.1
27 gcodispo 1.9 </chain>
28 elmer 1.1 </task>