Skip to content

Commit

Permalink
[Build] Fix creation of consolelog.txt file in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Dec 1, 2024
1 parent a154df9 commit 96d2461
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions production/testScripts/runTests2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -816,13 +816,13 @@
depends="init"
unless="env.TESTING_TEST_XML">

<mkdir dir="results/consolelogs"/>
<chmod file="${testScript}" perm="755"/>
<mkdir dir="${executionDir}/results/consolelogs"/>
<chmod file="${executionDir}/${testScript}" perm="755"/>
<!--run the tests -->
<exec
dir="${executionDir}"
executable="${testExecutable}"
output="results/consolelogs/${testedPlatform}_consolelog.txt">
output="${executionDir}/results/consolelogs/${testedPlatform}_consolelog.txt">
<arg line="${executionArguments}" />
<arg line="-os ${osgi.os} -ws ${osgi.ws} -arch ${osgi.arch}"/>
<arg value="-vm"/><arg path="${jvm}"/>
Expand Down

0 comments on commit 96d2461

Please sign in to comment.