Skip to content

Commit

Permalink
[Build] Create consolelog.txt file in test execution directory again
Browse files Browse the repository at this point in the history
This fixes the regression that the the <testedPlatform>_consolelog.txt
is created at the wrong location.
It was missed that the <testedPlatform>_consolelog.txt file was created
in the executionDir (because the scripted inlined ran in that directory)
in #2516
  • Loading branch information
HannesWell committed Dec 1, 2024
1 parent 8eda0cc commit e5a3441
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 e5a3441

Please sign in to comment.