Run Travis on 2 threads only, to avoid OOM when compiling phc-adt. Added and used check-equal?-values: form.

This commit is contained in:
Georges Dupéron 2016-10-03 01:29:53 +02:00
parent 49b3287758
commit 4c84b1625d
4 changed files with 40 additions and 7 deletions

View File

@ -41,7 +41,7 @@ before_install:
- export PATH="${RACKET_DIR}/bin:${PATH}" #install-racket.sh can't set for us - export PATH="${RACKET_DIR}/bin:${PATH}" #install-racket.sh can't set for us
install: install:
- raco pkg install --deps search-auto - raco pkg install -j 2 --deps search-auto
before_script: before_script:

View File

@ -5,6 +5,10 @@
@title{Ph.C Graph library} @title{Ph.C Graph library}
@author[@author+email["Georges Dupéron" "georges.duperon@gmail.com"]] @author[@author+email["Georges Dupéron" "georges.duperon@gmail.com"]]
This library is implmented using literate programming. The
implementation details are presented in
@other-doc['(lib "phc-graph/scribblings/phc-graph-implementation.scrbl")].
@defmodule[phc-graph] @defmodule[phc-graph]
Package Description Here Package Description Here

21
test/ck.rkt Normal file
View File

@ -0,0 +1,21 @@
#lang typed/racket/base
(require phc-toolkit
(for-syntax racket/base
syntax/parse
type-expander/expander
phc-toolkit/untyped))
(provide check-equal?-values:)
(define-syntax check-equal?-values:
(syntax-parser
[(_ actual {~maybe :colon type} expected ...)
(quasisyntax/top-loc this-syntax
(check-equal?: (call-with-values (ann (λ () actual)
(-> #,(if (attribute type)
#'type
#'AnyValues)))
(λ l l))
(list expected ...)))]))

View File

@ -1,14 +1,22 @@
#lang typed/racket #lang typed/racket
(require "../traversal.hl.rkt") (require "../traversal.hl.rkt"
"ck.rkt")
(define-fold f₁ t₁ Null String) (define-fold f₁ t₁ Null String)
;(define-fold f₂ t₂ (Pairof Null Null) String) ;(define-fold f₂ t₂ (Pairof Null Null) String)
;(define-fold f₃ t₃ String String) ;(define-fold f₃ t₃ String String)
;(define-fold f₄ t₄ (Pairof Null String) String) ;(define-fold f₄ t₄ (Pairof Null String) String)
((f₁ string? (define f₁-string->symbol
(λ ([x : String] [acc : Integer]) (f₁ string?
(values (string->symbol x) acc))) (λ ([x : String] [acc : Integer])
'() (values (string->symbol x) acc))))
0) (check-equal?-values: (f₁-string->symbol '() 0)
'() 0)
(check-equal?-values: (f₁-string->symbol '() 0)
: (Values Null Integer)
'() 0)