report.scm.in
1 | #!@abs_top_srcdir@/pre-inst-env guile |
2 | !# |
3 | ;;;; Copyright (C) 2020 Julien Lepiller <julien@lepiller.eu> |
4 | ;;;; |
5 | ;;;; This library is free software; you can redistribute it and/or |
6 | ;;;; modify it under the terms of the GNU Lesser General Public |
7 | ;;;; License as published by the Free Software Foundation; either |
8 | ;;;; version 3 of the License, or (at your option) any later version. |
9 | ;;;; |
10 | ;;;; This library is distributed in the hope that it will be useful, |
11 | ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | ;;;; Lesser General Public License for more details. |
14 | ;;;; |
15 | ;;;; You should have received a copy of the GNU Lesser General Public |
16 | ;;;; License along with this library; if not, write to the Free Software |
17 | ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
18 | ;;;; |
19 | |
20 | (use-modules (test-modules online)) |
21 | (use-modules (test-modules result)) |
22 | (use-modules (test-modules testsuite)) |
23 | |
24 | (define filename |
25 | "@abs_top_srcdir@/reports/guile-jsonld-earl.ttl") |
26 | |
27 | (unless (file-exists? (dirname filename)) |
28 | (mkdir (dirname filename))) |
29 | |
30 | (run-test-suites |
31 | (list compact-test-url expand-test-url flatten-test-url html-test-url |
32 | remote-doc-test-url tordf-test-url fromrdf-test-url) |
33 | expected-failures |
34 | (earl-driver (open-file filename "w"))) |
35 |