/usr/share/scheme48-1.9/posix/test-packages.scm is in scheme48 1.9-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ; Part of Scheme 48 1.9. See file COPYING for notices and license.
; Authors: Richard Kelsey, Jonathan Rees, Mike Sperber, Robert Ransom
(define-structure posix-core-test (export posix-core-tests)
(open scheme test-suites matchers sort threads
util ; every
(with-prefix srfi-1 srfi-1:)
threads
(subset threads-internal (terminate-thread!))
placeholders
queues
posix-files
posix-time
posix-users
posix-i/o
posix-process-data
posix-processes
os-strings)
(files check))
(define-structure regexp-test (export regexp-tests)
(open scheme test-suites matchers
regexps)
(files regexp-check))
(define-structure posix-test (export posix-tests)
(open scheme test-suites
posix-core-test
regexp-test)
(begin
(define-test-suite posix-tests (posix-core-tests regexp-tests))))
|