ocamltest: introduce the commandline built-in variable

master
Sébastien Hinderer 2018-04-17 12:30:24 +02:00
parent 759d107110
commit 7d272e8b3f
2 changed files with 6 additions and 0 deletions

View File

@ -30,6 +30,9 @@ let arguments = make ("arguments",
let cwd = make ("cwd",
"Used to change current working directory, but not updated")
let commandline = make ("commandline",
"Specify the commandline of a tool")
let exit_status = make ("exit_status",
"Expected program exit status")
@ -103,6 +106,7 @@ let _ = List.iter register_variable
[
arguments;
cwd;
commandline;
exit_status;
files;
ocamltest_response;

View File

@ -21,6 +21,8 @@ val arguments : Variables.t
val cwd : Variables.t
val commandline : Variables.t
val exit_status : Variables.t
val files : Variables.t