diff options
author | wsnipex <wsnipex@a1.net> | 2014-10-22 11:50:26 +0200 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2014-10-22 11:50:26 +0200 |
commit | a3825adaf2b6474016d756b125a61d710c0c5402 (patch) | |
tree | 54c2e46843c84c7dc5e45d3f9cc18856e4ff6462 /tools/buildsteps | |
parent | eb873ba8d066eeae376f77c09f0b8324c4d43a2d (diff) |
[buildsteps] fix linux32 gtests invocation as well
Diffstat (limited to 'tools/buildsteps')
-rwxr-xr-x | tools/buildsteps/linux32/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildsteps/linux32/run-tests b/tools/buildsteps/linux32/run-tests index 429e094b92..088c21a101 100755 --- a/tools/buildsteps/linux32/run-tests +++ b/tools/buildsteps/linux32/run-tests @@ -3,7 +3,7 @@ XBMC_PLATFORM_DIR=linux32 . $WORKSPACE/tools/buildsteps/defaultenv cd $WORKSPACE;make -j$BUILDTHREADS testsuite -cd $WORKSPACE;./xbmc-test --gtest_output=xml:gtestresults.xml +cd $WORKSPACE;./kodi-test --gtest_output=xml:gtestresults.xml awk '{ if ($1 == "<testcase" && match($0, "notrun")) print substr($0,0,length($0)-2) "><skipped/></testcase>"; else print $0;}' gtestresults.xml > gtestresults-skipped.xml rm gtestresults.xml mv gtestresults-skipped.xml gtestresults.xml |