disable framework test exes and change web-server executable names
svn: r3012
This commit is contained in:
parent
2c6379be08
commit
481c3670a0
|
@ -16,6 +16,7 @@ To run a test use:
|
||||||
framework-test <test.ss> ...
|
framework-test <test.ss> ...
|
||||||
|
|
||||||
where or <test.ss> is the name of one of the tests below.
|
where or <test.ss> is the name of one of the tests below.
|
||||||
|
(Note: uncomment the launcher entries in info.ss for this.)
|
||||||
Alternatively, pass no command-line arguments to run all of
|
Alternatively, pass no command-line arguments to run all of
|
||||||
the tests. (Under windows, the app will be named "Framework
|
the tests. (Under windows, the app will be named "Framework
|
||||||
Test"; see the mred-launcher-names documentation for how the
|
Test"; see the mred-launcher-names documentation for how the
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
(module info (lib "infotab.ss" "setup")
|
(module info (lib "infotab.ss" "setup")
|
||||||
(define name "Framework Test Suite")
|
(define name "Framework Test Suite")
|
||||||
(define compile-omit-files '("key-specs.ss" "utils.ss" "receive-sexps-port.ss"))
|
(define compile-omit-files '("key-specs.ss" "utils.ss" "receive-sexps-port.ss"))
|
||||||
|
#| Do not create these launchers -- they won't look good in /usr/bin
|
||||||
(define mred-launcher-libraries (list "framework-test-engine.ss"))
|
(define mred-launcher-libraries (list "framework-test-engine.ss"))
|
||||||
(define mred-launcher-names (list "Framework Test Engine"))
|
(define mred-launcher-names (list "Framework Test Engine"))
|
||||||
(define mzscheme-launcher-libraries (list "main.ss"))
|
(define mzscheme-launcher-libraries (list "main.ss"))
|
||||||
(define mzscheme-launcher-names (list "Framework Test")))
|
(define mzscheme-launcher-names (list "Framework Test"))
|
||||||
|
|#
|
||||||
|
)
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
(module info (lib "infotab.ss" "setup")
|
(module info (lib "infotab.ss" "setup")
|
||||||
(define name "Web Server")
|
(define name "Web Server")
|
||||||
(define mzscheme-launcher-libraries (list "text-launch.ss" "monitor-launch.ss" "setup-launch.ss" ))
|
(define mzscheme-launcher-libraries
|
||||||
(define mzscheme-launcher-names (list "web-server-text" "web-server-monitor" "web-server-setup"))
|
(list "text-launch.ss" "monitor-launch.ss" "setup-launch.ss" ))
|
||||||
|
(define mzscheme-launcher-names
|
||||||
|
(list "PLT Web Server Text" "PLT Web Server Monitor" "PLT Web Server Setup"))
|
||||||
|
|
||||||
(define mred-launcher-libraries (list "gui-launch.ss"))
|
(define mred-launcher-libraries (list "gui-launch.ss"))
|
||||||
(define mred-launcher-names (list "web-server")))
|
(define mred-launcher-names (list "PLT Web Server")))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user