diff options
author | wsnipex <wsnipex@a1.net> | 2014-10-22 10:24:22 +0200 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2014-10-22 10:28:09 +0200 |
commit | 9b09c193cceb25bdd0d43c395117fc10103549f0 (patch) | |
tree | f8cf291909b2d8f515de17194b08c8bc6166c195 /tools/buildsteps/linux64 | |
parent | 4e8942f5dccf544d13b106a567175a7661e55be5 (diff) |
[buildsteps] fix linux gtest invocation
Diffstat (limited to 'tools/buildsteps/linux64')
-rwxr-xr-x | tools/buildsteps/linux64/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildsteps/linux64/run-tests b/tools/buildsteps/linux64/run-tests index 43469c3db5..6677939d5c 100755 --- a/tools/buildsteps/linux64/run-tests +++ b/tools/buildsteps/linux64/run-tests @@ -3,7 +3,7 @@ XBMC_PLATFORM_DIR=linux64 . $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 |