Add structures for remaining test files and add all test modules to
the opened packages of test-all.
This commit is contained in:
parent
e1bcf389b6
commit
d11a09044c
|
@ -78,12 +78,12 @@
|
||||||
(define-structure time-test (export)
|
(define-structure time-test (export)
|
||||||
(open scheme-with-scsh
|
(open scheme-with-scsh
|
||||||
test-base)
|
test-base)
|
||||||
(files time-procedur-calls))
|
(files time-procedure-calls))
|
||||||
|
|
||||||
(define-structure file-name-maniplation-test (export)
|
(define-structure file-name-maniplation-test (export)
|
||||||
(open scheme-with-scsh
|
(open scheme-with-scsh
|
||||||
test-base)
|
test-base)
|
||||||
(files file-name-maniplation-test))
|
(files file-name-manipulation-test))
|
||||||
|
|
||||||
(define-structure pattern-matching-test (export)
|
(define-structure pattern-matching-test (export)
|
||||||
(open scheme-with-scsh
|
(open scheme-with-scsh
|
||||||
|
@ -93,15 +93,44 @@
|
||||||
(define-structure read-delimited-strings-test (export)
|
(define-structure read-delimited-strings-test (export)
|
||||||
(open scheme-with-scsh
|
(open scheme-with-scsh
|
||||||
test-base)
|
test-base)
|
||||||
(files read-delimited-strings-test))
|
(files read-delimited-strings))
|
||||||
|
|
||||||
|
(define-structure bitwise-ops-test (export)
|
||||||
|
(open scheme-with-scsh
|
||||||
|
test-base)
|
||||||
|
(files bitwise-ops-test))
|
||||||
|
|
||||||
|
(define-structure bug-report-tests (export)
|
||||||
|
(open scheme-with-scsh
|
||||||
|
test-base)
|
||||||
|
(files bug-report-tests))
|
||||||
|
|
||||||
|
(define-structure terminal-device-control-test (export)
|
||||||
|
(open scheme-with-scsh
|
||||||
|
test-base)
|
||||||
|
(files terminal-device-control-test))
|
||||||
|
|
||||||
|
(define-structure user-and-group-db-access-test (export)
|
||||||
|
(open scheme-with-scsh
|
||||||
|
test-base)
|
||||||
|
(files user-and-group-db-access))
|
||||||
|
|
||||||
(define-structure test-all
|
(define-structure test-all
|
||||||
(export test-all)
|
(export test-all)
|
||||||
(open scheme
|
(open scheme
|
||||||
test-base
|
test-base
|
||||||
add-env-test
|
|
||||||
process-state-test
|
|
||||||
system-parameter-tests
|
|
||||||
file-system-test
|
file-system-test
|
||||||
strings-and-chars-test))
|
process-state-test
|
||||||
|
add-env-test
|
||||||
|
system-parameter-tests
|
||||||
|
strings-and-chars-test
|
||||||
|
awk-test
|
||||||
|
time-test
|
||||||
|
file-name-maniplation-test
|
||||||
|
pattern-matching-test
|
||||||
|
read-delimited-strings-test
|
||||||
|
bitwise-ops-test
|
||||||
|
bug-report-tests
|
||||||
|
terminal-device-control-test
|
||||||
|
user-and-group-db-access-test))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue