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:
parent
f3fa526a25
commit
2dcd4a4df7
|
@ -32,6 +32,7 @@ env:
|
||||||
- RACKET_VERSION=6.4
|
- RACKET_VERSION=6.4
|
||||||
- RACKET_VERSION=6.5
|
- RACKET_VERSION=6.5
|
||||||
- RACKET_VERSION=6.6
|
- RACKET_VERSION=6.6
|
||||||
|
- RACKET_VERSION=6.7
|
||||||
- RACKET_VERSION=HEAD
|
- RACKET_VERSION=HEAD
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
|
|
2
info.rkt
2
info.rkt
|
@ -3,7 +3,7 @@
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
"rackunit-lib"
|
"rackunit-lib"
|
||||||
"typed-racket-lib"
|
"typed-racket-lib"
|
||||||
"debug"))
|
"afl"))
|
||||||
(define build-deps '("scribble-lib" "racket-doc" "typed-racket-doc"))
|
(define build-deps '("scribble-lib" "racket-doc" "typed-racket-doc"))
|
||||||
(define scribblings '(("scribblings/repltest.scrbl" ())))
|
(define scribblings '(("scribblings/repltest.scrbl" ())))
|
||||||
(define pkg-desc "Copy-paste your REPL interactions, and have them run as tests")
|
(define pkg-desc "Copy-paste your REPL interactions, and have them run as tests")
|
||||||
|
|
|
@ -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
|
;; There is a problem if there is a comment before a prompt, as comments aren't
|
||||||
;; gobbled-up by the preceeding read.
|
;; gobbled-up by the preceeding read.
|
||||||
(define x 0)
|
(define x 0)
|
||||||
(define (y) #R(- 3 2))
|
(define y #λ(list 3 %))
|
||||||
(define-syntax (module->namespace stx) #'error)
|
(define-syntax (module->namespace stx) #'error)
|
||||||
(provide module->namespace)
|
(provide module->namespace)
|
||||||
'displayed
|
'displayed
|
||||||
|
@ -15,11 +15,10 @@
|
||||||
> x
|
> x
|
||||||
- : Integer [more precisely: Zero]
|
- : Integer [more precisely: Zero]
|
||||||
0
|
0
|
||||||
> (values x (y))
|
> (values x (y 2))
|
||||||
(- 3 2) = 1
|
- : (values Integer (Listof Any)) [more precisely: (Values Zero (List Positive-Byte Any))]
|
||||||
- : (values Integer Integer) [more precisely: (Values Zero Fixnum)]
|
|
||||||
0
|
0
|
||||||
1
|
'(3 2)
|
||||||
> (+ 2 0)
|
> (+ 2 0)
|
||||||
- : Integer [more precisely: Positive-Byte]
|
- : Integer [more precisely: Positive-Byte]
|
||||||
2
|
2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user