aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps/linux64-wayland/run-tests
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildsteps/linux64-wayland/run-tests')
-rwxr-xr-xtools/buildsteps/linux64-wayland/run-tests14
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/buildsteps/linux64-wayland/run-tests b/tools/buildsteps/linux64-wayland/run-tests
deleted file mode 100755
index 42fa9137b7..0000000000
--- a/tools/buildsteps/linux64-wayland/run-tests
+++ /dev/null
@@ -1,14 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux64-wayland
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-cd $WORKSPACE/build;make -j$BUILDTHREADS kodi-test
-if [ "$Configuration" != "Coverage" ]; then
- cd $WORKSPACE;build/kodi-test --gtest_output=xml:gtestresults.xml
-else
- cd $WORKSPACE/build;GTEST_OUTPUT="xml:$WORKSPACE/gtestresults.xml" make coverage
-fi
-
-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