mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-05 12:31:50 +01:00
d43dabf460
* tests/gpgscm/tests.scm (test::scm) Add explicit name argument. (test::binary): Likewise. Also, add missing unquote. * tests/openpgp/run-tests.scm: Adapt accordingly. Signed-off-by: Justus Winter <justus@g10code.com>
35 lines
1.2 KiB
Scheme
35 lines
1.2 KiB
Scheme
;; 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*)
|
|
run-tests-parallel
|
|
run-tests-sequential))
|
|
(tests (filter (lambda (arg) (not (string-prefix? arg "--"))) *args*)))
|
|
(runner (test::scm "setup.scm" "setup.scm")
|
|
(map (lambda (t) (test::scm t t)) tests)))
|