2016-01-07 17:01:45 +01:00
|
|
|
;; Test-suite runner.
|
|
|
|
;;
|
|
|
|
;; Copyright (C) 2016 g10 Code GmbH
|
|
|
|
;;
|
|
|
|
;; This file is part of GnuPG.
|
|
|
|
;;
|
|
|
|
;; GnuPG 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.
|
|
|
|
;;
|
|
|
|
;; GnuPG 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 this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(if (string=? "" (getenv "srcdir"))
|
|
|
|
(begin
|
|
|
|
(echo "Environment variable 'srcdir' not set. Please point it to"
|
|
|
|
"tests/openpgp.")
|
|
|
|
(exit 2)))
|
|
|
|
|
|
|
|
;; Set objdir so that the tests can locate built programs.
|
|
|
|
(setenv "objdir" (getcwd) #f)
|
|
|
|
|
|
|
|
(let* ((runner (if (member "--parallel" *args*)
|
2016-11-07 14:57:51 +01:00
|
|
|
run-tests-parallel
|
|
|
|
run-tests-sequential))
|
2016-09-20 11:17:10 +02:00
|
|
|
(tests (filter (lambda (arg) (not (string-prefix? arg "--"))) *args*)))
|
2016-11-17 11:06:42 +01:00
|
|
|
(runner (test::scm "setup.scm" "setup.scm")
|
|
|
|
(map (lambda (t) (test::scm t t)) tests)))
|