2017-08-21 15:45:23 +05:30
|
|
|
#! /usr/bin/scheme-script
|
|
|
|
|
2017-08-21 15:23:23 +05:30
|
|
|
(import (rnrs)
|
|
|
|
(fmt fmt)
|
2017-08-15 20:37:45 +05:30
|
|
|
(functional-tests)
|
2017-08-17 20:54:10 +05:30
|
|
|
(cache-functional-tests)
|
2017-08-21 15:23:23 +05:30
|
|
|
(only (srfi s1 lists) break)
|
|
|
|
(srfi s8 receive)
|
2017-08-15 20:37:45 +05:30
|
|
|
(thin-functional-tests))
|
|
|
|
|
2017-08-21 15:23:23 +05:30
|
|
|
;;------------------------------------------------
|
|
|
|
|
|
|
|
(define (begins-with prefix xs)
|
|
|
|
(cond
|
|
|
|
((null? prefix) #t)
|
|
|
|
((null? xs) #f)
|
|
|
|
((eq? (car prefix) (car xs))
|
|
|
|
(begins-with (cdr prefix) (cdr xs)))
|
|
|
|
(else #f)))
|
|
|
|
|
|
|
|
(define (split-list xs sep)
|
|
|
|
(define (safe-cdr xs)
|
|
|
|
(if (null? xs) '() (cdr xs)))
|
|
|
|
|
|
|
|
(if (null? xs)
|
|
|
|
'()
|
|
|
|
(receive (p r) (break (lambda (c)
|
|
|
|
(eq? c sep))
|
|
|
|
xs)
|
|
|
|
(cons p (split-list (safe-cdr r) sep)))))
|
|
|
|
|
|
|
|
(define (string->syms str sep)
|
|
|
|
(map (lambda (cs)
|
|
|
|
(string->symbol
|
|
|
|
(list->string cs)))
|
|
|
|
(split-list (string->list str) sep)))
|
|
|
|
|
|
|
|
(define (mk-filter pattern)
|
|
|
|
(let ((prefix (string->syms pattern #\/)))
|
|
|
|
(lambda (keys)
|
|
|
|
(begins-with prefix keys))))
|
|
|
|
|
|
|
|
;;------------------------------------------------
|
|
|
|
|
2017-08-15 20:37:45 +05:30
|
|
|
(register-thin-tests)
|
2017-08-17 20:54:10 +05:30
|
|
|
(register-cache-tests)
|
2017-08-21 14:48:10 +05:30
|
|
|
|
2017-08-21 15:23:23 +05:30
|
|
|
(if (run-scenarios (filter (mk-filter (car (cdr (command-line))))
|
|
|
|
(list-scenarios)))
|
2017-08-21 14:48:10 +05:30
|
|
|
(exit)
|
|
|
|
(exit #f))
|
2017-08-15 20:37:45 +05:30
|
|
|
|