1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
(* TEST
readonly_files = "a.ml b.ml";
debugger_script = "${test_source_directory}/input_script";
debugger;
shared-libraries;
setup-ocamlc.byte-build-env;
module = "a.ml";
flags = "-g -for-pack foo";
ocamlc.byte;
module = "";
all_modules = "a.cmo";
program = "foo.cmo";
flags = "-g -pack";
ocamlc.byte;
module = "b.ml";
flags = " -g ";
ocamlc.byte;
module = "";
flags = " -g ";
all_modules = "foo.cmo b.cmo";
program = "${test_build_directory}/noev.exe";
ocamlc.byte;
check-ocamlc.byte-output;
ocamldebug;
check-program-output;
*)
(* This file only contains the specification of how to run the test *)
|