Ram Gandikota
/
ABCD
A metronome using the FRDM K64F board
mbed-client/mbed-client-mbed-tls/xsl_script.sh@0:a7a43371b306, 2017-05-14 (annotated)
- Committer:
- ram54288
- Date:
- Sun May 14 18:40:18 2017 +0000
- Revision:
- 0:a7a43371b306
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ram54288 | 0:a7a43371b306 | 1 | #!/bin/bash |
ram54288 | 0:a7a43371b306 | 2 | |
ram54288 | 0:a7a43371b306 | 3 | # Copyright (c) 2015 ARM Limited. All rights reserved. |
ram54288 | 0:a7a43371b306 | 4 | # SPDX-License-Identifier: Apache-2.0 |
ram54288 | 0:a7a43371b306 | 5 | # Licensed under the Apache License, Version 2.0 (the License); you may |
ram54288 | 0:a7a43371b306 | 6 | # not use this file except in compliance with the License. |
ram54288 | 0:a7a43371b306 | 7 | # You may obtain a copy of the License at |
ram54288 | 0:a7a43371b306 | 8 | # |
ram54288 | 0:a7a43371b306 | 9 | # * http://www.apache.org/licenses/LICENSE-2.0 |
ram54288 | 0:a7a43371b306 | 10 | # |
ram54288 | 0:a7a43371b306 | 11 | # Unless required by applicable law or agreed to in writing, software |
ram54288 | 0:a7a43371b306 | 12 | # distributed under the License is distributed on an AS IS BASIS, WITHOUT |
ram54288 | 0:a7a43371b306 | 13 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
ram54288 | 0:a7a43371b306 | 14 | # See the License for the specific language governing permissions and |
ram54288 | 0:a7a43371b306 | 15 | # limitations under the License. |
ram54288 | 0:a7a43371b306 | 16 | |
ram54288 | 0:a7a43371b306 | 17 | echo |
ram54288 | 0:a7a43371b306 | 18 | echo "Creating report" |
ram54288 | 0:a7a43371b306 | 19 | echo |
ram54288 | 0:a7a43371b306 | 20 | |
ram54288 | 0:a7a43371b306 | 21 | echo '<?xml version="1.0" encoding="UTF-8" ?> |
ram54288 | 0:a7a43371b306 | 22 | <?xml-stylesheet type="text/xsl" href="junit_xsl.xslt"?> |
ram54288 | 0:a7a43371b306 | 23 | <list>' >> lcov/index.xml |
ram54288 | 0:a7a43371b306 | 24 | |
ram54288 | 0:a7a43371b306 | 25 | for f in lcov/results/*.xml |
ram54288 | 0:a7a43371b306 | 26 | do |
ram54288 | 0:a7a43371b306 | 27 | name=${f##*/} |
ram54288 | 0:a7a43371b306 | 28 | echo '<entry name="results/'"$name"'" />'>> lcov/index.xml |
ram54288 | 0:a7a43371b306 | 29 | done |
ram54288 | 0:a7a43371b306 | 30 | |
ram54288 | 0:a7a43371b306 | 31 | echo '</list>' >> lcov/index.xml |
ram54288 | 0:a7a43371b306 | 32 | |
ram54288 | 0:a7a43371b306 | 33 | echo |
ram54288 | 0:a7a43371b306 | 34 | echo "Report created to lcov/index.xml (outputs html)" |
ram54288 | 0:a7a43371b306 | 35 | echo |