Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
mbed-client/mbed-client-mbed-tls/xsl_script.sh@0:06ee5f8a484a, 2017-03-18 (annotated)
- Committer:
- djmeyers
- Date:
- Sat Mar 18 22:37:16 2017 +0000
- Revision:
- 0:06ee5f8a484a
Initial commit
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| djmeyers | 0:06ee5f8a484a | 1 | #!/bin/bash |
| djmeyers | 0:06ee5f8a484a | 2 | |
| djmeyers | 0:06ee5f8a484a | 3 | # Copyright (c) 2015 ARM Limited. All rights reserved. |
| djmeyers | 0:06ee5f8a484a | 4 | # SPDX-License-Identifier: Apache-2.0 |
| djmeyers | 0:06ee5f8a484a | 5 | # Licensed under the Apache License, Version 2.0 (the License); you may |
| djmeyers | 0:06ee5f8a484a | 6 | # not use this file except in compliance with the License. |
| djmeyers | 0:06ee5f8a484a | 7 | # You may obtain a copy of the License at |
| djmeyers | 0:06ee5f8a484a | 8 | # |
| djmeyers | 0:06ee5f8a484a | 9 | # * http://www.apache.org/licenses/LICENSE-2.0 |
| djmeyers | 0:06ee5f8a484a | 10 | # |
| djmeyers | 0:06ee5f8a484a | 11 | # Unless required by applicable law or agreed to in writing, software |
| djmeyers | 0:06ee5f8a484a | 12 | # distributed under the License is distributed on an AS IS BASIS, WITHOUT |
| djmeyers | 0:06ee5f8a484a | 13 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| djmeyers | 0:06ee5f8a484a | 14 | # See the License for the specific language governing permissions and |
| djmeyers | 0:06ee5f8a484a | 15 | # limitations under the License. |
| djmeyers | 0:06ee5f8a484a | 16 | |
| djmeyers | 0:06ee5f8a484a | 17 | echo |
| djmeyers | 0:06ee5f8a484a | 18 | echo "Creating report" |
| djmeyers | 0:06ee5f8a484a | 19 | echo |
| djmeyers | 0:06ee5f8a484a | 20 | |
| djmeyers | 0:06ee5f8a484a | 21 | echo '<?xml version="1.0" encoding="UTF-8" ?> |
| djmeyers | 0:06ee5f8a484a | 22 | <?xml-stylesheet type="text/xsl" href="junit_xsl.xslt"?> |
| djmeyers | 0:06ee5f8a484a | 23 | <list>' >> lcov/index.xml |
| djmeyers | 0:06ee5f8a484a | 24 | |
| djmeyers | 0:06ee5f8a484a | 25 | for f in lcov/results/*.xml |
| djmeyers | 0:06ee5f8a484a | 26 | do |
| djmeyers | 0:06ee5f8a484a | 27 | name=${f##*/} |
| djmeyers | 0:06ee5f8a484a | 28 | echo '<entry name="results/'"$name"'" />'>> lcov/index.xml |
| djmeyers | 0:06ee5f8a484a | 29 | done |
| djmeyers | 0:06ee5f8a484a | 30 | |
| djmeyers | 0:06ee5f8a484a | 31 | echo '</list>' >> lcov/index.xml |
| djmeyers | 0:06ee5f8a484a | 32 | |
| djmeyers | 0:06ee5f8a484a | 33 | echo |
| djmeyers | 0:06ee5f8a484a | 34 | echo "Report created to lcov/index.xml (outputs html)" |
| djmeyers | 0:06ee5f8a484a | 35 | echo |