diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-28 15:41:50 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-28 15:41:50 -0400 |
commit | cbad0718236c82616180c649dd3b67e65d30173f (patch) | |
tree | 3f1d5847ebcfbdabb94ea28b8ecc083e616b9112 | |
parent | bb6f98d1d88e16890d075d25027177e54dec0b7f (diff) | |
download | spmc-cbad0718236c82616180c649dd3b67e65d30173f.tar.gz |
Use converter
-rwxr-xr-x | .circleci/test_spm.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.circleci/test_spm.sh b/.circleci/test_spm.sh index c7223dd..104e8fb 100755 --- a/.circleci/test_spm.sh +++ b/.circleci/test_spm.sh @@ -4,13 +4,15 @@ source $(dirname "${BASH_SOURCE[0]}")/runtime.sh export TEST_RESULTS=${TEST_RESULTS:-/tmp/test-results} export PREFIX=/tmp/root export SHELL=/bin/bash -mkdir -p "${TEST_RESULTS}" +mkdir -p "${TEST_RESULTS}"/spm cd build set -x ctest -T test -rsync -av Testing/*/*.xml "${TEST_RESULTS}"/spm +xsltproc \ + ../.circleci/ctest-to-junit.xsl \ + Testing/$(head -n 1 < Testing/TAG)/Test.xml > "${TEST_RESULTS}"/spm/Test.xml spm --list |