1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<?xml version="1.0" encoding="UTF-8"?>
<jube>
<benchmark name="include" outpath="bench_run">
<comment>A include example</comment>
<!-- use parameterset out of an external file and add a additional parameter -->
<parameterset name="param_set" init_with="include_data.xml">
<parameter name="foo">bar</parameter>
</parameterset>
<!-- Operation -->
<step name="say_hello">
<use>param_set</use> <!-- use existing parameterset -->
<use from="include_data.xml">param_set2</use> <!-- out of an external file -->
<do>echo $foo</do> <!-- shell command -->
<include from="include_data.xml" path="dos/do" /> <!-- include all available tag -->
</step>
</benchmark>
</jube>
|