Skip some tests in racket < 6.3 as the type inference is not good enough to make them work there. There are alternative versions of these tests which don't rely so much on inference and are included.
This commit is contained in:
parent
d7d8651efe
commit
8d3aac092a
2
info.rkt
2
info.rkt
|
@ -14,5 +14,5 @@
|
|||
" in Typed/Racket. The API should hopefully stay"
|
||||
" backward-compatible when Typed/Racket officially supports"
|
||||
" (or rejects) structure type properties."))
|
||||
(define version "0.0")
|
||||
(define version "1.0")
|
||||
(define pkg-authors '("Georges Dupéron"))
|
||||
|
|
|
@ -1,40 +1,50 @@
|
|||
#lang typed/racket
|
||||
|
||||
(define-syntax (skip<6.3 stx)
|
||||
(syntax-case stx ()
|
||||
[(_ . rest)
|
||||
(if (or (regexp-match #px"^6(\\.[012](\\..*|)|)$" (version))
|
||||
(regexp-match #px"^[123245]\\..*$" (version)))
|
||||
#'(begin)
|
||||
#'(begin . rest))]))
|
||||
|
||||
(require typed-struct-props
|
||||
typed/rackunit)
|
||||
|
||||
(struct/props (A) foo1 ([f : A] [g : A]) #:transparent
|
||||
#:property prop:custom-write
|
||||
(λ (this out mode)
|
||||
(write (ann (list (foo1-f this)
|
||||
(foo1-g this))
|
||||
(Listof A))
|
||||
out)))
|
||||
(skip<6.3
|
||||
(struct/props (A) foo1 ([f : A] [g : A]) #:transparent
|
||||
#:property prop:custom-write
|
||||
(λ (this out mode)
|
||||
(write (ann (list (foo1-f this)
|
||||
(foo1-g this))
|
||||
(Listof A))
|
||||
out))))
|
||||
|
||||
(struct/props (A) foo2 ([f : A] [g : A]) #:transparent
|
||||
#:property prop:equal+hash
|
||||
(list (λ (a b rec)
|
||||
;; We can access the A ... here, but not the A' ...
|
||||
(ann (list (foo2-f a)
|
||||
(foo2-g a))
|
||||
(Listof A))
|
||||
#f)
|
||||
(λ (a rec)
|
||||
;; Type inference works, despite the lambda being in a
|
||||
;; list, because we detect the special case where a list
|
||||
;; is immediately constructed.
|
||||
(ann (list (foo2-f a)
|
||||
(foo2-g a))
|
||||
(Listof A))
|
||||
42)
|
||||
(λ (a rec)
|
||||
;; Type inference works, despite the lambda being in a
|
||||
;; list, because we detect the special case where a list
|
||||
;; is immediately constructed.
|
||||
(ann (list (foo2-f a)
|
||||
(foo2-g a))
|
||||
(Listof A))
|
||||
43)))
|
||||
(skip<6.3
|
||||
(struct/props (A) foo2 ([f : A] [g : A]) #:transparent
|
||||
#:property prop:equal+hash
|
||||
(list (λ (a b rec)
|
||||
;; We can access the A ... here, but not the A' ...
|
||||
(ann (list (foo2-f a)
|
||||
(foo2-g a))
|
||||
(Listof A))
|
||||
#f)
|
||||
(λ (a rec)
|
||||
;; Type inference works, despite the lambda being in a
|
||||
;; list, because we detect the special case where a list
|
||||
;; is immediately constructed.
|
||||
(ann (list (foo2-f a)
|
||||
(foo2-g a))
|
||||
(Listof A))
|
||||
42)
|
||||
(λ (a rec)
|
||||
;; Type inference works, despite the lambda being in a
|
||||
;; list, because we detect the special case where a list
|
||||
;; is immediately constructed.
|
||||
(ann (list (foo2-f a)
|
||||
(foo2-g a))
|
||||
(Listof A))
|
||||
43))))
|
||||
|
||||
(struct/props (A) foo3 ([f : A] [g : A]) #:transparent
|
||||
#:property prop:custom-write
|
||||
|
|
Loading…
Reference in New Issue
Block a user