summaryrefslogtreecommitdiff
path: root/testsuite/tests/tool-debugger/find-artifacts
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez@inria.fr>2023-04-25 15:25:52 +0100
committerGitHub <noreply@github.com>2023-04-25 16:25:52 +0200
commit0a7c5fe35f4be2ea5c834b586fb5e947bd952377 (patch)
tree0d66e63cda683098b81ef07f2dad09e9a9c85477 /testsuite/tests/tool-debugger/find-artifacts
parent6be361ffd75a2fce5f4daa21fd5073b9a18ce31c (diff)
downloadocaml-0a7c5fe35f4be2ea5c834b586fb5e947bd952377.tar.gz
New script language for ocamltest (#12185)
New test script language, all tests translated automatically (see `tools/translate-all-tests`).
Diffstat (limited to 'testsuite/tests/tool-debugger/find-artifacts')
-rw-r--r--testsuite/tests/tool-debugger/find-artifacts/debuggee.ml42
1 files changed, 21 insertions, 21 deletions
diff --git a/testsuite/tests/tool-debugger/find-artifacts/debuggee.ml b/testsuite/tests/tool-debugger/find-artifacts/debuggee.ml
index 70aee3ff04..37544574d9 100644
--- a/testsuite/tests/tool-debugger/find-artifacts/debuggee.ml
+++ b/testsuite/tests/tool-debugger/find-artifacts/debuggee.ml
@@ -1,25 +1,25 @@
(* TEST
-ocamldebug_script = "${test_source_directory}/input_script"
-* debugger
-** shared-libraries
-*** setup-ocamlc.byte-build-env
-**** script
-script = "mkdir out"
-***** ocamlc.byte
-flags = "-g -c"
-all_modules = "${test_source_directory}/in/blah.ml"
-program = "out/blah.cmo"
-****** ocamlc.byte
-program = "out/foo.cmo"
-flags = "-I out -g -c"
-all_modules = "${test_source_directory}/in/foo.ml"
-******* ocamlc.byte
-all_modules = "out/blah.cmo out/foo.cmo"
-flags = " -g "
-program = "debuggee.exe"
-******** check-ocamlc.byte-output
-********* ocamldebug
-********** check-program-output
+ ocamldebug_script = "${test_source_directory}/input_script";
+ debugger;
+ shared-libraries;
+ setup-ocamlc.byte-build-env;
+ script = "mkdir out";
+ script;
+ flags = "-g -c";
+ all_modules = "${test_source_directory}/in/blah.ml";
+ program = "out/blah.cmo";
+ ocamlc.byte;
+ program = "out/foo.cmo";
+ flags = "-I out -g -c";
+ all_modules = "${test_source_directory}/in/foo.ml";
+ ocamlc.byte;
+ all_modules = "out/blah.cmo out/foo.cmo";
+ flags = " -g ";
+ program = "debuggee.exe";
+ ocamlc.byte;
+ check-ocamlc.byte-output;
+ ocamldebug;
+ check-program-output;
*)
(* This file only contains the specification of how to run the test *)