configurationengine/source/plugins/common/ConeCommandPlugin/commandplugin/tests/project/assets/s60/implml/file2.commandml
changeset 3 e7e0ae78773e
parent 0 2e8eeb919028
equal deleted inserted replaced
2:87cfa131b535 3:e7e0ae78773e
     3     
     3     
     4     <tag name="target" value="footarget"/>
     4     <tag name="target" value="footarget"/>
     5     
     5     
     6     <!-- This should be executed, since the value of RealSetting is 3.14 -->
     6     <!-- This should be executed, since the value of RealSetting is 3.14 -->
     7     <condition value="${BasicSettingTypesTest.RealSetting} &gt; 4e-3">
     7     <condition value="${BasicSettingTypesTest.RealSetting} &gt; 4e-3">
     8         <command executable="python" bufsize="0" cwd="." env="{'MYVAR':'123'}">
     8         <command executable="python" shell="true" bufsize="0" cwd=".">
     9             <argument value="project/tools/print_hello.py"/>
     9             <argument value="project/tools/print_hello.py"/>
    10             <argument value="-c some_config.txt" />
    10             <argument value="-c some_config.txt" />
    11             <argument value="-d some_dir" />
    11             <argument value="-d some_dir" />
    12             <argument value="-x" />
    12             <argument value="-x" />
    13             <pipe name="stdin" value="PIPE"/>
    13             <pipe name="stdin" value="PIPE"/>
    38     <!-- Execute Python in the output directory and print the working directory there -->
    38     <!-- Execute Python in the output directory and print the working directory there -->
    39     <command executable="python" cwd="%CONE_OUT_ABSOLUTE%" shell="true">
    39     <command executable="python" cwd="%CONE_OUT_ABSOLUTE%" shell="true">
    40         <argument value='-c "import os; print os.getcwd()"'/>
    40         <argument value='-c "import os; print os.getcwd()"'/>
    41         <pipe name="stdout" value="exec_in_output_test.log"/>
    41         <pipe name="stdout" value="exec_in_output_test.log"/>
    42     </command>
    42     </command>
       
    43 
       
    44     <!-- ====================================== -->
       
    45     <!-- Creating output files                  -->
       
    46     <!-- ====================================== -->
       
    47     <!-- Create output directory, or the next command will fail if it doesn't exist -->
       
    48     <command executable="python" shell="true">
       
    49         <argument value='project/tools/helloworld.py "%CONE_OUT%"'/>
       
    50     </command>
       
    51 
       
    52 
    43 </commandml>
    53 </commandml>