Skip to content

Commit

Permalink
First init. Add line-rate and branch-rate attribute to xml coverage n…
Browse files Browse the repository at this point in the history
…ode so that it fits the cobertura xml definition.
  • Loading branch information
yllan committed Nov 8, 2010
0 parents commit 9e592a0
Show file tree
Hide file tree
Showing 7 changed files with 817 additions and 0 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
William Hart - lead developer
John Siirola - lead developer
17 changes: 17 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
=================
gcovr CHANGELOG
=================

-------------------------------------------------------------------------------
2.1
-------------------------------------------------------------------------------

- Under development.

-------------------------------------------------------------------------------
2.0
-------------------------------------------------------------------------------

- Initial release as a separate package. Earlier versions of gcovr were
managed within the 'fast' Python package.

32 changes: 32 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Copyright 2008 Sandia Corporation. Under the terms of Contract DE-AC04-
94AL85000 with Sandia Corporation, the U.S. Government retains certain
rights in this software.

All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

* Neither the name of the Sandia National Laboratories nor the names of
its contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 changes: 38 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
============
gcovr README
============

This package defines the `gcovr` script, which manages the compilation of
coverage information from `gcov`.


-------
License
-------

BSD. See the LICENSE.txt file.


------------
Organization
------------

+ Documentation and Bug Tracking

* Trac wiki: https://software.sandia.gov/trac/fast

+ Authors

* See the AUTHORS.txt file.

+ Project Managers

* William Hart, wehart@sandia.gov


--------------------
Third Party Software
--------------------

None.

12 changes: 12 additions & 0 deletions gcovr/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# _________________________________________________________________________
#
# FAST: Python tools for software testing.
# Copyright (c) 2008 Sandia Corporation.
# This software is distributed under the BSD License.
# Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
# the U.S. Government retains certain rights in this software.
# For more information, see the FAST README.txt file.
# _________________________________________________________________________

# Empty gcovr package

Loading

0 comments on commit 9e592a0

Please sign in to comment.