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="parameterspace" outpath="bench_run">
<comment>A parameterspace example</comment>
<!-- Configuration -->
<parameterset name="param_set">
<!-- Create a parameterspace out of two template parameter -->
<parameter name="number" type="int">1,2,4</parameter>
<parameter name="text" separator=";">Hello;World</parameter>
</parameterset>
<!-- Operation -->
<step name="say_hello">
<use>param_set</use> <!-- use existing parameterset -->
<do>echo "$text $number"</do> <!-- shell command -->
</step>
</benchmark>
</jube>
|