gnu: Some cleanup based on lint checkers.
[jackhill/guix/guix.git] / gnu / packages / check.scm
CommitLineData
233e7676
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
d8989c23 3;;;
233e7676 4;;; This file is part of GNU Guix.
d8989c23 5;;;
233e7676 6;;; GNU Guix is free software; you can redistribute it and/or modify it
d8989c23
NK
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
233e7676 11;;; GNU Guix is distributed in the hope that it will be useful, but
d8989c23
NK
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
233e7676 17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
d8989c23 18
1ffa7090 19(define-module (gnu packages check)
59a43334 20 #:use-module (gnu packages)
d8989c23
NK
21 #:use-module (guix licenses)
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu))
25
26(define-public check
27 (package
28 (name "check")
29 (version "0.9.9")
30 (source
31 (origin
32 (method url-fetch)
9282e259 33 (uri (string-append "mirror://sourceforge/check/check/"
d8989c23
NK
34 version "/check-" version ".tar.gz"))
35 (sha256
36 (base32
37 "1jcahzrvxcnp5chdn2x46l0y4aba8d8yd70lljfin7h5knxrlyhs"))))
38 (build-system gnu-build-system)
39 (home-page "http://check.sourceforge.net/")
35b9e423 40 (synopsis "Unit test framework for C")
d8989c23 41 (description
35b9e423 42 "Check is a unit testing framework for C. It features a simple
d8989c23
NK
43interface for defining unit tests, putting little in the way of the
44developer. Tests are run in a separate address space, so Check can
45catch both assertion failures and code errors that cause segmentation
35b9e423 46faults or other signals. The output from unit tests can be used within
d8989c23
NK
47source code editors and IDEs.")
48 (license lgpl2.1+)))
34352662
JD
49
50
51(define-public cppunit
52 (package
53 (name "cppunit")
54 (version "1.12.1")
55 (source (origin
56 (method url-fetch)
57 (uri (string-append "mirror://sourceforge/cppunit/" name "/"
58 name "-"
59 version ".tar.gz"))
60 (sha256
61 (base32
62 "0jm49v5rmc5qw34vqs56gy8xja1dhci73bmh23cig4kcir6a0a5c"))))
63 (build-system gnu-build-system)
64 (home-page "http://sourceforge.net/projects/cppunit/")
65 (synopsis "Unit testing framework for C++")
66 (description "CppUnit is the C++ port of the famous JUnit framework for
67unit testing. Test output is in XML for automatic testing and GUI based for
68supervised tests.")
69 (license lgpl2.1))) ; no copyright notices. LGPL2.1 is in the tarball
70
71