linked, but I can't be sure. If you really care, consider this
whole project GPL v3 or later optionally... anyway a
COPYING-gplv3.txt is included for these reasons.
+ - Likewise, there's a single utility in tests/utils.scm from David
+ Thompson that's under GPLv3 or later. See above.
-s
!#
-(define-module (tests test-core)
+(define-module (tests test-agenda)
#:use-module (srfi srfi-64)
#:use-module (ice-9 q)
#:use-module (ice-9 receive)
- #:use-module (eightsync agenda))
+ #:use-module (eightsync agenda)
+ #:use-module (tests utils))
(test-begin "test-agenda")
;; End tests
(test-end "test-agenda")
-;; (test-exit)
+
+(test-exit)
--- /dev/null
+;;; Totes taken from dave
+
+;;; srt2vtt --- SRT to WebVTT converter
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; srt2vtt is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; srt2vtt is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with srt2vtt. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (tests utils)
+ #:use-module (srfi srfi-64)
+ #:export (test-exit))
+
+(define (test-exit)
+ (exit (= (test-runner-fail-count (test-runner-current)) 0)))