disable framework test exes and change web-server executable names

svn: r3012
This commit is contained in:
Eli Barzilay 2006-05-22 21:44:00 +00:00
parent 2c6379be08
commit 481c3670a0
3 changed files with 10 additions and 4 deletions

View File

@ -16,6 +16,7 @@ To run a test use:
framework-test <test.ss> ...
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
the tests. (Under windows, the app will be named "Framework
Test"; see the mred-launcher-names documentation for how the

View File

@ -1,7 +1,10 @@
(module info (lib "infotab.ss" "setup")
(define name "Framework Test Suite")
(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-names (list "Framework Test Engine"))
(define mzscheme-launcher-libraries (list "main.ss"))
(define mzscheme-launcher-names (list "Framework Test")))
(define mzscheme-launcher-names (list "Framework Test"))
|#
)

View File

@ -1,7 +1,9 @@
(module info (lib "infotab.ss" "setup")
(define name "Web Server")
(define mzscheme-launcher-libraries (list "text-launch.ss" "monitor-launch.ss" "setup-launch.ss" ))
(define mzscheme-launcher-names (list "web-server-text" "web-server-monitor" "web-server-setup"))
(define mzscheme-launcher-libraries
(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-names (list "web-server")))
(define mred-launcher-names (list "PLT Web Server")))