mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-10 05:26:56 +00:00
19 lines
390 B
Bash
Executable File
19 lines
390 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
|
|
ctest2junit_xsl=$(readlink -f `dirname ${BASH_SOURCE[0]}`)/ctest_to_junit.xsl
|
|
tests_dir=$1
|
|
|
|
if [ ! -d $tests_dir ];
|
|
then
|
|
echo "ERROR! $tests_dir is not directory!"
|
|
exit 1
|
|
fi
|
|
|
|
tag=$(head -n 1 $tests_dir/Testing/TAG)
|
|
xsltproc --output build/results/ctest/results.xml $ctest2junit_xsl $tests_dir/Testing/$tag/Test.xml
|
|
|
|
echo "Test report converted successfully"
|
|
|