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
|
<?xml version="1.0" encoding="UTF-8"?>
<jube>
<tags forced="true">
<check_tags>deu|eng</check_tags>
<tag name="deu">For german strings</tag>
<tag name="eng">For english strings</tag>
</tags>
<benchmark name="tagging" outpath="bench_run">
<comment>Tags as logical combination</comment>
<!-- Configuration -->
<parameterset name="param_set">
<parameter name="hello_str" tag="!deu+eng">Hello</parameter>
<parameter name="hello_str" tag="deu|!eng">Hallo</parameter>
<parameter name="world_str" tag="eng">World</parameter>
</parameterset>
<!-- Operation -->
<step name="say_hello">
<use>param_set</use> <!-- use existing parameterset -->
<do>echo '$hello_str $world_str'</do> <!-- shell command -->
</step>
</benchmark>
</jube>
|