diff options
| author | 2025-06-17 17:09:49 -0400 | |
|---|---|---|
| committer | 2025-06-17 17:09:49 -0400 | |
| commit | 02f8a10c1f77cf75e5134b7b1d3e6de1ad0f2cfa (patch) | |
| tree | 2ccab26de2d6cd8270bf606c91f914913614c230 /test/run.scm | |
| parent | producer (diff) | |
pattern testing
Diffstat (limited to 'test/run.scm')
| -rw-r--r-- | test/run.scm | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/test/run.scm b/test/run.scm index 0b0e9d9..521b2cf 100644 --- a/test/run.scm +++ b/test/run.scm @@ -1,11 +1,11 @@ -(import r7rs) - (cond-expand - (chicken (import (prefix (mcgoron srfi 64) + (chicken (import r7rs + (prefix (mcgoron srfi 64) mcgoron-) (srfi 64)) (test-runner-factory mcgoron-factory) - (test-runner-current (mcgoron-factory)))) + (test-runner-current (mcgoron-factory))) + (else (import (srfi 64)))) (load "../multisyntax/utils.sld") (load "../multisyntax/syntax-object.sld") @@ -14,10 +14,15 @@ (import (rename (multisyntax syntax-object test) (test test-syntax-object))) -(test-syntax-object) +#;(test-syntax-object) (load "../multisyntax/pattern/internal.sld") (load "../multisyntax/pattern/matcher.sld") (load "pattern/matcher.sld") (import (multisyntax pattern matcher test)) -(test-patterns) +#;(test-patterns) + +(load "../multisyntax/pattern/producer.sld") +(load "pattern/producer.sld") +(import (multisyntax pattern producer test)) +(test-producers) |
