File: support-automake-test-log-driver

package info (click to toggle)
sigscheme 0.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,576 kB
  • sloc: lisp: 37,498; ansic: 31,093; sh: 4,368; makefile: 744; asm: 333; ruby: 290
file content (44 lines) | stat: -rw-r--r-- 1,421 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Description: support automake TEST_LOG_DRIVER
Author: HIGUCHI Daisuke (VDR dai) <dai@debian.org>
Last-Update: 2018-05-10
Forwarded: not-needed

Index: sigscheme/test/Makefile.am
===================================================================
--- sigscheme.orig/test/Makefile.am
+++ sigscheme/test/Makefile.am
@@ -123,7 +123,7 @@ imported_tests = \
 EXTRA_DIST += $(sscm_tests) $(imported_tests)
 
 LOG_COMPILER = $(SH)
-AM_LOG_FLAGS = $(top_builddir)/test/run-singletest.sh
+AM_LOG_FLAGS = $(abs_top_builddir)/src/sscm --system-load-path $(abs_top_builddir)/lib
 if USE_SHELL
 TESTS = $(sscm_tests) $(sscm_optional_tests)
 XFAIL_TESTS = $(sscm_xfail_tests)
Index: sigscheme/test/test-formatplus.scm
===================================================================
--- sigscheme.orig/test/test-formatplus.scm
+++ sigscheme/test/test-formatplus.scm
@@ -42,7 +42,7 @@
 
 ;; test SRFI-48 compatible part of format+
 (define format format+)
-(load "./test/test-srfi48.scm")
+(load "test-srfi48.scm")
 (newline)
 
 (define tn test-name)
Index: sigscheme/test/test-srfi48.scm
===================================================================
--- sigscheme.orig/test/test-srfi48.scm
+++ sigscheme/test/test-srfi48.scm
@@ -43,7 +43,7 @@
     (test-skip "SRFI-48 is not enabled"))
 
 ;; test SRFI-28 compatible part of SRFI-48
-(load "./test/test-srfi28.scm")
+(load "test-srfi28.scm")
 (newline)
 
 (define tn test-name)