public class RunTestScript
extends java.lang.Object
implements java.lang.Runnable
(define xx (* 2 10)) (format #t "xx=~s~%" xx) ;; Output: xx=20
The following assumes Scheme, with a line-comment ";;"
,
start-block-comment "#|"
and end-block-comment "|#"
.
;; Kawa-options:
optionskawa
command,
i.e. after the class name.
The options are split into space-separated words,
though you can use single or double quotes to include spaces in words.
(The quoting is like in Unix shells, in that a quote does not start or
end a word. Instead, a word can contain zero or more quote-delimited
segments.)
The characters %F
are replaced by the source file name.
The default for options is
--diagnostic-strip-directories %F
.
;; Java-options:
optionsjava
command,
before the class name.
The options are parsed the same way as for Kawa-options
.
;; Output:
line;; Output-pattern:
pattern#|Output:
|#
, are expected literally in the output stream.;; Diagnostic:
line;; Diagnostic-pattern:
pattern#|Diagnostic:
|#
, are expected literally in the error stream.Constructor and Description |
---|
RunTestScript(java.lang.String filename) |
RunTestScript(java.lang.String filename,
Language language) |
public RunTestScript(java.lang.String filename, Language language)
public RunTestScript(java.lang.String filename)