65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
0))
(if (args:get-arg "-h")
(begin
(print help)
(exit)))
(if (not (launch:setup-for-run))
(begin
(print "Failed to find megatest.config, exiting")
(exit 1)))
;; (if (args:get-arg "-host")
;; (begin
;; (set! (common:get-remote remote) (string-split (args:get-arg "-host" ":")))
|
>
>
>
>
>
>
>
>
>
>
>
>
|
|
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
0))
(if (args:get-arg "-h")
(begin
(print help)
(exit)))
;;; REMOVE ME, this is a stop-gap
(define *area-dat* (make-megatest:area
"default" ;; area name
#f ;; area path
'http ;; transport
#f ;; configinfo
#f ;; configdat
(make-hash-table) ;; denoise
#f ;; client signature
#f ;; remote connections
))
(if (not (launch:setup-for-run *area-dat*))
(begin
(print "Failed to find megatest.config, exiting")
(exit 1)))
;; (if (args:get-arg "-host")
;; (begin
;; (set! (common:get-remote remote) (string-split (args:get-arg "-host" ":")))
|