1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2000-2021 Ericsson Telecom AB
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
Contributors:
Balasko, Jeno
Raduly, Csaba
-->
<txd:Titan_Execution_Descriptor xmlns:txd="http://schemas.ericsson.com/TXD"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.ericsson.com/TXD TXD.xsd ">
<txd:Build>
<txd:Projects>
<txd:Project path="foobar.tpd">
<txd:Configurations>
<txd:Configuration name="foo"/>
<txd:Configuration name="bar"/>
</txd:Configurations>
</txd:Project>
<txd:Project path="meow.tpd">
<txd:Configurations>
<txd:Configuration name="m1"/>
</txd:Configurations>
</txd:Project>
</txd:Projects>
<txd:MasterConfiguration>
</txd:MasterConfiguration>
</txd:Build>
<txd:Run>
<txd:SingleModeRun>
<txd:WorkingDirectory>right here!</txd:WorkingDirectory>
<txd:ConfigurationFile></txd:ConfigurationFile>
</txd:SingleModeRun>
<txd:ParallelRun>
<txd:WorkingDirectory>right here!</txd:WorkingDirectory>
<txd:ConfigurationFile></txd:ConfigurationFile>
<txd:HostControllers>
<txd:HostController>
<txd:Name>tcclab4</txd:Name>
<txd:Command>echo Hello world!</txd:Command>
</txd:HostController>
<txd:HostController>
<txd:Name>tcclab5</txd:Name>
<txd:HostId>tcclab5</txd:HostId>
<txd:WorkingDirectory>/tmp</txd:WorkingDirectory>
<txd:Executable>/home/away/SOAPTest</txd:Executable>
<txd:Command>ssh %Host cd %WorkingDirectory; %Executable %MCHost %MCPort</txd:Command>
</txd:HostController>
</txd:HostControllers>
</txd:ParallelRun>
<txd:SingleModeRun>
<txd:WorkingDirectory>right here!</txd:WorkingDirectory>
<txd:ConfigurationFile></txd:ConfigurationFile>
</txd:SingleModeRun>
<txd:CustomRun>
Use whatever you want
</txd:CustomRun>
</txd:Run>
</txd:Titan_Execution_Descriptor>
|