racket/collects/tests/plai/gc2/run-test.rkt
2012-05-26 08:18:19 -06:00

67 lines
1.7 KiB
Racket

#lang racket
(require tests/eli-tester
racket/runtime-path)
(define-runtime-path here ".")
(define (in-directory pth rx)
(in-list
(map (curry build-path pth)
(filter (compose (curry regexp-match rx) path->bytes)
(directory-list pth)))))
(define (test-mutator m)
(printf "Running ~a\n" m)
(parameterize ([current-namespace (make-base-empty-namespace)])
(dynamic-require m #f)))
(define run-good? (make-parameter #f))
(command-line #:program "run-test"
#:once-each ["-g" "Enable running good mutators" (run-good? #t)])
(define (drop-first-line e)
(regexp-replace "^[^\n]+\n" e ""))
(define-syntax-rule (capture-output e)
(drop-first-line (with-output-to-string (λ () e))))
(test
(if (run-good?)
(for ([m (in-directory (build-path here "good-mutators") #rx"rkt$")])
(test #:failure-prefix (format "~a" m)
(test-mutator m)))
(void))
(for ([m (in-directory (build-path here "bad-mutators") #rx"rkt$")])
(test
(test-mutator m) =error> #rx""))
(test-mutator (build-path here "other-mutators" "error.rkt"))
=error>
#rx"plai/gc2/mutator has error"
(test-mutator (build-path here "other-mutators" "top.rkt"))
=error>
#rx"unbound identifier in module\n in: frozzle"
(capture-output (test-mutator (build-path here "other-mutators" "printing.rkt")))
=>
#<<END
(good lst '(1 2 3) '(1 2 3) "at line 6")
(good (length (quote (hello goodbye))) 2 2 "at line 13")
(good (heap-loc head) 63 63 "at line 18")
(bad (heap-loc head) 63 48 "at line 19")
END
(capture-output (test-mutator (build-path here "other-mutators" "begin.rkt")))
=>
#<<END
Value at location 3:
#t
END
(test-mutator (build-path here "other-mutators" "quote.rkt"))
=error> "alloc: out of space"
)