Remove dependency on debug for the meta-language test, since debug seems to have some backward compatibility issues. Use AFL instead. Bumped built versions for Travis.

This commit is contained in:
Georges Dupéron 2017-01-14 23:06:07 +01:00
parent f3fa526a25
commit 2dcd4a4df7
3 changed files with 7 additions and 7 deletions

View File

@ -32,6 +32,7 @@ env:
- RACKET_VERSION=6.4
- RACKET_VERSION=6.5
- RACKET_VERSION=6.6
- RACKET_VERSION=6.7
- RACKET_VERSION=HEAD
matrix:

View File

@ -3,7 +3,7 @@
(define deps '("base"
"rackunit-lib"
"typed-racket-lib"
"debug"))
"afl"))
(define build-deps '("scribble-lib" "racket-doc" "typed-racket-doc"))
(define scribblings '(("scribblings/repltest.scrbl" ())))
(define pkg-desc "Copy-paste your REPL interactions, and have them run as tests")

View File

@ -1,9 +1,9 @@
#lang debug repltest typed/racket
#lang afl repltest typed/racket
;; There is a problem if there is a comment before a prompt, as comments aren't
;; gobbled-up by the preceeding read.
(define x 0)
(define (y) #R(- 3 2))
(define y (list 3 %))
(define-syntax (module->namespace stx) #'error)
(provide module->namespace)
'displayed
@ -15,11 +15,10 @@
> x
- : Integer [more precisely: Zero]
0
> (values x (y))
(- 3 2) = 1
- : (values Integer Integer) [more precisely: (Values Zero Fixnum)]
> (values x (y 2))
- : (values Integer (Listof Any)) [more precisely: (Values Zero (List Positive-Byte Any))]
0
1
'(3 2)
> (+ 2 0)
- : Integer [more precisely: Positive-Byte]
2