forked from racket/racket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.rkt
43 lines (32 loc) · 1.19 KB
/
info.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#lang info
(define collection 'multi)
(define deps '("compiler-lib"
"sandbox-lib"
"compatibility-lib"
"eli-tester"
"planet-lib"
"net-lib"
"net-test" ; for tests/net/available
"serialize-cstruct-lib" ; tested here
"cext-lib" ; tested here
"pconvert-lib" ; tested here
;; "racket-test-core" used to be part of this pkg
"racket-test-core"
;; for `pkg` tests
"web-server-lib"
"rackunit-lib"
;; for `json` tests
"at-exp-lib"
;; for contract tests
"option-contract-lib"
;; used by the planet packages tested by the pkg tests
"srfi-lib"
;; used to test setup, module readers, pkg system
"scribble-lib"))
(define build-deps '("racket-index"
"scheme-lib"
"base"
"data-lib"))
(define implies '("racket-test-core"))
(define pkg-desc "Base Racket test suites")
(define pkg-authors '(eli jay matthias mflatt robby ryanc samth))