loadtest.ss -> loadtest.rkt
This commit is contained in:
parent
9a170047f4
commit
85fad33c4c
|
@ -2,7 +2,7 @@
|
||||||
;; Basic checks for the advanced language. See also
|
;; Basic checks for the advanced language. See also
|
||||||
;; beginner.ss
|
;; beginner.ss
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;; Don't need these:
|
;; Don't need these:
|
||||||
(define no-extra-if-tests? #t)
|
(define no-extra-if-tests? #t)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'awk)
|
(Section 'awk)
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
;; Don't try to run other tests from the test suite after loading this
|
;; Don't try to run other tests from the test suite after loading this
|
||||||
;; one into a particular namespace.
|
;; one into a particular namespace.
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;; Don't need these:
|
;; Don't need these:
|
||||||
(define no-extra-if-tests? #t)
|
(define no-extra-if-tests? #t)
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
;; removes the last <n> added expressions
|
;; removes the last <n> added expressions
|
||||||
;;
|
;;
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;; Check that expansion doesn't introduce non-equal ids that
|
;; Check that expansion doesn't introduce non-equal ids that
|
||||||
;; claim to be "original" at the same place
|
;; claim to be "original" at the same place
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'char-set/srfi-14)
|
(Section 'char-set/srfi-14)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
; Tests compilation and writing/reading compiled code
|
; Tests compilation and writing/reading compiled code
|
||||||
; by setting the eval handler and running all tests
|
; by setting the eval handler and running all tests
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(namespace-variable-value
|
(namespace-variable-value
|
||||||
'compile-load
|
'compile-load
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
;; Works for Linux, Mac OS X.
|
;; Works for Linux, Mac OS X.
|
||||||
;; Assumes 3m
|
;; Assumes 3m
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'embed-in-c)
|
(Section 'embed-in-c)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'embed)
|
(Section 'embed)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
(require syntax/toplevel)
|
(require syntax/toplevel)
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;; test that expansion preserves source location information
|
;; test that expansion preserves source location information
|
||||||
;; for fully expanded terms
|
;; for fully expanded terms
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(load-in-sandbox "beginner.ss")
|
(load-in-sandbox "beginner.ss")
|
||||||
(load-in-sandbox "beginner-abbr.ss")
|
(load-in-sandbox "beginner-abbr.ss")
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
read))
|
read))
|
||||||
(define mailbox-name "INBOX.tmp") ;; !!! ALL CONTENT WILL BE DELETED !!!
|
(define mailbox-name "INBOX.tmp") ;; !!! ALL CONTENT WILL BE DELETED !!!
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'imap)
|
(Section 'imap)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
;; Basic checks for the intermediate language. See also
|
;; Basic checks for the intermediate language. See also
|
||||||
;; beginner.ss
|
;; beginner.ss
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;; Don't need these:
|
;; Don't need these:
|
||||||
(define no-extra-if-tests? #t)
|
(define no-extra-if-tests? #t)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
;; Basic checks for the intermediate language. See also
|
;; Basic checks for the intermediate language. See also
|
||||||
;; beginner.ss
|
;; beginner.ss
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;; Don't need these:
|
;; Don't need these:
|
||||||
(define no-extra-if-tests? #t)
|
(define no-extra-if-tests? #t)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'net)
|
(Section 'net)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
; Test MzScheme's object system
|
; Test MzScheme's object system
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(require mzlib/class)
|
(require mzlib/class)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'openssl)
|
(Section 'openssl)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
;; WARNING: this test writes a "packed" collection to the main and user
|
;; WARNING: this test writes a "packed" collection to the main and user
|
||||||
;; collection directories.
|
;; collection directories.
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'pack)
|
(Section 'pack)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
(Section 'place-channel)
|
(Section 'place-channel)
|
||||||
|
|
||||||
(define (splat txt fn)
|
(define (splat txt fn)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; SRFI Tests
|
;; SRFI Tests
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
;; Test that all SRFIs load. Run this in both DrScheme and
|
;; Test that all SRFIs load. Run this in both DrScheme and
|
||||||
;; MzScheme for maximum coverage.
|
;; MzScheme for maximum coverage.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'string)
|
(Section 'string)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'trace)
|
(Section 'trace)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(require mzlib/class
|
(require mzlib/class
|
||||||
mzlib/trait)
|
mzlib/trait)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(load-relative "loadtest.ss")
|
(load-relative "loadtest.rkt")
|
||||||
|
|
||||||
(Section 'zo-marshal)
|
(Section 'zo-marshal)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user