- github
- ocaml
- opam-repository
- 118a69
- compilers,4.14,dune.3.22.0~alpha0,revdeps,ocamlformat.0.24.1
(not at the head of any monitored branch or PR)
2026-03-02 19:24.00: New job: test ocamlformat.0.24.1 with dune.3.22.0~alpha0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall ocamlformat.0.24.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocamlformat.0.24.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test ocamlformat.0.24.1) || true
RUN opam reinstall --with-test --verbose ocamlformat.0.24.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocamlformat.0.24.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-02 19:24.00: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune.3.22.0~alpha0-ocamlformat.0.24.1-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:24.00: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlformat.0.24.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test ocamlformat.0.24.1) || true"))
(run (shell "opam reinstall --with-test --verbose ocamlformat.0.24.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-02 19:24.00: Waiting for resource in pool OCluster
2026-03-03 04:38.53: Waiting for worker…
2026-03-03 04:41.25: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha0/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha0/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha0/opam | 40 ++++++++++++
.../dune-build-info.3.22.0~alpha0/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha0/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha0/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha0/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha0/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha0/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha0/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha0/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha0/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha0/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha0/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha0/opam | 39 +++++++++++
18 files changed, 797 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 04:41.35 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-03 04:41.35 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 04:41.35 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-03 04:41.35 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-03 04:41.35 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 04:41.36 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 04:41.36 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1833 kB/s)
- Reading package lists...
2026-03-03 04:41.36 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 04:41.36 ---> using "9ecf7f496eb9b328aa3c8f7333a40a30e123b33b9d8b5606b7ac6bfc2b62fac7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.0~alpha0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0 (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:41.36 ---> using "1d093925996c7908c33a8109d0c1a7be5172d79d6a00aabc511d552ee2499f33" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlformat.0.24.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocamlformat.0.24.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 29 packages
- install astring 0.8.5 [required by fpath, odoc-parser]
- install base v0.16.4 [required by ocamlformat]
- install camlp-streams 5.0.1 [required by odoc-parser]
- install cmdliner 1.3.0 [required by ocamlformat]
- install csexp 1.5.2 [required by ocamlformat]
- install dune-build-info 3.22.0~alpha0 [required by ocamlformat]
- install dune-configurator 3.22.0~alpha0 [required by base]
- install either 1.0.0 [required by ocamlformat]
- install fix 20250919 [required by ocamlformat]
- install fpath 0.7.3 [required by ocamlformat]
- install menhir 20260209 [required by ocamlformat]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by ocamlformat]
- install menhirSdk 20260209 [required by ocamlformat]
- install ocaml-version 3.5.0 [required by ocamlformat]
- install ocamlbuild 0.16.1 [required by fpath, uuseg]
- install ocamlfind 1.9.8 [required by ocp-indent, fpath, uuseg]
- install ocamlformat 0.24.1
- install ocp-indent 1.9.0 [required by ocamlformat]
- install odoc-parser 2.0.0 [required by ocamlformat]
- install re 1.14.0 [required by ocamlformat]
- install result 1.5 [required by odoc-parser]
- install sexplib0 v0.16.0 [required by base]
- install stdio v0.16.0 [required by ocamlformat]
- install topkg 1.1.1 [required by fpath, uuseg]
- install uucp 17.0.0 [required by uuseg]
- install uuseg 17.0.0 [required by ocamlformat]
- install uutf 1.0.4 [required by ocamlformat]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.1.3.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> retrieved dune-build-info.3.22.0~alpha0, dune-configurator.3.22.0~alpha0 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved fix.20250919 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed cmdliner.1.3.0
-> installed dune-build-info.3.22.0~alpha0
-> installed dune-configurator.3.22.0~alpha0
-> installed either.1.0.0
-> installed fix.20250919
-> retrieved ocaml-version.3.5.0 (cached)
-> installed menhirCST.20260209
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-version.3.5.0
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocamlformat.0.24.1 (cached)
-> retrieved ocp-indent.1.9.0 (cached)
-> retrieved odoc-parser.2.0.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdio.v0.16.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed result.1.5
-> retrieved uucp.17.0.0 (cached)
-> retrieved uuseg.17.0.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> installed sexplib0.v0.16.0
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> installed ocp-indent.1.9.0
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed menhir.20260209
-> installed stdio.v0.16.0
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed astring.0.8.5
-> installed odoc-parser.2.0.0
-> installed fpath.0.7.3
-> installed uucp.17.0.0
-> installed uuseg.17.0.0
-> installed ocamlformat.0.24.1
Done.
<><> ocp-indent.1.9.0 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/4.14/share/emacs/site-lisp")
(require 'ocp-indent)
* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:42.27 ---> saved as "ef05f55cdb46affcd1e67948c8d45b34223db309b1500f2208416d13b7c9abb0"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocamlformat.0.24.1) || true"))
The following actions will be performed:
=== downgrade 1 package
- downgrade ocp-indent 1.9.0 to 1.8.1 [required by ocamlformat]
=== recompile 1 package
- recompile ocamlformat 0.24.1
=== install 6 packages
- install alcotest 1.9.1 [required by ocamlformat]
- install base-bytes base [required by ocp-indent]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlformat-rpc-lib 0.24.1 [required by ocamlformat]
- install stdlib-shims 0.3.0 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> removed ocp-indent.1.9.0
-> installed base-bytes.base
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlformat.0.24.1, ocamlformat-rpc-lib.0.24.1 (https://opam.ocaml.org/cache)
-> installed fmt.0.11.0
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ocp-indent.1.8.1 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed ocamlformat-rpc-lib.0.24.1
-> removed ocamlformat.0.24.1
-> installed stdlib-shims.0.3.0
-> installed ocp-indent.1.8.1
-> installed alcotest.1.9.1
[ERROR] The compilation of ocamlformat.0.24.1 failed at "dune build -p ocamlformat -j 255 @install @runtest".
#=== ERROR while compiling ocamlformat.0.24.1 =================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/ocamlformat.0.24.1
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p ocamlformat -j 255 @install @runtest
# exit-code 1
# env-file ~/.opam/log/ocamlformat-7-40530f.env
# output-file ~/.opam/log/ocamlformat-7-40530f.out
### output ###
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib.cmi -c -intf vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli)
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli", line 8, characters 16-27:
# 8 | module Format = Caml.Format
# ^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli", line 9, characters 18-31:
# 9 | module Filename = Caml.Filename
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib__Fpath_ext.cmx -c -impl vendor/ocamlformat-stdlib/fpath_ext.ml)
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 3, characters 13-28:
# 3 | let cwd () = Caml.Sys.getcwd () |> v
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 5, characters 30-50:
# 5 | let exists p = to_string p |> Caml.Sys.file_exists
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib__Warning.cmx -c -impl vendor/ocamlformat-stdlib/warning.ml)
# File "vendor/ocamlformat-stdlib/warning.ml", line 17, characters 43-68:
# 17 | | Some reporter -> Location.print_report Caml.Format.err_formatter reporter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib__Warning.cmo -c -impl vendor/ocamlformat-stdlib/warning.ml)
# File "vendor/ocamlformat-stdlib/warning.ml", line 17, characters 43-68:
# 17 | | Some reporter -> Location.print_report Caml.Format.err_formatter reporter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib__Fpath_ext.cmo -c -impl vendor/ocamlformat-stdlib/fpath_ext.ml)
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 3, characters 13-28:
# 3 | let cwd () = Caml.Sys.getcwd () |> v
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 5, characters 30-50:
# 5 | let exists p = to_string p |> Caml.Sys.file_exists
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib.cmo -c -impl vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml)
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 9, characters 16-27:
# 9 | module Format = Caml.Format
# ^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 10, characters 18-31:
# 10 | module Filename = Caml.Filename
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib.cmx -c -impl vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml)
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 9, characters 16-27:
# 9 | module Format = Caml.Format
# ^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 10, characters 18-31:
# 10 | module Filename = Caml.Filename
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Synthesis.cmo -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
# File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
# 194 | (Lr1.reductions st)
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Main.cmo -c -impl vendor/parser-recovery/menhir-recover/main.ml)
# File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
# 47 | (Lr1.reductions st));
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Synthesis.cmx -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
# File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
# 194 | (Lr1.reductions st)
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Main.cmx -c -impl vendor/parser-recovery/menhir-recover/main.ml)
# File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
# 47 | (Lr1.reductions st));
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Literal_lexer.cmo -c -impl lib/Literal_lexer.ml)
# File "lib/Literal_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__File_system.cmo -c -impl lib/File_system.ml)
# File "lib/File_system.ml", line 37, characters 10-29:
# 37 | match Caml.Sys.getenv_opt "XDG_CONFIG_HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/File_system.ml", line 39, characters 12-31:
# 39 | match Caml.Sys.getenv_opt "HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Toplevel_lexer.cmo -c -impl lib/Toplevel_lexer.ml)
# File "lib/Toplevel_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Migrate_ast.cmo -c -impl lib/Migrate_ast.ml)
# File "lib/Migrate_ast.ml", line 115, characters 4-23:
# 115 | Caml.Format.fprintf ppf "File \"%s\", line %d, characters %d-%d:"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Fmt_odoc.cmo -c -impl lib/Fmt_odoc.ml)
# File "lib/Fmt_odoc.ml", line 98, characters 27-52:
# 98 | Docstring.warn Caml.Format.err_formatter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Translation_unit.cmo -c -impl lib/Translation_unit.ml)
# File "lib/Translation_unit.ml", line 34, characters 48-61:
# 34 | let exe = chop_any_extension (Filename.basename Caml.Sys.argv.(0))
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 58, characters 7-23:
# 58 | (Caml.Sys.command
# ^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 60, characters 4-19:
# 60 | Caml.Sys.remove p ;
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 61, characters 4-19:
# 61 | Caml.Sys.remove n
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 434, characters 8-22:
# 434 | Caml.flush_all () ;
# ^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Cmts.cmo -c -impl lib/Cmts.ml)
# File "lib/Cmts.ml", line 27, characters 6-26:
# 27 | Caml.Format.asprintf "%a" Printast.expression e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 29, characters 30-50:
# 29 | let pattern_to_string e = Caml.Format.asprintf "%a" Printast.pattern e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 306, characters 4-23:
# 306 | Caml.Format.eprintf "relocate %a to %a and %a@\n%!" Location.fmt src
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 423, characters 6-25:
# 423 | Caml.Format.eprintf "AST:\n%a\n%!"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Ast.cmo -c -impl lib/Ast.ml)
# File "lib/Ast.ml", line 960, characters 17-44:
# 960 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Fmt_ast.cmo -c -impl lib/Fmt_ast.ml)
# File "lib/Fmt_ast.ml", line 92, characters 19-46:
# 92 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 93, characters 10-29:
# 93 | Caml.Format.eprintf "@\nFAIL@\n%a@\n%s@.%!" Ast.dump ast bt ;
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4462, characters 21-41:
# 4462 | Error (`Msg (Caml.Format.asprintf "expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4464, characters 21-41:
# 4464 | Error (`Msg (Caml.Format.asprintf "not expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4466, characters 21-41:
# 4466 | Error (`Msg (Caml.Format.asprintf "invalid toplevel or OCaml syntax"))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4468, characters 21-41:
# 4468 | Error (`Msg (Caml.Format.asprintf "%a" Exn.pp e))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Literal_lexer.cmx -c -impl lib/Literal_lexer.ml)
# File "lib/Literal_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__File_system.cmx -c -impl lib/File_system.ml)
# File "lib/File_system.ml", line 37, characters 10-29:
# 37 | match Caml.Sys.getenv_opt "XDG_CONFIG_HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/File_system.ml", line 39, characters 12-31:
# 39 | match Caml.Sys.getenv_opt "HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Migrate_ast.cmx -c -impl lib/Migrate_ast.ml)
# File "lib/Migrate_ast.ml", line 115, characters 4-23:
# 115 | Caml.Format.fprintf ppf "File \"%s\", line %d, characters %d-%d:"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Toplevel_lexer.cmx -c -impl lib/Toplevel_lexer.ml)
# File "lib/Toplevel_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Fmt_odoc.cmx -c -impl lib/Fmt_odoc.ml)
# File "lib/Fmt_odoc.ml", line 98, characters 27-52:
# 98 | Docstring.warn Caml.Format.err_formatter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Ast.cmx -c -impl lib/Ast.ml)
# File "lib/Ast.ml", line 960, characters 17-44:
# 960 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Cmts.cmx -c -impl lib/Cmts.ml)
# File "lib/Cmts.ml", line 27, characters 6-26:
# 27 | Caml.Format.asprintf "%a" Printast.expression e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 29, characters 30-50:
# 29 | let pattern_to_string e = Caml.Format.asprintf "%a" Printast.pattern e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 306, characters 4-23:
# 306 | Caml.Format.eprintf "relocate %a to %a and %a@\n%!" Location.fmt src
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 423, characters 6-25:
# 423 | Caml.Format.eprintf "AST:\n%a\n%!"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Fmt_ast.cmx -c -impl lib/Fmt_ast.ml)
# File "lib/Fmt_ast.ml", line 92, characters 19-46:
# 92 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 93, characters 10-29:
# 93 | Caml.Format.eprintf "@\nFAIL@\n%a@\n%s@.%!" Ast.dump ast bt ;
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4462, characters 21-41:
# 4462 | Error (`Msg (Caml.Format.asprintf "expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4464, characters 21-41:
# 4464 | Error (`Msg (Caml.Format.asprintf "not expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4466, characters 21-41:
# 4466 | Error (`Msg (Caml.Format.asprintf "invalid toplevel or OCaml syntax"))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4468, characters 21-41:
# 4468 | Error (`Msg (Caml.Format.asprintf "%a" Exn.pp e))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Translation_unit.cmx -c -impl lib/Translation_unit.ml)
# File "lib/Translation_unit.ml", line 34, characters 48-61:
# 34 | let exe = chop_any_extension (Filename.basename Caml.Sys.argv.(0))
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 58, characters 7-23:
# 58 | (Caml.Sys.command
# ^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 60, characters 4-19:
# 60 | Caml.Sys.remove p ;
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 61, characters 4-19:
# 61 | Caml.Sys.remove n
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 434, characters 8-22:
# 434 | Caml.flush_all () ;
# ^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_literal_lexer.cmx -c -impl test/unit/test_literal_lexer.ml)
# File "test/unit/test_literal_lexer.ml", line 22, characters 48-60:
# 22 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected got )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_literal_lexer.ml", line 60, characters 10-22:
# 60 | Caml.__LOC__ expected got )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_fmt.cmx -c -impl test/unit/test_fmt.ml)
# File "test/unit/test_fmt.ml", line 25, characters 41-53:
# 25 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 26, characters 48-60:
# 26 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected_r got_r
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 42, characters 41-53:
# 42 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 43, characters 48-60:
# 43 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected_r got_r
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 63, characters 41-53:
# 63 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 67, characters 10-22:
# 67 | Caml.__LOC__ expected_calls got_calls )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 88, characters 41-53:
# 88 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 92, characters 10-22:
# 92 | Caml.__LOC__ expected_calls got_calls )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 109, characters 39-51:
# 109 | Alcotest.check Alcotest.string Caml.__LOC__ expected got )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocamlformat_stdlib -g -I bin/ocamlformat/.main.eobjs/byte -I bin/ocamlformat/.main.eobjs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -o bin/ocamlformat/.main.eobjs/native/dune__exe__Main.cmx -c -impl bin/ocamlformat/main.ml)
# File "bin/ocamlformat/main.ml", line 16, characters 0-12:
# 16 | Caml.at_exit (Format.pp_print_flush Format.err_formatter) ;;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 18, characters 0-12:
# 18 | Caml.at_exit (Format_.pp_print_flush Format_.err_formatter)
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 99, characters 13-22:
# 99 | | Ok () -> Caml.exit 0
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 102, characters 6-15:
# 102 | Caml.exit 1 )
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 103, characters 27-36:
# 103 | | Ok (`Version | `Help) -> Caml.exit 0
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 104, characters 13-22:
# 104 | | Error _ -> Caml.exit 1
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocamlformat_stdlib -g -I bin/ocamlformat-rpc/.main.eobjs/byte -I bin/ocamlformat-rpc/.main.eobjs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/csexp -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I lib-rpc-server/.ocamlformat_rpc.objs/byte -I lib-rpc-server/.ocamlformat_rpc.objs/native -I lib-rpc/lib-protocol/.ocamlformat_rpc_lib_protocol.objs/byte -I lib-rpc/lib-protocol/.ocamlformat_rpc_lib_protocol.objs/native -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -o bin/ocamlformat-rpc/.main.eobjs/native/dune__exe__Main.cmx -c -impl bin/ocamlformat-rpc/main.ml)
# File "bin/ocamlformat-rpc/main.ml", line 15, characters 2-14:
# 15 | Caml.at_exit (Format.pp_print_flush Format.err_formatter) ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat-rpc/main.ml", line 16, characters 2-14:
# 16 | Caml.at_exit (Format_.pp_print_flush Format_.err_formatter)
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat-rpc/main.ml", line 77, characters 9-18:
# 77 | let () = Caml.exit @@ Cmd.eval_result (Cmd.v info rpc_main_t)
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_unit.cmx -c -impl test/unit/test_unit.ml)
# File "test/unit/test_unit.ml", line 49, characters 24-43:
# 49 | let pp ppf (s, e) = Caml.Format.fprintf ppf "(%d, %d)" s e
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/passing/tests/align_infix.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/align_infix.ml.stderr
# diff --git a/_build/default/test/passing/align_infix.ml.stderr b/_build/default/test/passing/align_infix.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/alignment.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/alignment.ml.stderr
# diff --git a/_build/default/test/passing/alignment.ml.stderr b/_build/default/test/passing/alignment.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/apply_functor.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/apply_functor.ml.stderr
# diff --git a/_build/default/test/passing/apply_functor.ml.stderr b/_build/default/test/passing/apply_functor.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/args_grouped.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/args_grouped.ml.stderr
# diff --git a/_build/default/test/passing/args_grouped.ml.stderr b/_build/default/test/passing/args_grouped.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/array.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/array.ml.stderr
# diff --git a/_build/default/test/passing/array.ml.stderr b/_build/default/test/passing/array.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/attribute_and_expression.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/attribute_and_expression.ml.stderr
# diff --git a/_build/default/test/passing/attribute_and_expression.ml.stderr b/_build/default/test/passing/attribute_and_expression.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/attributes.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/attributes.mli.stderr
# diff --git a/_build/default/test/passing/attributes.mli.stderr b/_build/default/test/passing/attributes.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/binders.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/binders.ml.stderr
# diff --git a/_build/default/test/passing/binders.ml.stderr b/_build/default/test/passing/binders.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_fun_decl-fit_or_vertical.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr
# diff --git a/_build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr b/_build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_fun_decl-wrap.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl-wrap.ml.stderr
# diff --git a/_build/default/test/passing/break_fun_decl-wrap.ml.stderr b/_build/default/test/passing/break_fun_decl-wrap.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_fun_decl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl.ml.stderr
# diff --git a/_build/default/test/passing/break_fun_decl.ml.stderr b/_build/default/test/passing/break_fun_decl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_record.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_record.ml.stderr
# diff --git a/_build/default/test/passing/break_record.ml.stderr b/_build/default/test/passing/break_record.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_separators-after.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators-after.ml.stderr
# diff --git a/_build/default/test/passing/break_separators-after.ml.stderr b/_build/default/test/passing/break_separators-after.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_separators-before_docked.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators-before_docked.ml.stderr
# diff --git a/_build/default/test/passing/break_separators-before_docked.ml.stderr b/_build/default/test/passing/break_separators-before_docked.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_separators.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators.ml.stderr
# diff --git a/_build/default/test/passing/break_separators.ml.stderr b/_build/default/test/passing/break_separators.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/class_expr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/class_expr.ml.stderr
# diff --git a/_build/default/test/passing/class_expr.ml.stderr b/_build/default/test/passing/class_expr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/class_type.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/class_type.ml.stderr
# diff --git a/_build/default/test/passing/class_type.ml.stderr b/_build/default/test/passing/class_type.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/cmdline_override.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/cmdline_override.ml.stderr
# diff --git a/_build/default/test/passing/cmdline_override.ml.stderr b/_build/default/test/passing/cmdline_override.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/cmdline_override2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/cmdline_override2.ml.stderr
# diff --git a/_build/default/test/passing/cmdline_override2.ml.stderr b/_build/default/test/passing/cmdline_override2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/coerce.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/coerce.ml.stderr
# diff --git a/_build/default/test/passing/coerce.ml.stderr b/_build/default/test/passing/coerce.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/collections-conventional.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections-conventional.ml.stderr
# diff --git a/_build/default/test/passing/collections-conventional.ml.stderr b/_build/default/test/passing/collections-conventional.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/collections-janestreet.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections-janestreet.ml.stderr
# diff --git a/_build/default/test/passing/collections-janestreet.ml.stderr b/_build/default/test/passing/collections-janestreet.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/collections.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections.ml.stderr
# diff --git a/_build/default/test/passing/collections.ml.stderr b/_build/default/test/passing/collections.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_breaking.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_breaking.ml.stderr
# diff --git a/_build/default/test/passing/comment_breaking.ml.stderr b/_build/default/test/passing/comment_breaking.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_header.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_header.ml.stderr
# diff --git a/_build/default/test/passing/comment_header.ml.stderr b/_build/default/test/passing/comment_header.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_in_empty.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_in_empty.ml.stderr
# diff --git a/_build/default/test/passing/comment_in_empty.ml.stderr b/_build/default/test/passing/comment_in_empty.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_in_modules.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_in_modules.ml.stderr
# diff --git a/_build/default/test/passing/comment_in_modules.ml.stderr b/_build/default/test/passing/comment_in_modules.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_last.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_last.ml.stderr
# diff --git a/_build/default/test/passing/comment_last.ml.stderr b/_build/default/test/passing/comment_last.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_sparse.ml.stderr
# diff --git a/_build/default/test/passing/comment_sparse.ml.stderr b/_build/default/test/passing/comment_sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comments.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments.mli.stderr
# diff --git a/_build/default/test/passing/comments.mli.stderr b/_build/default/test/passing/comments.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comments_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments_args.ml.stderr
# diff --git a/_build/default/test/passing/comments_args.ml.stderr b/_build/default/test/passing/comments_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comments_around_disabled.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments_around_disabled.ml.stderr
# diff --git a/_build/default/test/passing/comments_around_disabled.ml.stderr b/_build/default/test/passing/comments_around_disabled.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/crlf_to_crlf.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/crlf_to_crlf.ml.stderr
# diff --git a/_build/default/test/passing/crlf_to_crlf.ml.stderr b/_build/default/test/passing/crlf_to_crlf.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/crlf_to_lf.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/crlf_to_lf.ml.stderr
# diff --git a/_build/default/test/passing/crlf_to_lf.ml.stderr b/_build/default/test/passing/crlf_to_lf.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/custom_list.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/custom_list.ml.stderr
# diff --git a/_build/default/test/passing/custom_list.ml.stderr b/_build/default/test/passing/custom_list.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/directives.mlt.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/directives.mlt.stderr
# diff --git a/_build/default/test/passing/directives.mlt.stderr b/_build/default/test/passing/directives.mlt.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/disabled.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/disabled.ml.stderr
# diff --git a/_build/default/test/passing/disabled.ml.stderr b/_build/default/test/passing/disabled.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/disambiguated_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/disambiguated_types.ml.stderr
# diff --git a/_build/default/test/passing/disambiguated_types.ml.stderr b/_build/default/test/passing/disambiguated_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/doc_comments_padding.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/doc_comments_padding.ml.stderr
# diff --git a/_build/default/test/passing/doc_comments_padding.ml.stderr b/_build/default/test/passing/doc_comments_padding.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/eliom_ext.eliom.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/eliom_ext.eliom.stderr
# diff --git a/_build/default/test/passing/eliom_ext.eliom.stderr b/_build/default/test/passing/eliom_ext.eliom.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty.ml.stderr
# diff --git a/_build/default/test/passing/empty.ml.stderr b/_build/default/test/passing/empty.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty_ml.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_ml.ml.stderr
# diff --git a/_build/default/test/passing/empty_ml.ml.stderr b/_build/default/test/passing/empty_ml.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty_mli.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_mli.mli.stderr
# diff --git a/_build/default/test/passing/empty_mli.mli.stderr b/_build/default/test/passing/empty_mli.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty_mlt.mlt.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_mlt.mlt.stderr
# diff --git a/_build/default/test/passing/empty_mlt.mlt.stderr b/_build/default/test/passing/empty_mlt.mlt.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/escaped_nl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/escaped_nl.ml.stderr
# diff --git a/_build/default/test/passing/escaped_nl.ml.stderr b/_build/default/test/passing/escaped_nl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/exceptions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exceptions.ml.stderr
# diff --git a/_build/default/test/passing/exceptions.ml.stderr b/_build/default/test/passing/exceptions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/exceptions.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exceptions.mli.stderr
# diff --git a/_build/default/test/passing/exceptions.mli.stderr b/_build/default/test/passing/exceptions.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/exp_record.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exp_record.ml.stderr
# diff --git a/_build/default/test/passing/exp_record.ml.stderr b/_build/default/test/passing/exp_record.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/extensions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions.ml.stderr
# diff --git a/_build/default/test/passing/extensions.ml.stderr b/_build/default/test/passing/extensions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/extensions.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions.mli.stderr
# diff --git a/_build/default/test/passing/extensions.mli.stderr b/_build/default/test/passing/extensions.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/extensions_exp_grouping.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions_exp_grouping.ml.stderr
# diff --git a/_build/default/test/passing/extensions_exp_grouping.ml.stderr b/_build/default/test/passing/extensions_exp_grouping.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/field.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/field.ml.stderr
# diff --git a/_build/default/test/passing/field.ml.stderr b/_build/default/test/passing/field.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/floating_doc.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/floating_doc.ml.stderr
# diff --git a/_build/default/test/passing/floating_doc.ml.stderr b/_build/default/test/passing/floating_doc.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/for_while.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/for_while.ml.stderr
# diff --git a/_build/default/test/passing/for_while.ml.stderr b/_build/default/test/passing/for_while.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/format_invalid_files-0.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files-0.ml.stderr
# diff --git a/_build/default/test/passing/format_invalid_files-0.ml.stderr b/_build/default/test/passing/format_invalid_files-0.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/format_invalid_files.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files.ml.stderr
# diff --git a/_build/default/test/passing/format_invalid_files.ml.stderr b/_build/default/test/passing/format_invalid_files.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/format_invalid_files_with_locations.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files_with_locations.ml.stderr
# diff --git a/_build/default/test/passing/format_invalid_files_with_locations.ml.stderr b/_build/default/test/passing/format_invalid_files_with_locations.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/fun_decl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/fun_decl.ml.stderr
# diff --git a/_build/default/test/passing/fun_decl.ml.stderr b/_build/default/test/passing/fun_decl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/fun_function.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/fun_function.ml.stderr
# diff --git a/_build/default/test/passing/fun_function.ml.stderr b/_build/default/test/passing/fun_function.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/functor.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/functor.ml.stderr
# diff --git a/_build/default/test/passing/functor.ml.stderr b/_build/default/test/passing/functor.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/funsig.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/funsig.ml.stderr
# diff --git a/_build/default/test/passing/funsig.ml.stderr b/_build/default/test/passing/funsig.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/gadt.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/gadt.ml.stderr
# diff --git a/_build/default/test/passing/gadt.ml.stderr b/_build/default/test/passing/gadt.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/generative.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/generative.ml.stderr
# diff --git a/_build/default/test/passing/generative.ml.stderr b/_build/default/test/passing/generative.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/hash_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/hash_types.ml.stderr
# diff --git a/_build/default/test/passing/hash_types.ml.stderr b/_build/default/test/passing/hash_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/holes.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/holes.ml.stderr
# diff --git a/_build/default/test/passing/holes.ml.stderr b/_build/default/test/passing/holes.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ifand.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ifand.ml.stderr
# diff --git a/_build/default/test/passing/ifand.ml.stderr b/_build/default/test/passing/ifand.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/index_op.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/index_op.ml.stderr
# diff --git a/_build/default/test/passing/index_op.ml.stderr b/_build/default/test/passing/index_op.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/indicate_multiline_delimiters-space.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr
# diff --git a/_build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr b/_build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/indicate_multiline_delimiters.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/indicate_multiline_delimiters.ml.stderr
# diff --git a/_build/default/test/passing/indicate_multiline_delimiters.ml.stderr b/_build/default/test/passing/indicate_multiline_delimiters.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_arg_grouping.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_arg_grouping.ml.stderr
# diff --git a/_build/default/test/passing/infix_arg_grouping.ml.stderr b/_build/default/test/passing/infix_arg_grouping.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind-break.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-break.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind-break.ml.stderr b/_build/default/test/passing/infix_bind-break.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind-fit_or_vertical-break.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr b/_build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind-fit_or_vertical.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr b/_build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind.ml.stderr b/_build/default/test/passing/infix_bind.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_precedence.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_precedence.ml.stderr
# diff --git a/_build/default/test/passing/infix_precedence.ml.stderr b/_build/default/test/passing/infix_precedence.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/injectivity.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/injectivity.ml.stderr
# diff --git a/_build/default/test/passing/injectivity.ml.stderr b/_build/default/test/passing/injectivity.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/invalid.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/invalid.ml.stderr
# diff --git a/_build/default/test/passing/invalid.ml.stderr b/_build/default/test/passing/invalid.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue114.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue114.ml.stderr
# diff --git a/_build/default/test/passing/issue114.ml.stderr b/_build/default/test/passing/issue114.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue48.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue48.ml.stderr
# diff --git a/_build/default/test/passing/issue48.ml.stderr b/_build/default/test/passing/issue48.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue51.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue51.ml.stderr
# diff --git a/_build/default/test/passing/issue51.ml.stderr b/_build/default/test/passing/issue51.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue57.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue57.ml.stderr
# diff --git a/_build/default/test/passing/issue57.ml.stderr b/_build/default/test/passing/issue57.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue60.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue60.ml.stderr
# diff --git a/_build/default/test/passing/issue60.ml.stderr b/_build/default/test/passing/issue60.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue77.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue77.ml.stderr
# diff --git a/_build/default/test/passing/issue77.ml.stderr b/_build/default/test/passing/issue77.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue85.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue85.ml.stderr
# diff --git a/_build/default/test/passing/issue85.ml.stderr b/_build/default/test/passing/issue85.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue89.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue89.ml.stderr
# diff --git a/_build/default/test/passing/issue89.ml.stderr b/_build/default/test/passing/issue89.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ite-kw_first.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-kw_first.ml.stderr
# diff --git a/_build/default/test/passing/ite-kw_first.ml.stderr b/_build/default/test/passing/ite-kw_first.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ite-kw_first_no_indicate.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-kw_first_no_indicate.ml.stderr
# diff --git a/_build/default/test/passing/ite-kw_first_no_indicate.ml.stderr b/_build/default/test/passing/ite-kw_first_no_indicate.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ite-no_indicate.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-no_indicate.ml.stderr
# diff --git a/_build/default/test/passing/ite-no_indicate.ml.stderr b/_build/default/test/passing/ite-no_indicate.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_args.ml.stderr
# diff --git a/_build/default/test/passing/js_args.ml.stderr b/_build/default/test/passing/js_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_begin.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_begin.ml.stderr
# diff --git a/_build/default/test/passing/js_begin.ml.stderr b/_build/default/test/passing/js_begin.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_bind.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_bind.ml.stderr
# diff --git a/_build/default/test/passing/js_bind.ml.stderr b/_build/default/test/passing/js_bind.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_fun.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_fun.ml.stderr
# diff --git a/_build/default/test/passing/js_fun.ml.stderr b/_build/default/test/passing/js_fun.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_map.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_map.ml.stderr
# diff --git a/_build/default/test/passing/js_map.ml.stderr b/_build/default/test/passing/js_map.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_pattern.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_pattern.ml.stderr
# diff --git a/_build/default/test/passing/js_pattern.ml.stderr b/_build/default/test/passing/js_pattern.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_poly.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_poly.ml.stderr
# diff --git a/_build/default/test/passing/js_poly.ml.stderr b/_build/default/test/passing/js_poly.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_record.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_record.ml.stderr
# diff --git a/_build/default/test/passing/js_record.ml.stderr b/_build/default/test/passing/js_record.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_sig.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_sig.mli.stderr
# diff --git a/_build/default/test/passing/js_sig.mli.stderr b/_build/default/test/passing/js_sig.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_syntax.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_syntax.ml.stderr
# diff --git a/_build/default/test/passing/js_syntax.ml.stderr b/_build/default/test/passing/js_syntax.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_to_do.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_to_do.ml.stderr
# diff --git a/_build/default/test/passing/js_to_do.ml.stderr b/_build/default/test/passing/js_to_do.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_upon.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_upon.ml.stderr
# diff --git a/_build/default/test/passing/js_upon.ml.stderr b/_build/default/test/passing/js_upon.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/kw_extentions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/kw_extentions.ml.stderr
# diff --git a/_build/default/test/passing/kw_extentions.ml.stderr b/_build/default/test/passing/kw_extentions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/label_option_default_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/label_option_default_args.ml.stderr
# diff --git a/_build/default/test/passing/label_option_default_args.ml.stderr b/_build/default/test/passing/label_option_default_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/labelled_args-414.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/labelled_args-414.ml.stderr
# diff --git a/_build/default/test/passing/labelled_args-414.ml.stderr b/_build/default/test/passing/labelled_args-414.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/labelled_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/labelled_args.ml.stderr
# diff --git a/_build/default/test/passing/labelled_args.ml.stderr b/_build/default/test/passing/labelled_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/lazy.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/lazy.ml.stderr
# diff --git a/_build/default/test/passing/lazy.ml.stderr b/_build/default/test/passing/lazy.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_binding.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding.ml.stderr
# diff --git a/_build/default/test/passing/let_binding.ml.stderr b/_build/default/test/passing/let_binding.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_binding_spacing-double-semicolon.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr
# diff --git a/_build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr b/_build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_binding_spacing.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding_spacing.ml.stderr
# diff --git a/_build/default/test/passing/let_binding_spacing.ml.stderr b/_build/default/test/passing/let_binding_spacing.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_in_constr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_in_constr.ml.stderr
# diff --git a/_build/default/test/passing/let_in_constr.ml.stderr b/_build/default/test/passing/let_in_constr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_module-sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_module-sparse.ml.stderr
# diff --git a/_build/default/test/passing/let_module-sparse.ml.stderr b/_build/default/test/passing/let_module-sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_module.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_module.ml.stderr
# diff --git a/_build/default/test/passing/let_module.ml.stderr b/_build/default/test/passing/let_module.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_punning.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_punning.ml.stderr
# diff --git a/_build/default/test/passing/let_punning.ml.stderr b/_build/default/test/passing/let_punning.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list-space_around.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list-space_around.ml.stderr
# diff --git a/_build/default/test/passing/list-space_around.ml.stderr b/_build/default/test/passing/list-space_around.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list.ml.stderr
# diff --git a/_build/default/test/passing/list.ml.stderr b/_build/default/test/passing/list.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list_and_comments.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list_and_comments.ml.stderr
# diff --git a/_build/default/test/passing/list_and_comments.ml.stderr b/_build/default/test/passing/list_and_comments.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list_normalized.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list_normalized.ml.stderr
# diff --git a/_build/default/test/passing/list_normalized.ml.stderr b/_build/default/test/passing/list_normalized.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/loc_stack.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/loc_stack.ml.stderr
# diff --git a/_build/default/test/passing/loc_stack.ml.stderr b/_build/default/test/passing/loc_stack.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/locally_abtract_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/locally_abtract_types.ml.stderr
# diff --git a/_build/default/test/passing/locally_abtract_types.ml.stderr b/_build/default/test/passing/locally_abtract_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/match.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/match.ml.stderr
# diff --git a/_build/default/test/passing/match.ml.stderr b/_build/default/test/passing/match.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/match2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/match2.ml.stderr
# diff --git a/_build/default/test/passing/match2.ml.stderr b/_build/default/test/passing/match2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/max_indent.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/max_indent.ml.stderr
# diff --git a/_build/default/test/passing/max_indent.ml.stderr b/_build/default/test/passing/max_indent.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/mod_type_subst.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/mod_type_subst.ml.stderr
# diff --git a/_build/default/test/passing/mod_type_subst.ml.stderr b/_build/default/test/passing/mod_type_subst.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module.ml.stderr
# diff --git a/_build/default/test/passing/module.ml.stderr b/_build/default/test/passing/module.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_anonymous.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_anonymous.ml.stderr
# diff --git a/_build/default/test/passing/module_anonymous.ml.stderr b/_build/default/test/passing/module_anonymous.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_item_spacing-sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_item_spacing-sparse.ml.stderr
# diff --git a/_build/default/test/passing/module_item_spacing-sparse.ml.stderr b/_build/default/test/passing/module_item_spacing-sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_item_spacing.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_item_spacing.ml.stderr
# diff --git a/_build/default/test/passing/module_item_spacing.ml.stderr b/_build/default/test/passing/module_item_spacing.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_type.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_type.ml.stderr
# diff --git a/_build/default/test/passing/module_type.ml.stderr b/_build/default/test/passing/module_type.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/monadic_binding.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/monadic_binding.ml.stderr
# diff --git a/_build/default/test/passing/monadic_binding.ml.stderr b/_build/default/test/passing/monadic_binding.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/multi_index_op.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/multi_index_op.ml.stderr
# diff --git a/_build/default/test/passing/multi_index_op.ml.stderr b/_build/default/test/passing/multi_index_op.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/named_existentials.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/named_existentials.ml.stderr
# diff --git a/_build/default/test/passing/named_existentials.ml.stderr b/_build/default/test/passing/named_existentials.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/new.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/new.ml.stderr
# diff --git a/_build/default/test/passing/new.ml.stderr b/_build/default/test/passing/new.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object2.ml.stderr
# diff --git a/_build/default/test/passing/object2.ml.stderr b/_build/default/test/passing/object2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object_expr-414.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_expr-414.ml.stderr
# diff --git a/_build/default/test/passing/object_expr-414.ml.stderr b/_build/default/test/passing/object_expr-414.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object_expr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_expr.ml.stderr
# diff --git a/_build/default/test/passing/object_expr.ml.stderr b/_build/default/test/passing/object_expr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object_type.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_type.ml.stderr
# diff --git a/_build/default/test/passing/object_type.ml.stderr b/_build/default/test/passing/object_type.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/obuild.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/obuild.ml.stderr
# diff --git a/_build/default/test/passing/obuild.ml.stderr b/_build/default/test/passing/obuild.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ocp_indent_options.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ocp_indent_options.ml.stderr
# diff --git a/_build/default/test/passing/ocp_indent_options.ml.stderr b/_build/default/test/passing/ocp_indent_options.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/open.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/open.ml.stderr
# diff --git a/_build/default/test/passing/open.ml.stderr b/_build/default/test/passing/open.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/open_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/open_types.ml.stderr
# diff --git a/_build/default/test/passing/open_types.ml.stderr b/_build/default/test/passing/open_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/override.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/override.ml.stderr
# diff --git a/_build/default/test/passing/override.ml.stderr b/_build/default/test/passing/override.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/partial.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/partial.ml.stderr
# diff --git a/_build/default/test/passing/partial.ml.stderr b/_build/default/test/passing/partial.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/partial_double_quotes.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/partial_double_quotes.ml.stderr
# diff --git a/_build/default/test/passing/partial_double_quotes.ml.stderr b/_build/default/test/passing/partial_double_quotes.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/polytypes-default.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes-default.ml.stderr
# diff --git a/_build/default/test/passing/polytypes-default.ml.stderr b/_build/default/test/passing/polytypes-default.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/polytypes-janestreet.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes-janestreet.ml.stderr
# diff --git a/_build/default/test/passing/polytypes-janestreet.ml.stderr b/_build/default/test/passing/polytypes-janestreet.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/polytypes.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes.ml.stderr
# diff --git a/_build/default/test/passing/polytypes.ml.stderr b/_build/default/test/passing/polytypes.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/pre_post_extensions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/pre_post_extensions.ml.stderr
# diff --git a/_build/default/test/passing/pre_post_extensions.ml.stderr b/_build/default/test/passing/pre_post_extensions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/precedence.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/precedence.ml.stderr
# diff --git a/_build/default/test/passing/precedence.ml.stderr b/_build/default/test/passing/precedence.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/prefix_infix.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/prefix_infix.ml.stderr
# diff --git a/_build/default/test/passing/prefix_infix.ml.stderr b/_build/default/test/passing/prefix_infix.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/profiles.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/profiles.ml.stderr
# diff --git a/_build/default/test/passing/profiles.ml.stderr b/_build/default/test/passing/profiles.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/profiles2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/profiles2.ml.stderr
# diff --git a/_build/default/test/passing/profiles2.ml.stderr b/_build/default/test/passing/profiles2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/protected_object_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/protected_object_types.ml.stderr
# diff --git a/_build/default/test/passing/protected_object_types.ml.stderr b/_build/default/test/passing/protected_object_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/quoted_strings.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/quoted_strings.ml.stderr
# diff --git a/_build/default/test/passing/quoted_strings.ml.stderr b/_build/default/test/passing/quoted_strings.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/recmod.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/recmod.mli.stderr
# diff --git a/_build/default/test/passing/recmod.mli.stderr b/_build/default/test/passing/recmod.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/record_punning.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/record_punning.ml.stderr
# diff --git a/_build/default/test/passing/record_punning.ml.stderr b/_build/default/test/passing/record_punning.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/reformat_string.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/reformat_string.ml.stderr
# diff --git a/_build/default/test/passing/reformat_string.ml.stderr b/_build/default/test/passing/reformat_string.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/remove_extra_parens.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/remove_extra_parens.ml.stderr
# diff --git a/_build/default/test/passing/remove_extra_parens.ml.stderr b/_build/default/test/passing/remove_extra_parens.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/repl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/repl.ml.stderr
# diff --git a/_build/default/test/passing/repl.ml.stderr b/_build/default/test/passing/repl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/revapply_ext.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/revapply_ext.ml.stderr
# diff --git a/_build/default/test/passing/revapply_ext.ml.stderr b/_build/default/test/passing/revapply_ext.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/send.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/send.ml.stderr
# diff --git a/_build/default/test/passing/send.ml.stderr b/_build/default/test/passing/send.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/shebang.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/shebang.ml.stderr
# diff --git a/_build/default/test/passing/shebang.ml.stderr b/_build/default/test/passing/shebang.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/shortcut_ext_attr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/shortcut_ext_attr.ml.stderr
# diff --git a/_build/default/test/passing/shortcut_ext_attr.ml.stderr b/_build/default/test/passing/shortcut_ext_attr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/sig_value.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/sig_value.mli.stderr
# diff --git a/_build/default/test/passing/sig_value.mli.stderr b/_build/default/test/passing/sig_value.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/skip.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/skip.ml.stderr
# diff --git a/_build/default/test/passing/skip.ml.stderr b/_build/default/test/passing/skip.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/string.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string.ml.stderr
# diff --git a/_build/default/test/passing/string.ml.stderr b/_build/default/test/passing/string.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/string_array.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string_array.ml.stderr
# diff --git a/_build/default/test/passing/string_array.ml.stderr b/_build/default/test/passing/string_array.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/string_wrapping.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string_wrapping.ml.stderr
# diff --git a/_build/default/test/passing/string_wrapping.ml.stderr b/_build/default/test/passing/string_wrapping.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/symbol.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/symbol.ml.stderr
# diff --git a/_build/default/test/passing/symbol.ml.stderr b/_build/default/test/passing/symbol.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/tag_only.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tag_only.ml.stderr
# diff --git a/_build/default/test/passing/tag_only.ml.stderr b/_build/default/test/passing/tag_only.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/tag_only.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tag_only.mli.stderr
# diff --git a/_build/default/test/passing/tag_only.mli.stderr b/_build/default/test/passing/tag_only.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/tuple_type_parens.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tuple_type_parens.ml.stderr
# diff --git a/_build/default/test/passing/tuple_type_parens.ml.stderr b/_build/default/test/passing/tuple_type_parens.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/type_and_constraint.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/type_and_constraint.ml.stderr
# diff --git a/_build/default/test/passing/type_and_constraint.ml.stderr b/_build/default/test/passing/type_and_constraint.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/type_annotations.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/type_annotations.ml.stderr
# diff --git a/_build/default/test/passing/type_annotations.ml.stderr b/_build/default/test/passing/type_annotations.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-compact.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact.ml.stderr
# diff --git a/_build/default/test/passing/types-compact.ml.stderr b/_build/default/test/passing/types-compact.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types.ml.stderr
# diff --git a/_build/default/test/passing/types.ml.stderr b/_build/default/test/passing/types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/unary.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/unary.ml.stderr
# diff --git a/_build/default/test/passing/unary.ml.stderr b/_build/default/test/passing/unary.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/unary_hash.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/unary_hash.ml.stderr
# diff --git a/_build/default/test/passing/unary_hash.ml.stderr b/_build/default/test/passing/unary_hash.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/use_file.mlt.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/use_file.mlt.stderr
# diff --git a/_build/default/test/passing/use_file.mlt.stderr b/_build/default/test/passing/use_file.mlt.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/verbatim_comments-wrap.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/verbatim_comments-wrap.ml.stderr
# diff --git a/_build/default/test/passing/verbatim_comments-wrap.ml.stderr b/_build/default/test/passing/verbatim_comments-wrap.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/verbatim_comments.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/verbatim_comments.ml.stderr
# diff --git a/_build/default/test/passing/verbatim_comments.ml.stderr b/_build/default/test/passing/verbatim_comments.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/wrap_comments_break.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/wrap_comments_break.ml.stderr
# diff --git a/_build/default/test/passing/wrap_comments_break.ml.stderr b/_build/default/test/passing/wrap_comments_break.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/wrapping_functor_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/wrapping_functor_args.ml.stderr
# diff --git a/_build/default/test/passing/wrapping_functor_args.ml.stderr b/_build/default/test/passing/wrapping_functor_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-compact-space_around-docked.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact-space_around-docked.ml.stderr
# diff --git a/_build/default/test/passing/types-compact-space_around-docked.ml.stderr b/_build/default/test/passing/types-compact-space_around-docked.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-compact-space_around.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact-space_around.ml.stderr
# diff --git a/_build/default/test/passing/types-compact-space_around.ml.stderr b/_build/default/test/passing/types-compact-space_around.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-sparse-space_around.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-sparse-space_around.ml.stderr
# diff --git a/_build/default/test/passing/types-sparse-space_around.ml.stderr b/_build/default/test/passing/types-sparse-space_around.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-sparse.ml.stderr
# diff --git a/_build/default/test/passing/types-sparse.ml.stderr b/_build/default/test/passing/types-sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# (cd _build/default/test/unit && ./test_unit.exe)
# Testing `ocamlformat'.
# This run has ID `BK8URPL1'.
#
# [OK] Location 0 compare_width_decr...
# [OK] Location 1 compare_width_decr...
# [OK] Location 2 compare_width_decr...
# [OK] Location 3 compare_width_decr...
# [OK] non overlapping interval tree 0 dump: empty.
# [OK] non overlapping interval tree 1 dump: singleton.
# [OK] non overlapping interval tree 2 dump: disjoint.
# [OK] non overlapping interval tree 3 dump: same start.
# [OK] non overlapping interval tree 4 dump: same end.
# [OK] non overlapping interval tree 5 dump: inclusion.
# [OK] non overlapping interval tree 6 roots: empty.
# [OK] non overlapping interval tree 7 roots: singleton.
# [OK] non overlapping interval tree 8 roots: disjoint.
# [OK] non overlapping interval tree 9 roots: inclusion.
# [OK] non overlapping interval tree 10 children: empty.
# [OK] non overlapping interval tree 11 children: no child...
# [OK] non overlapping interval tree 12 children: not pres...
# [OK] non overlapping interval tree 13 children: one level.
# [OK] non overlapping interval tree 14 children: two levels.
# [OK] non overlapping interval tree 15 children: no parti...
# [OK] Ast 0 !.
# [OK] Ast 1 ?.
# [OK] Ast 2 ~.
# [OK] Ast 3 *.
# [OK] Ast 4 +.
# [OK] Ast 5 !=.
# [OK] Ast 6 land.
# [OK] Ast 7 lor.
# [OK] Ast 8 ||.
# [OK] Ast 9 @.
# [OK] Ast 10 ::.
# [OK] Ast 11 :=.
# [OK] Ast 12 let+.
# [OK] Ast 13 and+.
# [OK] Ast 14 .().
# [OK] Ast 15 .*().
# [OK] Ast 16 .*(;..).
# [OK] Ast 17 .[].
# [OK] Ast 18 .*[].
# [OK] Ast 19 .*[;..].
# [OK] Ast 20 .{}.
# [OK] Ast 21 .*{}.
# [OK] Ast 22 .*{;..}.
# [OK] Ast 23 .{}<-.
# [OK] Ast 24 .*{}<-.
# [OK] Ast 25 .*{;..}<-.
# [OK] Ast 26 let.
# [OK] Ast 27 let+abc.
# [OK] Ast 28 and.
# [OK] Ast 29 *.
# [OK] Ast 30 +.
# [OK] Ast 31 !=.
# [OK] Ast 32 land.
# [OK] Ast 33 lor.
# [OK] Ast 34 ||.
# [OK] Ast 35 @.
# [OK] Ast 36 ::.
# [OK] Ast 37 :=.
# [OK] Ast 38 let+.
# [OK] Ast 39 and+.
# [OK] Ast 40 let.
# [OK] Ast 41 let+abc.
# [OK] Ast 42 and.
# [OK] Ast 43 .().
# [OK] Ast 44 .*().
# [OK] Ast 45 .*(;..).
# [OK] Ast 46 .[].
# [OK] Ast 47 .*[].
# [OK] Ast 48 .*[;..].
# [OK] Ast 49 .{}.
# [OK] Ast 50 .*{}.
# [OK] Ast 51 .*{;..}.
# [OK] Ast 52 .{}<-.
# [OK] Ast 53 .*{}<-.
# [OK] Ast 54 .*{;..}<-.
# [OK] Ast 55 *.
# [OK] Ast 56 +.
# [OK] Ast 57 !=.
# [OK] Ast 58 land.
# [OK] Ast 59 lor.
# [OK] Ast 60 ||.
# [OK] Ast 61 @.
# [OK] Ast 62 ::.
# [OK] Ast 63 :=.
# [OK] Ast 64 let+.
# [OK] Ast 65 and+.
# [OK] Ast 66 .().
# [OK] Ast 67 .*().
# [OK] Ast 68 .*(;..).
# [OK] Ast 69 .[].
# [OK] Ast 70 .*[].
# [OK] Ast 71 .*[;..].
# [OK] Ast 72 .{}.
# [OK] Ast 73 .*{}.
# [OK] Ast 74 .*{;..}.
# [OK] Ast 75 .{}<-.
# [OK] Ast 76 .*{}<-.
# [OK] Ast 77 .*{;..}<-.
# [OK] Ast 78 let.
# [OK] Ast 79 let+abc.
# [OK] Ast 80 and.
# [OK] Ast 81 #.
# [OK] Ast 82 #.
# [OK] Ast 83 ##.
# [OK] Ast 84 #++.
# [OK] Ast 85 #---#.
# [OK] Ast 86 let.
# [OK] Ast 87 let+abc.
# [OK] Ast 88 and.
# [OK] Ast 89 *.
# [OK] Ast 90 +.
# [OK] Ast 91 !=.
# [OK] Ast 92 land.
# [OK] Ast 93 lor.
# [OK] Ast 94 ||.
# [OK] Ast 95 @.
# [OK] Ast 96 ::.
# [OK] Ast 97 :=.
# [OK] Ast 98 let+.
# [OK] Ast 99 and+.
# [OK] Ast 100 .().
# [OK] Ast 101 .*().
# [OK] Ast 102 .*(;..).
# [OK] Ast 103 .[].
# [OK] Ast 104 .*[].
# [OK] Ast 105 .*[;..].
# [OK] Ast 106 .{}.
# [OK] Ast 107 .*{}.
# [OK] Ast 108 .*{;..}.
# [OK] Ast 109 .{}<-.
# [OK] Ast 110 .*{}<-.
# [OK] Ast 111 .*{;..}<-.
# [OK] Ast 112 let+.
# [OK] Ast 113 and+.
# [OK] Ast 114 *.
# [OK] Ast 115 +.
# [OK] Ast 116 !=.
# [OK] Ast 117 let.
# [OK] Ast 118 let+abc.
# [OK] Ast 119 and.
# [OK] Ast 120 and#.
# [OK] Ast 121 land.
# [OK] Ast 122 lor.
# [OK] Ast 123 ||.
# [OK] Ast 124 @.
# [OK] Ast 125 ::.
# [OK] Ast 126 :=.
# [OK] Ast 127 .().
# [OK] Ast 128 .*().
# [OK] Ast 129 .*(;..).
# [OK] Ast 130 .[].
# [OK] Ast 131 .*[].
# [OK] Ast 132 .*[;..].
# [OK] Ast 133 .{}.
# [OK] Ast 134 .*{}.
# [OK] Ast 135 .*{;..}.
# [OK] Ast 136 .{}<-.
# [OK] Ast 137 .*{}<-.
# [OK] Ast 138 .*{;..}<-.
# [OK] Indent 0 Partial_ast.indent...
# [OK] Indent 1 Partial_ast.indent...
# [OK] Indent 2 Partial_ast.indent...
# [OK] Indent 3 Partial_ast.indent...
# [OK] Literal_lexer 0 string: string: no...
# [OK] Literal_lexer 1 string: simple (pr...
# [OK] Literal_lexer 2 string: simple (no...
# [OK] Literal_lexer 3 string: numeric es...
# [OK] Literal_lexer 4 string: numeric es...
# [OK] Literal_lexer 5 string: raw tab (p...
# [OK] Literal_lexer 6 string: raw tab (n...
# [OK] Literal_lexer 7 string: backslash ...
# [OK] Literal_lexer 8 string: backslash ...
# [OK] Literal_lexer 9 string: backslash ...
# [OK] Literal_lexer 10 string: backslash ...
# [OK] Literal_lexer 11 char: not a charac...
# [OK] Literal_lexer 12 char: escaped newl...
# [OK] Literal_lexer 13 char: letter.
# [OK] Literal_lexer 14 char: escaped back...
# [OK] Literal_lexer 15 char: escaped sing...
# [OK] Literal_lexer 16 char: escaped doub...
# [OK] Literal_lexer 17 char: backslash n.
# [OK] Literal_lexer 18 char: backslash t.
# [OK] Literal_lexer 19 char: backslash b.
# [OK] Literal_lexer 20 char: backslash r.
# [OK] Literal_lexer 21 char: backslash sp...
# [OK] Literal_lexer 22 char: decimal escape.
# [OK] Literal_lexer 23 char: octal escape.
# [OK] Literal_lexer 24 char: hex escape.
# [OK] Fmt 0 lazy_: not using l...
# [OK] Fmt 1 lazy_: using lazy.
# [OK] Fmt 2 list_pn: evaluatio...
# [OK] Fmt 3 list_pn: does not ...
# [OK] Fmt 4 list_k: evaluation...
# [OK] Fmt 5 list_k: does not c...
# [OK] Fmt 6 sequence: 1 element.
# [OK] Fmt 7 sequence: empty list.
# [OK] Fmt 8 sequence: list.
# [OK] Fmt 9 sequence: long list.
# [OK] Range 0 make: "" None.
# [OK] Range 1 make: "" (0, 0).
# [OK] Range 2 make: "" (1, 0).
# [OK] Range 3 make: "" (-1, -1).
# [OK] Range 4 make: "" (1, 1).
# [OK] Range 5 make: "\n" None.
# [OK] Range 6 make: "\n" (0, 0).
# [OK] Range 7 make: "\n" (1, 0).
# [OK] Range 8 make: "\n" (-1, -1).
# [OK] Range 9 make: "\n" (1, 2).
# [OK] Range 10 make: "xxxx\nxxxxx...
# [OK] Range 11 make: "xxxx\nxxxxx...
# [OK] Range 12 make: "xxxx\nxxxxx...
# [OK] Range 13 make: "\n\n" None.
# [OK] Range 14 make: "\n\n" (0, 0).
# [OK] Range 15 make: "\n\n" (1, 2).
# [OK] Range 16 make: "\nxxxx\nxxx...
# [OK] Range 17 make: "xxx\nxxxx\n...
# [OK] Range 18 make: "xxx\nxxxx\n...
# [OK] Range 19 make: "xxx\nxxxx\n...
# [OK] Range 20 make: "xxx\nxxxx\n...
# [OK] Range 21 make: "xxx\nxxxx\n...
# [OK] Range 22 make: "xxx\nxxxx\n...
# [OK] Range 23 make: "xxx\nxxxx\n...
# [OK] Range 24 make: "xxx\nxxxx\n...
# [OK] Translation_unit 0 parse_and_format s...
# [OK] Translation_unit 1 parse_and_format u...
# [OK] Translation_unit 2 parse_and_format c...
# [OK] Translation_unit 3 parse_and_format c...
# [OK] Translation_unit 4 parse_and_format c...
# [OK] Translation_unit 5 parse_and_format c...
# [OK] Translation_unit 6 parse_and_format c...
# [OK] Translation_unit 7 parse_and_format m...
# [OK] Translation_unit 8 parse_and_format m...
# [OK] Translation_unit 9 parse_and_format m...
# [OK] Translation_unit 10 parse_and_format m...
# [OK] Translation_unit 11 parse_and_format e...
# [OK] Translation_unit 12 numeric: empty buf...
# [OK] Translation_unit 13 numeric: last buff...
# [OK] Translation_unit 14 numeric: already f...
# [OK] Translation_unit 15 numeric: not alrea...
# [OK] Translation_unit 16 numeric: with pare...
# [OK] Translation_unit 17 numeric: split ove...
# [OK] Translation_unit 18 numeric: invalid f...
# [OK] Translation_unit 19 numeric: already f...
# [OK] Translation_unit 20 numeric: partial let.
# [OK] Translation_unit 21 numeric: fit on 1 ...
# [OK] Translation_unit 22 numeric (file): pa...
# [OK] Translation_unit 23 numeric (file): pa...
# [OK] Translation_unit 24 numeric (file): fo...
# [OK] Translation_unit 25 numeric (file): fo...
#
# Full test results in `~/.opam/4.14/.opam-switch/build/ocamlformat.0.24.1/_build/default/test/unit/_build/_tests/ocamlformat'.
# Test Successful in 0.028s. 249 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build ocamlformat 0.24.1
+-
+- The following changes have been performed
| - remove ocamlformat 0.24.1
| - downgrade ocp-indent 1.9.0 to 1.8.1
| - install alcotest 1.9.1
| - install base-bytes base
| - install fmt 0.11.0
| - install ocaml-syntax-shims 1.0.0
| - install ocamlformat-rpc-lib 0.24.1
| - install stdlib-shims 0.3.0
+-
<><> ocp-indent.1.8.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/4.14/share/emacs/site-lisp")
(require 'ocp-indent)
* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260303044228.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-03-03 04:42.43 ---> saved as "ea0f56f7259d73fa7160fae55a016d9566f03915d07de4d9a8763b29bf5e97a9"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocamlformat.0.24.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlformat.0.24.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocamlformat.0.24.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ocamlformat 0.24.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [ocamlformat.0.24.1: extract]
-> retrieved ocamlformat.0.24.1 (cached)
Processing 2/3: [ocamlformat: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocamlformat" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocamlformat.0.24.1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib.cmi -c -intf vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli)
- File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli", line 8, characters 16-27:
- 8 | module Format = Caml.Format
- ^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli", line 9, characters 18-31:
- 9 | module Filename = Caml.Filename
- ^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib__Warning.cmo -c -impl vendor/ocamlformat-stdlib/warning.ml)
- File "vendor/ocamlformat-stdlib/warning.ml", line 17, characters 43-68:
- 17 | | Some reporter -> Location.print_report Caml.Format.err_formatter reporter
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib__Fpath_ext.cmo -c -impl vendor/ocamlformat-stdlib/fpath_ext.ml)
- File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 3, characters 13-28:
- 3 | let cwd () = Caml.Sys.getcwd () |> v
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 5, characters 30-50:
- 5 | let exists p = to_string p |> Caml.Sys.file_exists
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib__Warning.cmx -c -impl vendor/ocamlformat-stdlib/warning.ml)
- File "vendor/ocamlformat-stdlib/warning.ml", line 17, characters 43-68:
- 17 | | Some reporter -> Location.print_report Caml.Format.err_formatter reporter
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib__Fpath_ext.cmx -c -impl vendor/ocamlformat-stdlib/fpath_ext.ml)
- File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 3, characters 13-28:
- 3 | let cwd () = Caml.Sys.getcwd () |> v
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 5, characters 30-50:
- 5 | let exists p = to_string p |> Caml.Sys.file_exists
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib.cmo -c -impl vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml)
- File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 9, characters 16-27:
- 9 | module Format = Caml.Format
- ^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 10, characters 18-31:
- 10 | module Filename = Caml.Filename
- ^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Synthesis.cmo -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
- File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
- 194 | (Lr1.reductions st)
- ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib.cmx -c -impl vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml)
- File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 9, characters 16-27:
- 9 | module Format = Caml.Format
- ^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 10, characters 18-31:
- 10 | module Filename = Caml.Filename
- ^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Main.cmo -c -impl vendor/parser-recovery/menhir-recover/main.ml)
- File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
- 47 | (Lr1.reductions st));
- ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Synthesis.cmx -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
- File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
- 194 | (Lr1.reductions st)
- ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Main.cmx -c -impl vendor/parser-recovery/menhir-recover/main.ml)
- File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
- 47 | (Lr1.reductions st));
- ^^^^^^^^^^^^^^
- Alert deprecated: G.Lr1.reductions
- Please use [get_reductions]
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Literal_lexer.cmo -c -impl lib/Literal_lexer.ml)
- File "lib/Literal_lexer.mll", line 13, characters 5-9:
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__File_system.cmo -c -impl lib/File_system.ml)
- File "lib/File_system.ml", line 37, characters 10-29:
- 37 | match Caml.Sys.getenv_opt "XDG_CONFIG_HOME" with
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/File_system.ml", line 39, characters 12-31:
- 39 | match Caml.Sys.getenv_opt "HOME" with
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Toplevel_lexer.cmo -c -impl lib/Toplevel_lexer.ml)
- File "lib/Toplevel_lexer.mll", line 13, characters 5-9:
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Migrate_ast.cmo -c -impl lib/Migrate_ast.ml)
- File "lib/Migrate_ast.ml", line 115, characters 4-23:
- 115 | Caml.Format.fprintf ppf "File \"%s\", line %d, characters %d-%d:"
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Fmt_odoc.cmo -c -impl lib/Fmt_odoc.ml)
- File "lib/Fmt_odoc.ml", line 98, characters 27-52:
- 98 | Docstring.warn Caml.Format.err_formatter
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Translation_unit.cmo -c -impl lib/Translation_unit.ml)
- File "lib/Translation_unit.ml", line 34, characters 48-61:
- 34 | let exe = chop_any_extension (Filename.basename Caml.Sys.argv.(0))
- ^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 58, characters 7-23:
- 58 | (Caml.Sys.command
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 60, characters 4-19:
- 60 | Caml.Sys.remove p ;
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 61, characters 4-19:
- 61 | Caml.Sys.remove n
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 434, characters 8-22:
- 434 | Caml.flush_all () ;
- ^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Cmts.cmo -c -impl lib/Cmts.ml)
- File "lib/Cmts.ml", line 27, characters 6-26:
- 27 | Caml.Format.asprintf "%a" Printast.expression e
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Cmts.ml", line 29, characters 30-50:
- 29 | let pattern_to_string e = Caml.Format.asprintf "%a" Printast.pattern e
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Cmts.ml", line 306, characters 4-23:
- 306 | Caml.Format.eprintf "relocate %a to %a and %a@\n%!" Location.fmt src
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Cmts.ml", line 423, characters 6-25:
- 423 | Caml.Format.eprintf "AST:\n%a\n%!"
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Ast.cmo -c -impl lib/Ast.ml)
- File "lib/Ast.ml", line 960, characters 17-44:
- 960 | let bt = Caml.Printexc.get_backtrace () in
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Fmt_ast.cmo -c -impl lib/Fmt_ast.ml)
- File "lib/Fmt_ast.ml", line 92, characters 19-46:
- 92 | let bt = Caml.Printexc.get_backtrace () in
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 93, characters 10-29:
- 93 | Caml.Format.eprintf "@\nFAIL@\n%a@\n%s@.%!" Ast.dump ast bt ;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4462, characters 21-41:
- 4462 | Error (`Msg (Caml.Format.asprintf "expecting: %s" x))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4464, characters 21-41:
- 4464 | Error (`Msg (Caml.Format.asprintf "not expecting: %s" x))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4466, characters 21-41:
- 4466 | Error (`Msg (Caml.Format.asprintf "invalid toplevel or OCaml syntax"))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4468, characters 21-41:
- 4468 | Error (`Msg (Caml.Format.asprintf "%a" Exn.pp e))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Literal_lexer.cmx -c -impl lib/Literal_lexer.ml)
- File "lib/Literal_lexer.mll", line 13, characters 5-9:
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__File_system.cmx -c -impl lib/File_system.ml)
- File "lib/File_system.ml", line 37, characters 10-29:
- 37 | match Caml.Sys.getenv_opt "XDG_CONFIG_HOME" with
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/File_system.ml", line 39, characters 12-31:
- 39 | match Caml.Sys.getenv_opt "HOME" with
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Migrate_ast.cmx -c -impl lib/Migrate_ast.ml)
- File "lib/Migrate_ast.ml", line 115, characters 4-23:
- 115 | Caml.Format.fprintf ppf "File \"%s\", line %d, characters %d-%d:"
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Toplevel_lexer.cmx -c -impl lib/Toplevel_lexer.ml)
- File "lib/Toplevel_lexer.mll", line 13, characters 5-9:
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Fmt_odoc.cmx -c -impl lib/Fmt_odoc.ml)
- File "lib/Fmt_odoc.ml", line 98, characters 27-52:
- 98 | Docstring.warn Caml.Format.err_formatter
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Ast.cmx -c -impl lib/Ast.ml)
- File "lib/Ast.ml", line 960, characters 17-44:
- 960 | let bt = Caml.Printexc.get_backtrace () in
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Cmts.cmx -c -impl lib/Cmts.ml)
- File "lib/Cmts.ml", line 27, characters 6-26:
- 27 | Caml.Format.asprintf "%a" Printast.expression e
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Cmts.ml", line 29, characters 30-50:
- 29 | let pattern_to_string e = Caml.Format.asprintf "%a" Printast.pattern e
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Cmts.ml", line 306, characters 4-23:
- 306 | Caml.Format.eprintf "relocate %a to %a and %a@\n%!" Location.fmt src
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Cmts.ml", line 423, characters 6-25:
- 423 | Caml.Format.eprintf "AST:\n%a\n%!"
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Fmt_ast.cmx -c -impl lib/Fmt_ast.ml)
- File "lib/Fmt_ast.ml", line 92, characters 19-46:
- 92 | let bt = Caml.Printexc.get_backtrace () in
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 93, characters 10-29:
- 93 | Caml.Format.eprintf "@\nFAIL@\n%a@\n%s@.%!" Ast.dump ast bt ;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4462, characters 21-41:
- 4462 | Error (`Msg (Caml.Format.asprintf "expecting: %s" x))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4464, characters 21-41:
- 4464 | Error (`Msg (Caml.Format.asprintf "not expecting: %s" x))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4466, characters 21-41:
- 4466 | Error (`Msg (Caml.Format.asprintf "invalid toplevel or OCaml syntax"))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Fmt_ast.ml", line 4468, characters 21-41:
- 4468 | Error (`Msg (Caml.Format.asprintf "%a" Exn.pp e))
- ^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Translation_unit.cmx -c -impl lib/Translation_unit.ml)
- File "lib/Translation_unit.ml", line 34, characters 48-61:
- 34 | let exe = chop_any_extension (Filename.basename Caml.Sys.argv.(0))
- ^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 58, characters 7-23:
- 58 | (Caml.Sys.command
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 60, characters 4-19:
- 60 | Caml.Sys.remove p ;
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 61, characters 4-19:
- 61 | Caml.Sys.remove n
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "lib/Translation_unit.ml", line 434, characters 8-22:
- 434 | Caml.flush_all () ;
- ^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_literal_lexer.cmx -c -impl test/unit/test_literal_lexer.ml)
- File "test/unit/test_literal_lexer.ml", line 22, characters 48-60:
- 22 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected got )
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_literal_lexer.ml", line 60, characters 10-22:
- 60 | Caml.__LOC__ expected got )
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocamlformat_stdlib -g -I bin/ocamlformat/.main.eobjs/byte -I bin/ocamlformat/.main.eobjs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -o bin/ocamlformat/.main.eobjs/native/dune__exe__Main.cmx -c -impl bin/ocamlformat/main.ml)
- File "bin/ocamlformat/main.ml", line 16, characters 0-12:
- 16 | Caml.at_exit (Format.pp_print_flush Format.err_formatter) ;;
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "bin/ocamlformat/main.ml", line 18, characters 0-12:
- 18 | Caml.at_exit (Format_.pp_print_flush Format_.err_formatter)
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "bin/ocamlformat/main.ml", line 99, characters 13-22:
- 99 | | Ok () -> Caml.exit 0
- ^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "bin/ocamlformat/main.ml", line 102, characters 6-15:
- 102 | Caml.exit 1 )
- ^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "bin/ocamlformat/main.ml", line 103, characters 27-36:
- 103 | | Ok (`Version | `Help) -> Caml.exit 0
- ^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "bin/ocamlformat/main.ml", line 104, characters 13-22:
- 104 | | Error _ -> Caml.exit 1
- ^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_fmt.cmx -c -impl test/unit/test_fmt.ml)
- File "test/unit/test_fmt.ml", line 25, characters 41-53:
- 25 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 26, characters 48-60:
- 26 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected_r got_r
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 42, characters 41-53:
- 42 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 43, characters 48-60:
- 43 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected_r got_r
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 63, characters 41-53:
- 63 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 67, characters 10-22:
- 67 | Caml.__LOC__ expected_calls got_calls )
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 88, characters 41-53:
- 88 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 92, characters 10-22:
- 92 | Caml.__LOC__ expected_calls got_calls )
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/unit/test_fmt.ml", line 109, characters 39-51:
- 109 | Alcotest.check Alcotest.string Caml.__LOC__ expected got )
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocamlformat_stdlib -g -I bin/ocamlformat-rpc/.main.eobjs/byte -I bin/ocamlformat-rpc/.main.eobjs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/csexp -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I lib-rpc-server/.ocamlformat_rpc.objs/byte -I lib-rpc-server/.ocamlformat_rpc.objs/native -I lib-rpc/lib-protocol/.ocamlformat_rpc_lib_protocol.objs/byte -I lib-rpc/lib-protocol/.ocamlformat_rpc_lib_protocol.objs/native -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -o bin/ocamlformat-rpc/.main.eobjs/native/dune__exe__Main.cmx -c -impl bin/ocamlformat-rpc/main.ml)
- File "bin/ocamlformat-rpc/main.ml", line 15, characters 2-14:
- 15 | Caml.at_exit (Format.pp_print_flush Format.err_formatter) ;
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "bin/ocamlformat-rpc/main.ml", line 16, characters 2-14:
- 16 | Caml.at_exit (Format_.pp_print_flush Format_.err_formatter)
- ^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "bin/ocamlformat-rpc/main.ml", line 77, characters 9-18:
- 77 | let () = Caml.exit @@ Cmd.eval_result (Cmd.v info rpc_main_t)
- ^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_unit.cmx -c -impl test/unit/test_unit.ml)
- File "test/unit/test_unit.ml", line 49, characters 24-43:
- 49 | let pp ppf (s, e) = Caml.Format.fprintf ppf "(%d, %d)" s e
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Caml
- [since v0.16] use Stdlib instead of Caml
- File "test/passing/tests/align_infix.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/align_infix.ml.stderr
- diff --git a/_build/default/test/passing/align_infix.ml.stderr b/_build/default/test/passing/align_infix.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/alignment.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/alignment.ml.stderr
- diff --git a/_build/default/test/passing/alignment.ml.stderr b/_build/default/test/passing/alignment.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/apply_functor.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/apply_functor.ml.stderr
- diff --git a/_build/default/test/passing/apply_functor.ml.stderr b/_build/default/test/passing/apply_functor.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/args_grouped.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/args_grouped.ml.stderr
- diff --git a/_build/default/test/passing/args_grouped.ml.stderr b/_build/default/test/passing/args_grouped.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/array.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/array.ml.stderr
- diff --git a/_build/default/test/passing/array.ml.stderr b/_build/default/test/passing/array.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/attribute_and_expression.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/attribute_and_expression.ml.stderr
- diff --git a/_build/default/test/passing/attribute_and_expression.ml.stderr b/_build/default/test/passing/attribute_and_expression.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/attributes.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/attributes.mli.stderr
- diff --git a/_build/default/test/passing/attributes.mli.stderr b/_build/default/test/passing/attributes.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/binders.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/binders.ml.stderr
- diff --git a/_build/default/test/passing/binders.ml.stderr b/_build/default/test/passing/binders.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/break_fun_decl-fit_or_vertical.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr
- diff --git a/_build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr b/_build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/break_fun_decl-wrap.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl-wrap.ml.stderr
- diff --git a/_build/default/test/passing/break_fun_decl-wrap.ml.stderr b/_build/default/test/passing/break_fun_decl-wrap.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/break_fun_decl.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl.ml.stderr
- diff --git a/_build/default/test/passing/break_fun_decl.ml.stderr b/_build/default/test/passing/break_fun_decl.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/break_record.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_record.ml.stderr
- diff --git a/_build/default/test/passing/break_record.ml.stderr b/_build/default/test/passing/break_record.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/break_separators-after.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators-after.ml.stderr
- diff --git a/_build/default/test/passing/break_separators-after.ml.stderr b/_build/default/test/passing/break_separators-after.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/break_separators-before_docked.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators-before_docked.ml.stderr
- diff --git a/_build/default/test/passing/break_separators-before_docked.ml.stderr b/_build/default/test/passing/break_separators-before_docked.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/break_separators.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators.ml.stderr
- diff --git a/_build/default/test/passing/break_separators.ml.stderr b/_build/default/test/passing/break_separators.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/class_expr.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/class_expr.ml.stderr
- diff --git a/_build/default/test/passing/class_expr.ml.stderr b/_build/default/test/passing/class_expr.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/class_type.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/class_type.ml.stderr
- diff --git a/_build/default/test/passing/class_type.ml.stderr b/_build/default/test/passing/class_type.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/cmdline_override.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/cmdline_override.ml.stderr
- diff --git a/_build/default/test/passing/cmdline_override.ml.stderr b/_build/default/test/passing/cmdline_override.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/cmdline_override2.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/cmdline_override2.ml.stderr
- diff --git a/_build/default/test/passing/cmdline_override2.ml.stderr b/_build/default/test/passing/cmdline_override2.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/coerce.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/coerce.ml.stderr
- diff --git a/_build/default/test/passing/coerce.ml.stderr b/_build/default/test/passing/coerce.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/collections-conventional.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections-conventional.ml.stderr
- diff --git a/_build/default/test/passing/collections-conventional.ml.stderr b/_build/default/test/passing/collections-conventional.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/collections-janestreet.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections-janestreet.ml.stderr
- diff --git a/_build/default/test/passing/collections-janestreet.ml.stderr b/_build/default/test/passing/collections-janestreet.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/collections.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections.ml.stderr
- diff --git a/_build/default/test/passing/collections.ml.stderr b/_build/default/test/passing/collections.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comment_breaking.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_breaking.ml.stderr
- diff --git a/_build/default/test/passing/comment_breaking.ml.stderr b/_build/default/test/passing/comment_breaking.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comment_header.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_header.ml.stderr
- diff --git a/_build/default/test/passing/comment_header.ml.stderr b/_build/default/test/passing/comment_header.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comment_in_empty.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_in_empty.ml.stderr
- diff --git a/_build/default/test/passing/comment_in_empty.ml.stderr b/_build/default/test/passing/comment_in_empty.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comment_in_modules.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_in_modules.ml.stderr
- diff --git a/_build/default/test/passing/comment_in_modules.ml.stderr b/_build/default/test/passing/comment_in_modules.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comment_last.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_last.ml.stderr
- diff --git a/_build/default/test/passing/comment_last.ml.stderr b/_build/default/test/passing/comment_last.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comment_sparse.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_sparse.ml.stderr
- diff --git a/_build/default/test/passing/comment_sparse.ml.stderr b/_build/default/test/passing/comment_sparse.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comments.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments.mli.stderr
- diff --git a/_build/default/test/passing/comments.mli.stderr b/_build/default/test/passing/comments.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comments_args.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments_args.ml.stderr
- diff --git a/_build/default/test/passing/comments_args.ml.stderr b/_build/default/test/passing/comments_args.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/comments_around_disabled.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments_around_disabled.ml.stderr
- diff --git a/_build/default/test/passing/comments_around_disabled.ml.stderr b/_build/default/test/passing/comments_around_disabled.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/crlf_to_crlf.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/crlf_to_crlf.ml.stderr
- diff --git a/_build/default/test/passing/crlf_to_crlf.ml.stderr b/_build/default/test/passing/crlf_to_crlf.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/crlf_to_lf.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/crlf_to_lf.ml.stderr
- diff --git a/_build/default/test/passing/crlf_to_lf.ml.stderr b/_build/default/test/passing/crlf_to_lf.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/custom_list.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/custom_list.ml.stderr
- diff --git a/_build/default/test/passing/custom_list.ml.stderr b/_build/default/test/passing/custom_list.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/directives.mlt.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/directives.mlt.stderr
- diff --git a/_build/default/test/passing/directives.mlt.stderr b/_build/default/test/passing/directives.mlt.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/disabled.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/disabled.ml.stderr
- diff --git a/_build/default/test/passing/disabled.ml.stderr b/_build/default/test/passing/disabled.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/disambiguated_types.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/disambiguated_types.ml.stderr
- diff --git a/_build/default/test/passing/disambiguated_types.ml.stderr b/_build/default/test/passing/disambiguated_types.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/doc_comments_padding.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/doc_comments_padding.ml.stderr
- diff --git a/_build/default/test/passing/doc_comments_padding.ml.stderr b/_build/default/test/passing/doc_comments_padding.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/eliom_ext.eliom.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/eliom_ext.eliom.stderr
- diff --git a/_build/default/test/passing/eliom_ext.eliom.stderr b/_build/default/test/passing/eliom_ext.eliom.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/empty.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty.ml.stderr
- diff --git a/_build/default/test/passing/empty.ml.stderr b/_build/default/test/passing/empty.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/empty_ml.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_ml.ml.stderr
- diff --git a/_build/default/test/passing/empty_ml.ml.stderr b/_build/default/test/passing/empty_ml.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/empty_mli.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_mli.mli.stderr
- diff --git a/_build/default/test/passing/empty_mli.mli.stderr b/_build/default/test/passing/empty_mli.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/empty_mlt.mlt.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_mlt.mlt.stderr
- diff --git a/_build/default/test/passing/empty_mlt.mlt.stderr b/_build/default/test/passing/empty_mlt.mlt.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/escaped_nl.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/escaped_nl.ml.stderr
- diff --git a/_build/default/test/passing/escaped_nl.ml.stderr b/_build/default/test/passing/escaped_nl.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/exceptions.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exceptions.ml.stderr
- diff --git a/_build/default/test/passing/exceptions.ml.stderr b/_build/default/test/passing/exceptions.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/exceptions.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exceptions.mli.stderr
- diff --git a/_build/default/test/passing/exceptions.mli.stderr b/_build/default/test/passing/exceptions.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/exp_record.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exp_record.ml.stderr
- diff --git a/_build/default/test/passing/exp_record.ml.stderr b/_build/default/test/passing/exp_record.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/extensions.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions.ml.stderr
- diff --git a/_build/default/test/passing/extensions.ml.stderr b/_build/default/test/passing/extensions.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/extensions.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions.mli.stderr
- diff --git a/_build/default/test/passing/extensions.mli.stderr b/_build/default/test/passing/extensions.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/extensions_exp_grouping.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions_exp_grouping.ml.stderr
- diff --git a/_build/default/test/passing/extensions_exp_grouping.ml.stderr b/_build/default/test/passing/extensions_exp_grouping.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/field.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/field.ml.stderr
- diff --git a/_build/default/test/passing/field.ml.stderr b/_build/default/test/passing/field.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/floating_doc.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/floating_doc.ml.stderr
- diff --git a/_build/default/test/passing/floating_doc.ml.stderr b/_build/default/test/passing/floating_doc.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/for_while.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/for_while.ml.stderr
- diff --git a/_build/default/test/passing/for_while.ml.stderr b/_build/default/test/passing/for_while.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/format_invalid_files-0.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files-0.ml.stderr
- diff --git a/_build/default/test/passing/format_invalid_files-0.ml.stderr b/_build/default/test/passing/format_invalid_files-0.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/format_invalid_files.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files.ml.stderr
- diff --git a/_build/default/test/passing/format_invalid_files.ml.stderr b/_build/default/test/passing/format_invalid_files.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/format_invalid_files_with_locations.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files_with_locations.ml.stderr
- diff --git a/_build/default/test/passing/format_invalid_files_with_locations.ml.stderr b/_build/default/test/passing/format_invalid_files_with_locations.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/fun_decl.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/fun_decl.ml.stderr
- diff --git a/_build/default/test/passing/fun_decl.ml.stderr b/_build/default/test/passing/fun_decl.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/fun_function.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/fun_function.ml.stderr
- diff --git a/_build/default/test/passing/fun_function.ml.stderr b/_build/default/test/passing/fun_function.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/functor.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/functor.ml.stderr
- diff --git a/_build/default/test/passing/functor.ml.stderr b/_build/default/test/passing/functor.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/funsig.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/funsig.ml.stderr
- diff --git a/_build/default/test/passing/funsig.ml.stderr b/_build/default/test/passing/funsig.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/gadt.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/gadt.ml.stderr
- diff --git a/_build/default/test/passing/gadt.ml.stderr b/_build/default/test/passing/gadt.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/generative.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/generative.ml.stderr
- diff --git a/_build/default/test/passing/generative.ml.stderr b/_build/default/test/passing/generative.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/hash_types.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/hash_types.ml.stderr
- diff --git a/_build/default/test/passing/hash_types.ml.stderr b/_build/default/test/passing/hash_types.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/holes.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/holes.ml.stderr
- diff --git a/_build/default/test/passing/holes.ml.stderr b/_build/default/test/passing/holes.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/ifand.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ifand.ml.stderr
- diff --git a/_build/default/test/passing/ifand.ml.stderr b/_build/default/test/passing/ifand.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/index_op.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/index_op.ml.stderr
- diff --git a/_build/default/test/passing/index_op.ml.stderr b/_build/default/test/passing/index_op.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/indicate_multiline_delimiters-space.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr
- diff --git a/_build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr b/_build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/indicate_multiline_delimiters.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/indicate_multiline_delimiters.ml.stderr
- diff --git a/_build/default/test/passing/indicate_multiline_delimiters.ml.stderr b/_build/default/test/passing/indicate_multiline_delimiters.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/infix_arg_grouping.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_arg_grouping.ml.stderr
- diff --git a/_build/default/test/passing/infix_arg_grouping.ml.stderr b/_build/default/test/passing/infix_arg_grouping.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/infix_bind-break.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-break.ml.stderr
- diff --git a/_build/default/test/passing/infix_bind-break.ml.stderr b/_build/default/test/passing/infix_bind-break.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/infix_bind-fit_or_vertical-break.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr
- diff --git a/_build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr b/_build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/infix_bind-fit_or_vertical.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr
- diff --git a/_build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr b/_build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/infix_bind.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind.ml.stderr
- diff --git a/_build/default/test/passing/infix_bind.ml.stderr b/_build/default/test/passing/infix_bind.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/infix_precedence.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_precedence.ml.stderr
- diff --git a/_build/default/test/passing/infix_precedence.ml.stderr b/_build/default/test/passing/infix_precedence.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/injectivity.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/injectivity.ml.stderr
- diff --git a/_build/default/test/passing/injectivity.ml.stderr b/_build/default/test/passing/injectivity.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/invalid.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/invalid.ml.stderr
- diff --git a/_build/default/test/passing/invalid.ml.stderr b/_build/default/test/passing/invalid.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue114.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue114.ml.stderr
- diff --git a/_build/default/test/passing/issue114.ml.stderr b/_build/default/test/passing/issue114.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue48.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue48.ml.stderr
- diff --git a/_build/default/test/passing/issue48.ml.stderr b/_build/default/test/passing/issue48.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue51.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue51.ml.stderr
- diff --git a/_build/default/test/passing/issue51.ml.stderr b/_build/default/test/passing/issue51.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue57.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue57.ml.stderr
- diff --git a/_build/default/test/passing/issue57.ml.stderr b/_build/default/test/passing/issue57.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue60.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue60.ml.stderr
- diff --git a/_build/default/test/passing/issue60.ml.stderr b/_build/default/test/passing/issue60.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue77.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue77.ml.stderr
- diff --git a/_build/default/test/passing/issue77.ml.stderr b/_build/default/test/passing/issue77.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue85.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue85.ml.stderr
- diff --git a/_build/default/test/passing/issue85.ml.stderr b/_build/default/test/passing/issue85.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/issue89.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue89.ml.stderr
- diff --git a/_build/default/test/passing/issue89.ml.stderr b/_build/default/test/passing/issue89.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/ite-kw_first.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-kw_first.ml.stderr
- diff --git a/_build/default/test/passing/ite-kw_first.ml.stderr b/_build/default/test/passing/ite-kw_first.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/ite-kw_first_no_indicate.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-kw_first_no_indicate.ml.stderr
- diff --git a/_build/default/test/passing/ite-kw_first_no_indicate.ml.stderr b/_build/default/test/passing/ite-kw_first_no_indicate.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/ite-no_indicate.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-no_indicate.ml.stderr
- diff --git a/_build/default/test/passing/ite-no_indicate.ml.stderr b/_build/default/test/passing/ite-no_indicate.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_args.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_args.ml.stderr
- diff --git a/_build/default/test/passing/js_args.ml.stderr b/_build/default/test/passing/js_args.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_begin.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_begin.ml.stderr
- diff --git a/_build/default/test/passing/js_begin.ml.stderr b/_build/default/test/passing/js_begin.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_bind.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_bind.ml.stderr
- diff --git a/_build/default/test/passing/js_bind.ml.stderr b/_build/default/test/passing/js_bind.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_fun.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_fun.ml.stderr
- diff --git a/_build/default/test/passing/js_fun.ml.stderr b/_build/default/test/passing/js_fun.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_map.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_map.ml.stderr
- diff --git a/_build/default/test/passing/js_map.ml.stderr b/_build/default/test/passing/js_map.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_pattern.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_pattern.ml.stderr
- diff --git a/_build/default/test/passing/js_pattern.ml.stderr b/_build/default/test/passing/js_pattern.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_poly.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_poly.ml.stderr
- diff --git a/_build/default/test/passing/js_poly.ml.stderr b/_build/default/test/passing/js_poly.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_record.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_record.ml.stderr
- diff --git a/_build/default/test/passing/js_record.ml.stderr b/_build/default/test/passing/js_record.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_sig.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_sig.mli.stderr
- diff --git a/_build/default/test/passing/js_sig.mli.stderr b/_build/default/test/passing/js_sig.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_syntax.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_syntax.ml.stderr
- diff --git a/_build/default/test/passing/js_syntax.ml.stderr b/_build/default/test/passing/js_syntax.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_to_do.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_to_do.ml.stderr
- diff --git a/_build/default/test/passing/js_to_do.ml.stderr b/_build/default/test/passing/js_to_do.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/js_upon.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_upon.ml.stderr
- diff --git a/_build/default/test/passing/js_upon.ml.stderr b/_build/default/test/passing/js_upon.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/kw_extentions.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/kw_extentions.ml.stderr
- diff --git a/_build/default/test/passing/kw_extentions.ml.stderr b/_build/default/test/passing/kw_extentions.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/label_option_default_args.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/label_option_default_args.ml.stderr
- diff --git a/_build/default/test/passing/label_option_default_args.ml.stderr b/_build/default/test/passing/label_option_default_args.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/labelled_args-414.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/labelled_args-414.ml.stderr
- diff --git a/_build/default/test/passing/labelled_args-414.ml.stderr b/_build/default/test/passing/labelled_args-414.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/labelled_args.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/labelled_args.ml.stderr
- diff --git a/_build/default/test/passing/labelled_args.ml.stderr b/_build/default/test/passing/labelled_args.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/lazy.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/lazy.ml.stderr
- diff --git a/_build/default/test/passing/lazy.ml.stderr b/_build/default/test/passing/lazy.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/let_binding.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding.ml.stderr
- diff --git a/_build/default/test/passing/let_binding.ml.stderr b/_build/default/test/passing/let_binding.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/let_binding_spacing-double-semicolon.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr
- diff --git a/_build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr b/_build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/let_binding_spacing.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding_spacing.ml.stderr
- diff --git a/_build/default/test/passing/let_binding_spacing.ml.stderr b/_build/default/test/passing/let_binding_spacing.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/let_in_constr.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_in_constr.ml.stderr
- diff --git a/_build/default/test/passing/let_in_constr.ml.stderr b/_build/default/test/passing/let_in_constr.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/let_module-sparse.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_module-sparse.ml.stderr
- diff --git a/_build/default/test/passing/let_module-sparse.ml.stderr b/_build/default/test/passing/let_module-sparse.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/let_module.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_module.ml.stderr
- diff --git a/_build/default/test/passing/let_module.ml.stderr b/_build/default/test/passing/let_module.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/let_punning.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_punning.ml.stderr
- diff --git a/_build/default/test/passing/let_punning.ml.stderr b/_build/default/test/passing/let_punning.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/list-space_around.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list-space_around.ml.stderr
- diff --git a/_build/default/test/passing/list-space_around.ml.stderr b/_build/default/test/passing/list-space_around.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/list.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list.ml.stderr
- diff --git a/_build/default/test/passing/list.ml.stderr b/_build/default/test/passing/list.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/list_and_comments.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list_and_comments.ml.stderr
- diff --git a/_build/default/test/passing/list_and_comments.ml.stderr b/_build/default/test/passing/list_and_comments.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/list_normalized.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list_normalized.ml.stderr
- diff --git a/_build/default/test/passing/list_normalized.ml.stderr b/_build/default/test/passing/list_normalized.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/loc_stack.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/loc_stack.ml.stderr
- diff --git a/_build/default/test/passing/loc_stack.ml.stderr b/_build/default/test/passing/loc_stack.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/locally_abtract_types.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/locally_abtract_types.ml.stderr
- diff --git a/_build/default/test/passing/locally_abtract_types.ml.stderr b/_build/default/test/passing/locally_abtract_types.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/match.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/match.ml.stderr
- diff --git a/_build/default/test/passing/match.ml.stderr b/_build/default/test/passing/match.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/match2.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/match2.ml.stderr
- diff --git a/_build/default/test/passing/match2.ml.stderr b/_build/default/test/passing/match2.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/max_indent.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/max_indent.ml.stderr
- diff --git a/_build/default/test/passing/max_indent.ml.stderr b/_build/default/test/passing/max_indent.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/mod_type_subst.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/mod_type_subst.ml.stderr
- diff --git a/_build/default/test/passing/mod_type_subst.ml.stderr b/_build/default/test/passing/mod_type_subst.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/module.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module.ml.stderr
- diff --git a/_build/default/test/passing/module.ml.stderr b/_build/default/test/passing/module.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/module_anonymous.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_anonymous.ml.stderr
- diff --git a/_build/default/test/passing/module_anonymous.ml.stderr b/_build/default/test/passing/module_anonymous.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/module_item_spacing-sparse.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_item_spacing-sparse.ml.stderr
- diff --git a/_build/default/test/passing/module_item_spacing-sparse.ml.stderr b/_build/default/test/passing/module_item_spacing-sparse.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/module_item_spacing.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_item_spacing.ml.stderr
- diff --git a/_build/default/test/passing/module_item_spacing.ml.stderr b/_build/default/test/passing/module_item_spacing.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/module_type.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_type.ml.stderr
- diff --git a/_build/default/test/passing/module_type.ml.stderr b/_build/default/test/passing/module_type.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/monadic_binding.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/monadic_binding.ml.stderr
- diff --git a/_build/default/test/passing/monadic_binding.ml.stderr b/_build/default/test/passing/monadic_binding.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/multi_index_op.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/multi_index_op.ml.stderr
- diff --git a/_build/default/test/passing/multi_index_op.ml.stderr b/_build/default/test/passing/multi_index_op.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/named_existentials.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/named_existentials.ml.stderr
- diff --git a/_build/default/test/passing/named_existentials.ml.stderr b/_build/default/test/passing/named_existentials.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/new.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/new.ml.stderr
- diff --git a/_build/default/test/passing/new.ml.stderr b/_build/default/test/passing/new.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/object2.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object2.ml.stderr
- diff --git a/_build/default/test/passing/object2.ml.stderr b/_build/default/test/passing/object2.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/object_expr-414.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_expr-414.ml.stderr
- diff --git a/_build/default/test/passing/object_expr-414.ml.stderr b/_build/default/test/passing/object_expr-414.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/object_expr.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_expr.ml.stderr
- diff --git a/_build/default/test/passing/object_expr.ml.stderr b/_build/default/test/passing/object_expr.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/object_type.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_type.ml.stderr
- diff --git a/_build/default/test/passing/object_type.ml.stderr b/_build/default/test/passing/object_type.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/obuild.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/obuild.ml.stderr
- diff --git a/_build/default/test/passing/obuild.ml.stderr b/_build/default/test/passing/obuild.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/ocp_indent_options.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ocp_indent_options.ml.stderr
- diff --git a/_build/default/test/passing/ocp_indent_options.ml.stderr b/_build/default/test/passing/ocp_indent_options.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/open.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/open.ml.stderr
- diff --git a/_build/default/test/passing/open.ml.stderr b/_build/default/test/passing/open.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/open_types.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/open_types.ml.stderr
- diff --git a/_build/default/test/passing/open_types.ml.stderr b/_build/default/test/passing/open_types.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/override.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/override.ml.stderr
- diff --git a/_build/default/test/passing/override.ml.stderr b/_build/default/test/passing/override.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/partial.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/partial.ml.stderr
- diff --git a/_build/default/test/passing/partial.ml.stderr b/_build/default/test/passing/partial.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/partial_double_quotes.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/partial_double_quotes.ml.stderr
- diff --git a/_build/default/test/passing/partial_double_quotes.ml.stderr b/_build/default/test/passing/partial_double_quotes.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/polytypes-default.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes-default.ml.stderr
- diff --git a/_build/default/test/passing/polytypes-default.ml.stderr b/_build/default/test/passing/polytypes-default.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/polytypes-janestreet.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes-janestreet.ml.stderr
- diff --git a/_build/default/test/passing/polytypes-janestreet.ml.stderr b/_build/default/test/passing/polytypes-janestreet.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/polytypes.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes.ml.stderr
- diff --git a/_build/default/test/passing/polytypes.ml.stderr b/_build/default/test/passing/polytypes.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/pre_post_extensions.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/pre_post_extensions.ml.stderr
- diff --git a/_build/default/test/passing/pre_post_extensions.ml.stderr b/_build/default/test/passing/pre_post_extensions.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/precedence.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/precedence.ml.stderr
- diff --git a/_build/default/test/passing/precedence.ml.stderr b/_build/default/test/passing/precedence.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/prefix_infix.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/prefix_infix.ml.stderr
- diff --git a/_build/default/test/passing/prefix_infix.ml.stderr b/_build/default/test/passing/prefix_infix.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/profiles.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/profiles.ml.stderr
- diff --git a/_build/default/test/passing/profiles.ml.stderr b/_build/default/test/passing/profiles.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/profiles2.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/profiles2.ml.stderr
- diff --git a/_build/default/test/passing/profiles2.ml.stderr b/_build/default/test/passing/profiles2.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/protected_object_types.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/protected_object_types.ml.stderr
- diff --git a/_build/default/test/passing/protected_object_types.ml.stderr b/_build/default/test/passing/protected_object_types.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/quoted_strings.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/quoted_strings.ml.stderr
- diff --git a/_build/default/test/passing/quoted_strings.ml.stderr b/_build/default/test/passing/quoted_strings.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/recmod.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/recmod.mli.stderr
- diff --git a/_build/default/test/passing/recmod.mli.stderr b/_build/default/test/passing/recmod.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/record_punning.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/record_punning.ml.stderr
- diff --git a/_build/default/test/passing/record_punning.ml.stderr b/_build/default/test/passing/record_punning.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/reformat_string.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/reformat_string.ml.stderr
- diff --git a/_build/default/test/passing/reformat_string.ml.stderr b/_build/default/test/passing/reformat_string.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/remove_extra_parens.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/remove_extra_parens.ml.stderr
- diff --git a/_build/default/test/passing/remove_extra_parens.ml.stderr b/_build/default/test/passing/remove_extra_parens.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/repl.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/repl.ml.stderr
- diff --git a/_build/default/test/passing/repl.ml.stderr b/_build/default/test/passing/repl.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/revapply_ext.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/revapply_ext.ml.stderr
- diff --git a/_build/default/test/passing/revapply_ext.ml.stderr b/_build/default/test/passing/revapply_ext.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/send.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/send.ml.stderr
- diff --git a/_build/default/test/passing/send.ml.stderr b/_build/default/test/passing/send.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/shebang.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/shebang.ml.stderr
- diff --git a/_build/default/test/passing/shebang.ml.stderr b/_build/default/test/passing/shebang.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/shortcut_ext_attr.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/shortcut_ext_attr.ml.stderr
- diff --git a/_build/default/test/passing/shortcut_ext_attr.ml.stderr b/_build/default/test/passing/shortcut_ext_attr.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/sig_value.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/sig_value.mli.stderr
- diff --git a/_build/default/test/passing/sig_value.mli.stderr b/_build/default/test/passing/sig_value.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/skip.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/skip.ml.stderr
- diff --git a/_build/default/test/passing/skip.ml.stderr b/_build/default/test/passing/skip.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/string.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string.ml.stderr
- diff --git a/_build/default/test/passing/string.ml.stderr b/_build/default/test/passing/string.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/string_array.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string_array.ml.stderr
- diff --git a/_build/default/test/passing/string_array.ml.stderr b/_build/default/test/passing/string_array.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/string_wrapping.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string_wrapping.ml.stderr
- diff --git a/_build/default/test/passing/string_wrapping.ml.stderr b/_build/default/test/passing/string_wrapping.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/symbol.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/symbol.ml.stderr
- diff --git a/_build/default/test/passing/symbol.ml.stderr b/_build/default/test/passing/symbol.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/tag_only.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tag_only.ml.stderr
- diff --git a/_build/default/test/passing/tag_only.ml.stderr b/_build/default/test/passing/tag_only.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/tag_only.mli.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tag_only.mli.stderr
- diff --git a/_build/default/test/passing/tag_only.mli.stderr b/_build/default/test/passing/tag_only.mli.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/tuple_type_parens.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tuple_type_parens.ml.stderr
- diff --git a/_build/default/test/passing/tuple_type_parens.ml.stderr b/_build/default/test/passing/tuple_type_parens.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/type_and_constraint.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/type_and_constraint.ml.stderr
- diff --git a/_build/default/test/passing/type_and_constraint.ml.stderr b/_build/default/test/passing/type_and_constraint.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/type_annotations.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/type_annotations.ml.stderr
- diff --git a/_build/default/test/passing/type_annotations.ml.stderr b/_build/default/test/passing/type_annotations.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/types-compact-space_around-docked.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact-space_around-docked.ml.stderr
- diff --git a/_build/default/test/passing/types-compact-space_around-docked.ml.stderr b/_build/default/test/passing/types-compact-space_around-docked.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/types-compact-space_around.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact-space_around.ml.stderr
- diff --git a/_build/default/test/passing/types-compact-space_around.ml.stderr b/_build/default/test/passing/types-compact-space_around.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/types-compact.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact.ml.stderr
- diff --git a/_build/default/test/passing/types-compact.ml.stderr b/_build/default/test/passing/types-compact.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/types.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types.ml.stderr
- diff --git a/_build/default/test/passing/types.ml.stderr b/_build/default/test/passing/types.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/unary.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/unary.ml.stderr
- diff --git a/_build/default/test/passing/unary.ml.stderr b/_build/default/test/passing/unary.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/unary_hash.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/unary_hash.ml.stderr
- diff --git a/_build/default/test/passing/unary_hash.ml.stderr b/_build/default/test/passing/unary_hash.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/use_file.mlt.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/use_file.mlt.stderr
- diff --git a/_build/default/test/passing/use_file.mlt.stderr b/_build/default/test/passing/use_file.mlt.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/verbatim_comments-wrap.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/verbatim_comments-wrap.ml.stderr
- diff --git a/_build/default/test/passing/verbatim_comments-wrap.ml.stderr b/_build/default/test/passing/verbatim_comments-wrap.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/verbatim_comments.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/verbatim_comments.ml.stderr
- diff --git a/_build/default/test/passing/verbatim_comments.ml.stderr b/_build/default/test/passing/verbatim_comments.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/types-sparse-space_around.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-sparse-space_around.ml.stderr
- diff --git a/_build/default/test/passing/types-sparse-space_around.ml.stderr b/_build/default/test/passing/types-sparse-space_around.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/wrap_comments_break.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/wrap_comments_break.ml.stderr
- diff --git a/_build/default/test/passing/wrap_comments_break.ml.stderr b/_build/default/test/passing/wrap_comments_break.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/wrapping_functor_args.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/wrapping_functor_args.ml.stderr
- diff --git a/_build/default/test/passing/wrapping_functor_args.ml.stderr b/_build/default/test/passing/wrapping_functor_args.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- File "test/passing/tests/types-sparse.ml.err", line 1, characters 0-0:
- /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-sparse.ml.stderr
- diff --git a/_build/default/test/passing/types-sparse.ml.stderr b/_build/default/test/passing/types-sparse.ml.stderr
- new file mode 100644
- index 0000000..e69de29
- (cd _build/default/test/unit && ./test_unit.exe)
- Testing `ocamlformat'.
- This run has ID `AFL1MMCO'.
-
- [OK] Location 0 compare_width_decr...
- [OK] Location 1 compare_width_decr...
- [OK] Location 2 compare_width_decr...
- [OK] Location 3 compare_width_decr...
- [OK] non overlapping interval tree 0 dump: empty.
- [OK] non overlapping interval tree 1 dump: singleton.
- [OK] non overlapping interval tree 2 dump: disjoint.
- [OK] non overlapping interval tree 3 dump: same start.
- [OK] non overlapping interval tree 4 dump: same end.
- [OK] non overlapping interval tree 5 dump: inclusion.
- [OK] non overlapping interval tree 6 roots: empty.
- [OK] non overlapping interval tree 7 roots: singleton.
- [OK] non overlapping interval tree 8 roots: disjoint.
- [OK] non overlapping interval tree 9 roots: inclusion.
- [OK] non overlapping interval tree 10 children: empty.
- [OK] non overlapping interval tree 11 children: no child...
- [OK] non overlapping interval tree 12 children: not pres...
- [OK] non overlapping interval tree 13 children: one level.
- [OK] non overlapping interval tree 14 children: two levels.
- [OK] non overlapping interval tree 15 children: no parti...
- [OK] Ast 0 !.
- [OK] Ast 1 ?.
- [OK] Ast 2 ~.
- [OK] Ast 3 *.
- [OK] Ast 4 +.
- [OK] Ast 5 !=.
- [OK] Ast 6 land.
- [OK] Ast 7 lor.
- [OK] Ast 8 ||.
- [OK] Ast 9 @.
- [OK] Ast 10 ::.
- [OK] Ast 11 :=.
- [OK] Ast 12 let+.
- [OK] Ast 13 and+.
- [OK] Ast 14 .().
- [OK] Ast 15 .*().
- [OK] Ast 16 .*(;..).
- [OK] Ast 17 .[].
- [OK] Ast 18 .*[].
- [OK] Ast 19 .*[;..].
- [OK] Ast 20 .{}.
- [OK] Ast 21 .*{}.
- [OK] Ast 22 .*{;..}.
- [OK] Ast 23 .{}<-.
- [OK] Ast 24 .*{}<-.
- [OK] Ast 25 .*{;..}<-.
- [OK] Ast 26 let.
- [OK] Ast 27 let+abc.
- [OK] Ast 28 and.
- [OK] Ast 29 *.
- [OK] Ast 30 +.
- [OK] Ast 31 !=.
- [OK] Ast 32 land.
- [OK] Ast 33 lor.
- [OK] Ast 34 ||.
- [OK] Ast 35 @.
- [OK] Ast 36 ::.
- [OK] Ast 37 :=.
- [OK] Ast 38 let+.
- [OK] Ast 39 and+.
- [OK] Ast 40 let.
- [OK] Ast 41 let+abc.
- [OK] Ast 42 and.
- [OK] Ast 43 .().
- [OK] Ast 44 .*().
- [OK] Ast 45 .*(;..).
- [OK] Ast 46 .[].
- [OK] Ast 47 .*[].
- [OK] Ast 48 .*[;..].
- [OK] Ast 49 .{}.
- [OK] Ast 50 .*{}.
- [OK] Ast 51 .*{;..}.
- [OK] Ast 52 .{}<-.
- [OK] Ast 53 .*{}<-.
- [OK] Ast 54 .*{;..}<-.
- [OK] Ast 55 *.
- [OK] Ast 56 +.
- [OK] Ast 57 !=.
- [OK] Ast 58 land.
- [OK] Ast 59 lor.
- [OK] Ast 60 ||.
- [OK] Ast 61 @.
- [OK] Ast 62 ::.
- [OK] Ast 63 :=.
- [OK] Ast 64 let+.
- [OK] Ast 65 and+.
- [OK] Ast 66 .().
- [OK] Ast 67 .*().
- [OK] Ast 68 .*(;..).
- [OK] Ast 69 .[].
- [OK] Ast 70 .*[].
- [OK] Ast 71 .*[;..].
- [OK] Ast 72 .{}.
- [OK] Ast 73 .*{}.
- [OK] Ast 74 .*{;..}.
- [OK] Ast 75 .{}<-.
- [OK] Ast 76 .*{}<-.
- [OK] Ast 77 .*{;..}<-.
- [OK] Ast 78 let.
- [OK] Ast 79 let+abc.
- [OK] Ast 80 and.
- [OK] Ast 81 #.
- [OK] Ast 82 #.
- [OK] Ast 83 ##.
- [OK] Ast 84 #++.
- [OK] Ast 85 #---#.
- [OK] Ast 86 let.
- [OK] Ast 87 let+abc.
- [OK] Ast 88 and.
- [OK] Ast 89 *.
- [OK] Ast 90 +.
- [OK] Ast 91 !=.
- [OK] Ast 92 land.
- [OK] Ast 93 lor.
- [OK] Ast 94 ||.
- [OK] Ast 95 @.
- [OK] Ast 96 ::.
- [OK] Ast 97 :=.
- [OK] Ast 98 let+.
- [OK] Ast 99 and+.
- [OK] Ast 100 .().
- [OK] Ast 101 .*().
- [OK] Ast 102 .*(;..).
- [OK] Ast 103 .[].
- [OK] Ast 104 .*[].
- [OK] Ast 105 .*[;..].
- [OK] Ast 106 .{}.
- [OK] Ast 107 .*{}.
- [OK] Ast 108 .*{;..}.
- [OK] Ast 109 .{}<-.
- [OK] Ast 110 .*{}<-.
- [OK] Ast 111 .*{;..}<-.
- [OK] Ast 112 let+.
- [OK] Ast 113 and+.
- [OK] Ast 114 *.
- [OK] Ast 115 +.
- [OK] Ast 116 !=.
- [OK] Ast 117 let.
- [OK] Ast 118 let+abc.
- [OK] Ast 119 and.
- [OK] Ast 120 and#.
- [OK] Ast 121 land.
- [OK] Ast 122 lor.
- [OK] Ast 123 ||.
- [OK] Ast 124 @.
- [OK] Ast 125 ::.
- [OK] Ast 126 :=.
- [OK] Ast 127 .().
- [OK] Ast 128 .*().
- [OK] Ast 129 .*(;..).
- [OK] Ast 130 .[].
- [OK] Ast 131 .*[].
- [OK] Ast 132 .*[;..].
- [OK] Ast 133 .{}.
- [OK] Ast 134 .*{}.
- [OK] Ast 135 .*{;..}.
- [OK] Ast 136 .{}<-.
- [OK] Ast 137 .*{}<-.
- [OK] Ast 138 .*{;..}<-.
- [OK] Indent 0 Partial_ast.indent...
- [OK] Indent 1 Partial_ast.indent...
- [OK] Indent 2 Partial_ast.indent...
- [OK] Indent 3 Partial_ast.indent...
- [OK] Literal_lexer 0 string: string: no...
- [OK] Literal_lexer 1 string: simple (pr...
- [OK] Literal_lexer 2 string: simple (no...
- [OK] Literal_lexer 3 string: numeric es...
- [OK] Literal_lexer 4 string: numeric es...
- [OK] Literal_lexer 5 string: raw tab (p...
- [OK] Literal_lexer 6 string: raw tab (n...
- [OK] Literal_lexer 7 string: backslash ...
- [OK] Literal_lexer 8 string: backslash ...
- [OK] Literal_lexer 9 string: backslash ...
- [OK] Literal_lexer 10 string: backslash ...
- [OK] Literal_lexer 11 char: not a charac...
- [OK] Literal_lexer 12 char: escaped newl...
- [OK] Literal_lexer 13 char: letter.
- [OK] Literal_lexer 14 char: escaped back...
- [OK] Literal_lexer 15 char: escaped sing...
- [OK] Literal_lexer 16 char: escaped doub...
- [OK] Literal_lexer 17 char: backslash n.
- [OK] Literal_lexer 18 char: backslash t.
- [OK] Literal_lexer 19 char: backslash b.
- [OK] Literal_lexer 20 char: backslash r.
- [OK] Literal_lexer 21 char: backslash sp...
- [OK] Literal_lexer 22 char: decimal escape.
- [OK] Literal_lexer 23 char: octal escape.
- [OK] Literal_lexer 24 char: hex escape.
- [OK] Fmt 0 lazy_: not using l...
- [OK] Fmt 1 lazy_: using lazy.
- [OK] Fmt 2 list_pn: evaluatio...
- [OK] Fmt 3 list_pn: does not ...
- [OK] Fmt 4 list_k: evaluation...
- [OK] Fmt 5 list_k: does not c...
- [OK] Fmt 6 sequence: 1 element.
- [OK] Fmt 7 sequence: empty list.
- [OK] Fmt 8 sequence: list.
- [OK] Fmt 9 sequence: long list.
- [OK] Range 0 make: "" None.
- [OK] Range 1 make: "" (0, 0).
- [OK] Range 2 make: "" (1, 0).
- [OK] Range 3 make: "" (-1, -1).
- [OK] Range 4 make: "" (1, 1).
- [OK] Range 5 make: "\n" None.
- [OK] Range 6 make: "\n" (0, 0).
- [OK] Range 7 make: "\n" (1, 0).
- [OK] Range 8 make: "\n" (-1, -1).
- [OK] Range 9 make: "\n" (1, 2).
- [OK] Range 10 make: "xxxx\nxxxxx...
- [OK] Range 11 make: "xxxx\nxxxxx...
- [OK] Range 12 make: "xxxx\nxxxxx...
- [OK] Range 13 make: "\n\n" None.
- [OK] Range 14 make: "\n\n" (0, 0).
- [OK] Range 15 make: "\n\n" (1, 2).
- [OK] Range 16 make: "\nxxxx\nxxx...
- [OK] Range 17 make: "xxx\nxxxx\n...
- [OK] Range 18 make: "xxx\nxxxx\n...
- [OK] Range 19 make: "xxx\nxxxx\n...
- [OK] Range 20 make: "xxx\nxxxx\n...
- [OK] Range 21 make: "xxx\nxxxx\n...
- [OK] Range 22 make: "xxx\nxxxx\n...
- [OK] Range 23 make: "xxx\nxxxx\n...
- [OK] Range 24 make: "xxx\nxxxx\n...
- [OK] Translation_unit 0 parse_and_format s...
- [OK] Translation_unit 1 parse_and_format u...
- [OK] Translation_unit 2 parse_and_format c...
- [OK] Translation_unit 3 parse_and_format c...
- [OK] Translation_unit 4 parse_and_format c...
- [OK] Translation_unit 5 parse_and_format c...
- [OK] Translation_unit 6 parse_and_format c...
- [OK] Translation_unit 7 parse_and_format m...
- [OK] Translation_unit 8 parse_and_format m...
- [OK] Translation_unit 9 parse_and_format m...
- [OK] Translation_unit 10 parse_and_format m...
- [OK] Translation_unit 11 parse_and_format e...
- [OK] Translation_unit 12 numeric: empty buf...
- [OK] Translation_unit 13 numeric: last buff...
- [OK] Translation_unit 14 numeric: already f...
- [OK] Translation_unit 15 numeric: not alrea...
- [OK] Translation_unit 16 numeric: with pare...
- [OK] Translation_unit 17 numeric: split ove...
- [OK] Translation_unit 18 numeric: invalid f...
- [OK] Translation_unit 19 numeric: already f...
- [OK] Translation_unit 20 numeric: partial let.
- [OK] Translation_unit 21 numeric: fit on 1 ...
- [OK] Translation_unit 22 numeric (file): pa...
- [OK] Translation_unit 23 numeric (file): pa...
- [OK] Translation_unit 24 numeric (file): fo...
- [OK] Translation_unit 25 numeric (file): fo...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/ocamlformat.0.24.1/_build/default/test/unit/_build/_tests/ocamlformat'.
- Test Successful in 0.030s. 249 tests run.
[ERROR] The compilation of ocamlformat.0.24.1 failed at "dune build -p ocamlformat -j 255 @install @runtest".
#=== ERROR while compiling ocamlformat.0.24.1 =================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/ocamlformat.0.24.1
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p ocamlformat -j 255 @install @runtest
# exit-code 1
# env-file ~/.opam/log/ocamlformat-7-c4898a.env
# output-file ~/.opam/log/ocamlformat-7-c4898a.out
### output ###
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib.cmi -c -intf vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli)
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli", line 8, characters 16-27:
# 8 | module Format = Caml.Format
# ^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.mli", line 9, characters 18-31:
# 9 | module Filename = Caml.Filename
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib__Warning.cmo -c -impl vendor/ocamlformat-stdlib/warning.ml)
# File "vendor/ocamlformat-stdlib/warning.ml", line 17, characters 43-68:
# 17 | | Some reporter -> Location.print_report Caml.Format.err_formatter reporter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib__Fpath_ext.cmo -c -impl vendor/ocamlformat-stdlib/fpath_ext.ml)
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 3, characters 13-28:
# 3 | let cwd () = Caml.Sys.getcwd () |> v
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 5, characters 30-50:
# 5 | let exists p = to_string p |> Caml.Sys.file_exists
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib__Warning.cmx -c -impl vendor/ocamlformat-stdlib/warning.ml)
# File "vendor/ocamlformat-stdlib/warning.ml", line 17, characters 43-68:
# 17 | | Some reporter -> Location.print_report Caml.Format.err_formatter reporter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib__Fpath_ext.cmx -c -impl vendor/ocamlformat-stdlib/fpath_ext.ml)
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 3, characters 13-28:
# 3 | let cwd () = Caml.Sys.getcwd () |> v
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/fpath_ext.ml", line 5, characters 30-50:
# 5 | let exists p = to_string p |> Caml.Sys.file_exists
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -g -bin-annot -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte/ocamlformat_stdlib.cmo -c -impl vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml)
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 9, characters 16-27:
# 9 | module Format = Caml.Format
# ^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 10, characters 18-31:
# 10 | module Filename = Caml.Filename
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Synthesis.cmo -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
# File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
# 194 | (Lr1.reductions st)
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -g -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat_stdlib__ -o vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native/ocamlformat_stdlib.cmx -c -impl vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml)
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 9, characters 16-27:
# 9 | module Format = Caml.Format
# ^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "vendor/ocamlformat-stdlib/ocamlformat_stdlib.ml", line 10, characters 18-31:
# 10 | module Filename = Caml.Filename
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -g -bin-annot -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/byte/dune__exe__Main.cmo -c -impl vendor/parser-recovery/menhir-recover/main.ml)
# File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
# 47 | (Lr1.reductions st));
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Synthesis.cmx -c -impl vendor/parser-recovery/menhir-recover/synthesis.ml)
# File "vendor/parser-recovery/menhir-recover/synthesis.ml", line 194, characters 15-29:
# 194 | (Lr1.reductions st)
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I vendor/parser-recovery/menhir-recover/.main.eobjs/byte -I vendor/parser-recovery/menhir-recover/.main.eobjs/native -I /home/opam/.opam/4.14/lib/fix -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/menhirSdk -intf-suffix .ml -no-alias-deps -open Dune__exe -o vendor/parser-recovery/menhir-recover/.main.eobjs/native/dune__exe__Main.cmx -c -impl vendor/parser-recovery/menhir-recover/main.ml)
# File "vendor/parser-recovery/menhir-recover/main.ml", line 47, characters 11-25:
# 47 | (Lr1.reductions st));
# ^^^^^^^^^^^^^^
# Alert deprecated: G.Lr1.reductions
# Please use [get_reductions]
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Literal_lexer.cmo -c -impl lib/Literal_lexer.ml)
# File "lib/Literal_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__File_system.cmo -c -impl lib/File_system.ml)
# File "lib/File_system.ml", line 37, characters 10-29:
# 37 | match Caml.Sys.getenv_opt "XDG_CONFIG_HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/File_system.ml", line 39, characters 12-31:
# 39 | match Caml.Sys.getenv_opt "HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Toplevel_lexer.cmo -c -impl lib/Toplevel_lexer.ml)
# File "lib/Toplevel_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Migrate_ast.cmo -c -impl lib/Migrate_ast.ml)
# File "lib/Migrate_ast.ml", line 115, characters 4-23:
# 115 | Caml.Format.fprintf ppf "File \"%s\", line %d, characters %d-%d:"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Fmt_odoc.cmo -c -impl lib/Fmt_odoc.ml)
# File "lib/Fmt_odoc.ml", line 98, characters 27-52:
# 98 | Docstring.warn Caml.Format.err_formatter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Translation_unit.cmo -c -impl lib/Translation_unit.ml)
# File "lib/Translation_unit.ml", line 34, characters 48-61:
# 34 | let exe = chop_any_extension (Filename.basename Caml.Sys.argv.(0))
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 58, characters 7-23:
# 58 | (Caml.Sys.command
# ^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 60, characters 4-19:
# 60 | Caml.Sys.remove p ;
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 61, characters 4-19:
# 61 | Caml.Sys.remove n
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 434, characters 8-22:
# 434 | Caml.flush_all () ;
# ^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Cmts.cmo -c -impl lib/Cmts.ml)
# File "lib/Cmts.ml", line 27, characters 6-26:
# 27 | Caml.Format.asprintf "%a" Printast.expression e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 29, characters 30-50:
# 29 | let pattern_to_string e = Caml.Format.asprintf "%a" Printast.pattern e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 306, characters 4-23:
# 306 | Caml.Format.eprintf "relocate %a to %a and %a@\n%!" Location.fmt src
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 423, characters 6-25:
# 423 | Caml.Format.eprintf "AST:\n%a\n%!"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Ast.cmo -c -impl lib/Ast.ml)
# File "lib/Ast.ml", line 960, characters 17-44:
# 960 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -bin-annot -I lib/.ocamlformat.objs/byte -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-standard/.parser_standard.objs/byte -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/byte/ocamlformat__Fmt_ast.cmo -c -impl lib/Fmt_ast.ml)
# File "lib/Fmt_ast.ml", line 92, characters 19-46:
# 92 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 93, characters 10-29:
# 93 | Caml.Format.eprintf "@\nFAIL@\n%a@\n%s@.%!" Ast.dump ast bt ;
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4462, characters 21-41:
# 4462 | Error (`Msg (Caml.Format.asprintf "expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4464, characters 21-41:
# 4464 | Error (`Msg (Caml.Format.asprintf "not expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4466, characters 21-41:
# 4466 | Error (`Msg (Caml.Format.asprintf "invalid toplevel or OCaml syntax"))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4468, characters 21-41:
# 4468 | Error (`Msg (Caml.Format.asprintf "%a" Exn.pp e))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Literal_lexer.cmx -c -impl lib/Literal_lexer.ml)
# File "lib/Literal_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__File_system.cmx -c -impl lib/File_system.ml)
# File "lib/File_system.ml", line 37, characters 10-29:
# 37 | match Caml.Sys.getenv_opt "XDG_CONFIG_HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/File_system.ml", line 39, characters 12-31:
# 39 | match Caml.Sys.getenv_opt "HOME" with
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Migrate_ast.cmx -c -impl lib/Migrate_ast.ml)
# File "lib/Migrate_ast.ml", line 115, characters 4-23:
# 115 | Caml.Format.fprintf ppf "File \"%s\", line %d, characters %d-%d:"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Toplevel_lexer.cmx -c -impl lib/Toplevel_lexer.ml)
# File "lib/Toplevel_lexer.mll", line 13, characters 5-9:
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Fmt_odoc.cmx -c -impl lib/Fmt_odoc.ml)
# File "lib/Fmt_odoc.ml", line 98, characters 27-52:
# 98 | Docstring.warn Caml.Format.err_formatter
# ^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Ast.cmx -c -impl lib/Ast.ml)
# File "lib/Ast.ml", line 960, characters 17-44:
# 960 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Cmts.cmx -c -impl lib/Cmts.ml)
# File "lib/Cmts.ml", line 27, characters 6-26:
# 27 | Caml.Format.asprintf "%a" Printast.expression e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 29, characters 30-50:
# 29 | let pattern_to_string e = Caml.Format.asprintf "%a" Printast.pattern e
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 306, characters 4-23:
# 306 | Caml.Format.eprintf "relocate %a to %a and %a@\n%!" Location.fmt src
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Cmts.ml", line 423, characters 6-25:
# 423 | Caml.Format.eprintf "AST:\n%a\n%!"
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Fmt_ast.cmx -c -impl lib/Fmt_ast.ml)
# File "lib/Fmt_ast.ml", line 92, characters 19-46:
# 92 | let bt = Caml.Printexc.get_backtrace () in
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 93, characters 10-29:
# 93 | Caml.Format.eprintf "@\nFAIL@\n%a@\n%s@.%!" Ast.dump ast bt ;
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4462, characters 21-41:
# 4462 | Error (`Msg (Caml.Format.asprintf "expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4464, characters 21-41:
# 4464 | Error (`Msg (Caml.Format.asprintf "not expecting: %s" x))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4466, characters 21-41:
# 4466 | Error (`Msg (Caml.Format.asprintf "invalid toplevel or OCaml syntax"))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Fmt_ast.ml", line 4468, characters 21-41:
# 4468 | Error (`Msg (Caml.Format.asprintf "%a" Exn.pp e))
# ^^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocaml_common -open Parser_extended -open Ocamlformat_stdlib -open Ocamlformat_result.Global_scope -g -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Ocamlformat -o lib/.ocamlformat.objs/native/ocamlformat__Translation_unit.cmx -c -impl lib/Translation_unit.ml)
# File "lib/Translation_unit.ml", line 34, characters 48-61:
# 34 | let exe = chop_any_extension (Filename.basename Caml.Sys.argv.(0))
# ^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 58, characters 7-23:
# 58 | (Caml.Sys.command
# ^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 60, characters 4-19:
# 60 | Caml.Sys.remove p ;
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 61, characters 4-19:
# 61 | Caml.Sys.remove n
# ^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "lib/Translation_unit.ml", line 434, characters 8-22:
# 434 | Caml.flush_all () ;
# ^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_literal_lexer.cmx -c -impl test/unit/test_literal_lexer.ml)
# File "test/unit/test_literal_lexer.ml", line 22, characters 48-60:
# 22 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected got )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_literal_lexer.ml", line 60, characters 10-22:
# 60 | Caml.__LOC__ expected got )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocamlformat_stdlib -g -I bin/ocamlformat/.main.eobjs/byte -I bin/ocamlformat/.main.eobjs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -o bin/ocamlformat/.main.eobjs/native/dune__exe__Main.cmx -c -impl bin/ocamlformat/main.ml)
# File "bin/ocamlformat/main.ml", line 16, characters 0-12:
# 16 | Caml.at_exit (Format.pp_print_flush Format.err_formatter) ;;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 18, characters 0-12:
# 18 | Caml.at_exit (Format_.pp_print_flush Format_.err_formatter)
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 99, characters 13-22:
# 99 | | Ok () -> Caml.exit 0
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 102, characters 6-15:
# 102 | Caml.exit 1 )
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 103, characters 27-36:
# 103 | | Ok (`Version | `Help) -> Caml.exit 0
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat/main.ml", line 104, characters 13-22:
# 104 | | Error _ -> Caml.exit 1
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_fmt.cmx -c -impl test/unit/test_fmt.ml)
# File "test/unit/test_fmt.ml", line 25, characters 41-53:
# 25 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 26, characters 48-60:
# 26 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected_r got_r
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 42, characters 41-53:
# 42 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 43, characters 48-60:
# 43 | Alcotest.check Alcotest.(option string) Caml.__LOC__ expected_r got_r
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 63, characters 41-53:
# 63 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 67, characters 10-22:
# 67 | Caml.__LOC__ expected_calls got_calls )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 88, characters 41-53:
# 88 | Alcotest.check Alcotest.(string) Caml.__LOC__ expected got ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 92, characters 10-22:
# 92 | Caml.__LOC__ expected_calls got_calls )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/unit/test_fmt.ml", line 109, characters 39-51:
# 109 | Alcote
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build ocamlformat 0.24.1
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
st.check Alcotest.string Caml.__LOC__ expected got )
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -open Ocamlformat_stdlib -g -I bin/ocamlformat-rpc/.main.eobjs/byte -I bin/ocamlformat-rpc/.main.eobjs/native -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/csexp -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I lib-rpc-server/.ocamlformat_rpc.objs/byte -I lib-rpc-server/.ocamlformat_rpc.objs/native -I lib-rpc/lib-protocol/.ocamlformat_rpc_lib_protocol.objs/byte -I lib-rpc/lib-protocol/.ocamlformat_rpc_lib_protocol.objs/native -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -o bin/ocamlformat-rpc/.main.eobjs/native/dune__exe__Main.cmx -c -impl bin/ocamlformat-rpc/main.ml)
# File "bin/ocamlformat-rpc/main.ml", line 15, characters 2-14:
# 15 | Caml.at_exit (Format.pp_print_flush Format.err_formatter) ;
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat-rpc/main.ml", line 16, characters 2-14:
# 16 | Caml.at_exit (Format_.pp_print_flush Format_.err_formatter)
# ^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "bin/ocamlformat-rpc/main.ml", line 77, characters 9-18:
# 77 | let () = Caml.exit @@ Cmd.eval_result (Cmd.v info rpc_main_t)
# ^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -noassert -g -I test/unit/.test_unit.eobjs/byte -I test/unit/.test_unit.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/camlp-streams -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/dune-build-info -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/fpath -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-version -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocp-indent/lexer -I /home/opam/.opam/4.14/lib/ocp-indent/lib -I /home/opam/.opam/4.14/lib/ocp-indent/utils -I /home/opam/.opam/4.14/lib/odoc-parser -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/result -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdio -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uuseg -I /home/opam/.opam/4.14/lib/uutf -I lib/.ocamlformat.objs/byte -I lib/.ocamlformat.objs/native -I vendor/ocaml-common/.ocaml_common.objs/byte -I vendor/ocaml-common/.ocaml_common.objs/native -I vendor/ocamlformat-result/.ocamlformat_result.objs/byte -I vendor/ocamlformat-result/.ocamlformat_result.objs/native -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/byte -I vendor/ocamlformat-stdlib/.ocamlformat_stdlib.objs/native -I vendor/ocamlformat_support/.format_.objs/byte -I vendor/ocamlformat_support/.format_.objs/native -I vendor/parser-extended/.parser_extended.objs/byte -I vendor/parser-extended/.parser_extended.objs/native -I vendor/parser-recovery/lib/.parser_recovery.objs/byte -I vendor/parser-recovery/lib/.parser_recovery.objs/native -I vendor/parser-shims/.parser_shims.objs/byte -I vendor/parser-shims/.parser_shims.objs/native -I vendor/parser-standard/.parser_standard.objs/byte -I vendor/parser-standard/.parser_standard.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/unit/.test_unit.eobjs/native/dune__exe__Test_unit.cmx -c -impl test/unit/test_unit.ml)
# File "test/unit/test_unit.ml", line 49, characters 24-43:
# 49 | let pp ppf (s, e) = Caml.Format.fprintf ppf "(%d, %d)" s e
# ^^^^^^^^^^^^^^^^^^^
# Alert deprecated: module Caml
# [since v0.16] use Stdlib instead of Caml
# File "test/passing/tests/align_infix.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/align_infix.ml.stderr
# diff --git a/_build/default/test/passing/align_infix.ml.stderr b/_build/default/test/passing/align_infix.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/alignment.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/alignment.ml.stderr
# diff --git a/_build/default/test/passing/alignment.ml.stderr b/_build/default/test/passing/alignment.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/apply_functor.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/apply_functor.ml.stderr
# diff --git a/_build/default/test/passing/apply_functor.ml.stderr b/_build/default/test/passing/apply_functor.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/args_grouped.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/args_grouped.ml.stderr
# diff --git a/_build/default/test/passing/args_grouped.ml.stderr b/_build/default/test/passing/args_grouped.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/array.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/array.ml.stderr
# diff --git a/_build/default/test/passing/array.ml.stderr b/_build/default/test/passing/array.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/attribute_and_expression.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/attribute_and_expression.ml.stderr
# diff --git a/_build/default/test/passing/attribute_and_expression.ml.stderr b/_build/default/test/passing/attribute_and_expression.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/attributes.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/attributes.mli.stderr
# diff --git a/_build/default/test/passing/attributes.mli.stderr b/_build/default/test/passing/attributes.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/binders.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/binders.ml.stderr
# diff --git a/_build/default/test/passing/binders.ml.stderr b/_build/default/test/passing/binders.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_fun_decl-fit_or_vertical.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr
# diff --git a/_build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr b/_build/default/test/passing/break_fun_decl-fit_or_vertical.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_fun_decl-wrap.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl-wrap.ml.stderr
# diff --git a/_build/default/test/passing/break_fun_decl-wrap.ml.stderr b/_build/default/test/passing/break_fun_decl-wrap.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_fun_decl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_fun_decl.ml.stderr
# diff --git a/_build/default/test/passing/break_fun_decl.ml.stderr b/_build/default/test/passing/break_fun_decl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_record.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_record.ml.stderr
# diff --git a/_build/default/test/passing/break_record.ml.stderr b/_build/default/test/passing/break_record.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_separators-after.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators-after.ml.stderr
# diff --git a/_build/default/test/passing/break_separators-after.ml.stderr b/_build/default/test/passing/break_separators-after.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_separators-before_docked.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators-before_docked.ml.stderr
# diff --git a/_build/default/test/passing/break_separators-before_docked.ml.stderr b/_build/default/test/passing/break_separators-before_docked.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/break_separators.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/break_separators.ml.stderr
# diff --git a/_build/default/test/passing/break_separators.ml.stderr b/_build/default/test/passing/break_separators.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/class_expr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/class_expr.ml.stderr
# diff --git a/_build/default/test/passing/class_expr.ml.stderr b/_build/default/test/passing/class_expr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/class_type.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/class_type.ml.stderr
# diff --git a/_build/default/test/passing/class_type.ml.stderr b/_build/default/test/passing/class_type.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/cmdline_override.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/cmdline_override.ml.stderr
# diff --git a/_build/default/test/passing/cmdline_override.ml.stderr b/_build/default/test/passing/cmdline_override.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/cmdline_override2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/cmdline_override2.ml.stderr
# diff --git a/_build/default/test/passing/cmdline_override2.ml.stderr b/_build/default/test/passing/cmdline_override2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/coerce.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/coerce.ml.stderr
# diff --git a/_build/default/test/passing/coerce.ml.stderr b/_build/default/test/passing/coerce.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/collections-conventional.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections-conventional.ml.stderr
# diff --git a/_build/default/test/passing/collections-conventional.ml.stderr b/_build/default/test/passing/collections-conventional.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/collections-janestreet.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections-janestreet.ml.stderr
# diff --git a/_build/default/test/passing/collections-janestreet.ml.stderr b/_build/default/test/passing/collections-janestreet.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/collections.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/collections.ml.stderr
# diff --git a/_build/default/test/passing/collections.ml.stderr b/_build/default/test/passing/collections.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_breaking.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_breaking.ml.stderr
# diff --git a/_build/default/test/passing/comment_breaking.ml.stderr b/_build/default/test/passing/comment_breaking.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_header.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_header.ml.stderr
# diff --git a/_build/default/test/passing/comment_header.ml.stderr b/_build/default/test/passing/comment_header.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_in_empty.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_in_empty.ml.stderr
# diff --git a/_build/default/test/passing/comment_in_empty.ml.stderr b/_build/default/test/passing/comment_in_empty.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_in_modules.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_in_modules.ml.stderr
# diff --git a/_build/default/test/passing/comment_in_modules.ml.stderr b/_build/default/test/passing/comment_in_modules.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_last.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_last.ml.stderr
# diff --git a/_build/default/test/passing/comment_last.ml.stderr b/_build/default/test/passing/comment_last.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comment_sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comment_sparse.ml.stderr
# diff --git a/_build/default/test/passing/comment_sparse.ml.stderr b/_build/default/test/passing/comment_sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comments.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments.mli.stderr
# diff --git a/_build/default/test/passing/comments.mli.stderr b/_build/default/test/passing/comments.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comments_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments_args.ml.stderr
# diff --git a/_build/default/test/passing/comments_args.ml.stderr b/_build/default/test/passing/comments_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/comments_around_disabled.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/comments_around_disabled.ml.stderr
# diff --git a/_build/default/test/passing/comments_around_disabled.ml.stderr b/_build/default/test/passing/comments_around_disabled.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/crlf_to_crlf.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/crlf_to_crlf.ml.stderr
# diff --git a/_build/default/test/passing/crlf_to_crlf.ml.stderr b/_build/default/test/passing/crlf_to_crlf.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/crlf_to_lf.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/crlf_to_lf.ml.stderr
# diff --git a/_build/default/test/passing/crlf_to_lf.ml.stderr b/_build/default/test/passing/crlf_to_lf.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/custom_list.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/custom_list.ml.stderr
# diff --git a/_build/default/test/passing/custom_list.ml.stderr b/_build/default/test/passing/custom_list.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/directives.mlt.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/directives.mlt.stderr
# diff --git a/_build/default/test/passing/directives.mlt.stderr b/_build/default/test/passing/directives.mlt.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/disabled.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/disabled.ml.stderr
# diff --git a/_build/default/test/passing/disabled.ml.stderr b/_build/default/test/passing/disabled.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/disambiguated_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/disambiguated_types.ml.stderr
# diff --git a/_build/default/test/passing/disambiguated_types.ml.stderr b/_build/default/test/passing/disambiguated_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/doc_comments_padding.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/doc_comments_padding.ml.stderr
# diff --git a/_build/default/test/passing/doc_comments_padding.ml.stderr b/_build/default/test/passing/doc_comments_padding.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/eliom_ext.eliom.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/eliom_ext.eliom.stderr
# diff --git a/_build/default/test/passing/eliom_ext.eliom.stderr b/_build/default/test/passing/eliom_ext.eliom.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty.ml.stderr
# diff --git a/_build/default/test/passing/empty.ml.stderr b/_build/default/test/passing/empty.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty_ml.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_ml.ml.stderr
# diff --git a/_build/default/test/passing/empty_ml.ml.stderr b/_build/default/test/passing/empty_ml.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty_mli.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_mli.mli.stderr
# diff --git a/_build/default/test/passing/empty_mli.mli.stderr b/_build/default/test/passing/empty_mli.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/empty_mlt.mlt.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/empty_mlt.mlt.stderr
# diff --git a/_build/default/test/passing/empty_mlt.mlt.stderr b/_build/default/test/passing/empty_mlt.mlt.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/escaped_nl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/escaped_nl.ml.stderr
# diff --git a/_build/default/test/passing/escaped_nl.ml.stderr b/_build/default/test/passing/escaped_nl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/exceptions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exceptions.ml.stderr
# diff --git a/_build/default/test/passing/exceptions.ml.stderr b/_build/default/test/passing/exceptions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/exceptions.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exceptions.mli.stderr
# diff --git a/_build/default/test/passing/exceptions.mli.stderr b/_build/default/test/passing/exceptions.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/exp_record.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/exp_record.ml.stderr
# diff --git a/_build/default/test/passing/exp_record.ml.stderr b/_build/default/test/passing/exp_record.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/extensions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions.ml.stderr
# diff --git a/_build/default/test/passing/extensions.ml.stderr b/_build/default/test/passing/extensions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/extensions.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions.mli.stderr
# diff --git a/_build/default/test/passing/extensions.mli.stderr b/_build/default/test/passing/extensions.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/extensions_exp_grouping.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/extensions_exp_grouping.ml.stderr
# diff --git a/_build/default/test/passing/extensions_exp_grouping.ml.stderr b/_build/default/test/passing/extensions_exp_grouping.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/field.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/field.ml.stderr
# diff --git a/_build/default/test/passing/field.ml.stderr b/_build/default/test/passing/field.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/floating_doc.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/floating_doc.ml.stderr
# diff --git a/_build/default/test/passing/floating_doc.ml.stderr b/_build/default/test/passing/floating_doc.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/for_while.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/for_while.ml.stderr
# diff --git a/_build/default/test/passing/for_while.ml.stderr b/_build/default/test/passing/for_while.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/format_invalid_files-0.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files-0.ml.stderr
# diff --git a/_build/default/test/passing/format_invalid_files-0.ml.stderr b/_build/default/test/passing/format_invalid_files-0.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/format_invalid_files.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files.ml.stderr
# diff --git a/_build/default/test/passing/format_invalid_files.ml.stderr b/_build/default/test/passing/format_invalid_files.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/format_invalid_files_with_locations.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/format_invalid_files_with_locations.ml.stderr
# diff --git a/_build/default/test/passing/format_invalid_files_with_locations.ml.stderr b/_build/default/test/passing/format_invalid_files_with_locations.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/fun_decl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/fun_decl.ml.stderr
# diff --git a/_build/default/test/passing/fun_decl.ml.stderr b/_build/default/test/passing/fun_decl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/fun_function.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/fun_function.ml.stderr
# diff --git a/_build/default/test/passing/fun_function.ml.stderr b/_build/default/test/passing/fun_function.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/functor.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/functor.ml.stderr
# diff --git a/_build/default/test/passing/functor.ml.stderr b/_build/default/test/passing/functor.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/funsig.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/funsig.ml.stderr
# diff --git a/_build/default/test/passing/funsig.ml.stderr b/_build/default/test/passing/funsig.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/gadt.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/gadt.ml.stderr
# diff --git a/_build/default/test/passing/gadt.ml.stderr b/_build/default/test/passing/gadt.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/generative.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/generative.ml.stderr
# diff --git a/_build/default/test/passing/generative.ml.stderr b/_build/default/test/passing/generative.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/hash_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/hash_types.ml.stderr
# diff --git a/_build/default/test/passing/hash_types.ml.stderr b/_build/default/test/passing/hash_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/holes.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/holes.ml.stderr
# diff --git a/_build/default/test/passing/holes.ml.stderr b/_build/default/test/passing/holes.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ifand.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ifand.ml.stderr
# diff --git a/_build/default/test/passing/ifand.ml.stderr b/_build/default/test/passing/ifand.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/index_op.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/index_op.ml.stderr
# diff --git a/_build/default/test/passing/index_op.ml.stderr b/_build/default/test/passing/index_op.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/indicate_multiline_delimiters-space.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr
# diff --git a/_build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr b/_build/default/test/passing/indicate_multiline_delimiters-space.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/indicate_multiline_delimiters.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/indicate_multiline_delimiters.ml.stderr
# diff --git a/_build/default/test/passing/indicate_multiline_delimiters.ml.stderr b/_build/default/test/passing/indicate_multiline_delimiters.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_arg_grouping.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_arg_grouping.ml.stderr
# diff --git a/_build/default/test/passing/infix_arg_grouping.ml.stderr b/_build/default/test/passing/infix_arg_grouping.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind-break.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-break.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind-break.ml.stderr b/_build/default/test/passing/infix_bind-break.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind-fit_or_vertical-break.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr b/_build/default/test/passing/infix_bind-fit_or_vertical-break.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind-fit_or_vertical.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr b/_build/default/test/passing/infix_bind-fit_or_vertical.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_bind.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_bind.ml.stderr
# diff --git a/_build/default/test/passing/infix_bind.ml.stderr b/_build/default/test/passing/infix_bind.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/infix_precedence.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/infix_precedence.ml.stderr
# diff --git a/_build/default/test/passing/infix_precedence.ml.stderr b/_build/default/test/passing/infix_precedence.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/injectivity.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/injectivity.ml.stderr
# diff --git a/_build/default/test/passing/injectivity.ml.stderr b/_build/default/test/passing/injectivity.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/invalid.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/invalid.ml.stderr
# diff --git a/_build/default/test/passing/invalid.ml.stderr b/_build/default/test/passing/invalid.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue114.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue114.ml.stderr
# diff --git a/_build/default/test/passing/issue114.ml.stderr b/_build/default/test/passing/issue114.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue48.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue48.ml.stderr
# diff --git a/_build/default/test/passing/issue48.ml.stderr b/_build/default/test/passing/issue48.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue51.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue51.ml.stderr
# diff --git a/_build/default/test/passing/issue51.ml.stderr b/_build/default/test/passing/issue51.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue57.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue57.ml.stderr
# diff --git a/_build/default/test/passing/issue57.ml.stderr b/_build/default/test/passing/issue57.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue60.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue60.ml.stderr
# diff --git a/_build/default/test/passing/issue60.ml.stderr b/_build/default/test/passing/issue60.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue77.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue77.ml.stderr
# diff --git a/_build/default/test/passing/issue77.ml.stderr b/_build/default/test/passing/issue77.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue85.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue85.ml.stderr
# diff --git a/_build/default/test/passing/issue85.ml.stderr b/_build/default/test/passing/issue85.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/issue89.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/issue89.ml.stderr
# diff --git a/_build/default/test/passing/issue89.ml.stderr b/_build/default/test/passing/issue89.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ite-kw_first.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-kw_first.ml.stderr
# diff --git a/_build/default/test/passing/ite-kw_first.ml.stderr b/_build/default/test/passing/ite-kw_first.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ite-kw_first_no_indicate.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-kw_first_no_indicate.ml.stderr
# diff --git a/_build/default/test/passing/ite-kw_first_no_indicate.ml.stderr b/_build/default/test/passing/ite-kw_first_no_indicate.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ite-no_indicate.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ite-no_indicate.ml.stderr
# diff --git a/_build/default/test/passing/ite-no_indicate.ml.stderr b/_build/default/test/passing/ite-no_indicate.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_args.ml.stderr
# diff --git a/_build/default/test/passing/js_args.ml.stderr b/_build/default/test/passing/js_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_begin.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_begin.ml.stderr
# diff --git a/_build/default/test/passing/js_begin.ml.stderr b/_build/default/test/passing/js_begin.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_bind.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_bind.ml.stderr
# diff --git a/_build/default/test/passing/js_bind.ml.stderr b/_build/default/test/passing/js_bind.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_fun.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_fun.ml.stderr
# diff --git a/_build/default/test/passing/js_fun.ml.stderr b/_build/default/test/passing/js_fun.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_map.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_map.ml.stderr
# diff --git a/_build/default/test/passing/js_map.ml.stderr b/_build/default/test/passing/js_map.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_pattern.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_pattern.ml.stderr
# diff --git a/_build/default/test/passing/js_pattern.ml.stderr b/_build/default/test/passing/js_pattern.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_poly.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_poly.ml.stderr
# diff --git a/_build/default/test/passing/js_poly.ml.stderr b/_build/default/test/passing/js_poly.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_record.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_record.ml.stderr
# diff --git a/_build/default/test/passing/js_record.ml.stderr b/_build/default/test/passing/js_record.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_sig.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_sig.mli.stderr
# diff --git a/_build/default/test/passing/js_sig.mli.stderr b/_build/default/test/passing/js_sig.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_syntax.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_syntax.ml.stderr
# diff --git a/_build/default/test/passing/js_syntax.ml.stderr b/_build/default/test/passing/js_syntax.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_to_do.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_to_do.ml.stderr
# diff --git a/_build/default/test/passing/js_to_do.ml.stderr b/_build/default/test/passing/js_to_do.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/js_upon.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/js_upon.ml.stderr
# diff --git a/_build/default/test/passing/js_upon.ml.stderr b/_build/default/test/passing/js_upon.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/kw_extentions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/kw_extentions.ml.stderr
# diff --git a/_build/default/test/passing/kw_extentions.ml.stderr b/_build/default/test/passing/kw_extentions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/label_option_default_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/label_option_default_args.ml.stderr
# diff --git a/_build/default/test/passing/label_option_default_args.ml.stderr b/_build/default/test/passing/label_option_default_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/labelled_args-414.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/labelled_args-414.ml.stderr
# diff --git a/_build/default/test/passing/labelled_args-414.ml.stderr b/_build/default/test/passing/labelled_args-414.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/labelled_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/labelled_args.ml.stderr
# diff --git a/_build/default/test/passing/labelled_args.ml.stderr b/_build/default/test/passing/labelled_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/lazy.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/lazy.ml.stderr
# diff --git a/_build/default/test/passing/lazy.ml.stderr b/_build/default/test/passing/lazy.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_binding.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding.ml.stderr
# diff --git a/_build/default/test/passing/let_binding.ml.stderr b/_build/default/test/passing/let_binding.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_binding_spacing-double-semicolon.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr
# diff --git a/_build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr b/_build/default/test/passing/let_binding_spacing-double-semicolon.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_binding_spacing.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_binding_spacing.ml.stderr
# diff --git a/_build/default/test/passing/let_binding_spacing.ml.stderr b/_build/default/test/passing/let_binding_spacing.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_in_constr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_in_constr.ml.stderr
# diff --git a/_build/default/test/passing/let_in_constr.ml.stderr b/_build/default/test/passing/let_in_constr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_module-sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_module-sparse.ml.stderr
# diff --git a/_build/default/test/passing/let_module-sparse.ml.stderr b/_build/default/test/passing/let_module-sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_module.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_module.ml.stderr
# diff --git a/_build/default/test/passing/let_module.ml.stderr b/_build/default/test/passing/let_module.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/let_punning.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/let_punning.ml.stderr
# diff --git a/_build/default/test/passing/let_punning.ml.stderr b/_build/default/test/passing/let_punning.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list-space_around.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list-space_around.ml.stderr
# diff --git a/_build/default/test/passing/list-space_around.ml.stderr b/_build/default/test/passing/list-space_around.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list.ml.stderr
# diff --git a/_build/default/test/passing/list.ml.stderr b/_build/default/test/passing/list.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list_and_comments.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list_and_comments.ml.stderr
# diff --git a/_build/default/test/passing/list_and_comments.ml.stderr b/_build/default/test/passing/list_and_comments.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/list_normalized.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/list_normalized.ml.stderr
# diff --git a/_build/default/test/passing/list_normalized.ml.stderr b/_build/default/test/passing/list_normalized.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/loc_stack.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/loc_stack.ml.stderr
# diff --git a/_build/default/test/passing/loc_stack.ml.stderr b/_build/default/test/passing/loc_stack.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/locally_abtract_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/locally_abtract_types.ml.stderr
# diff --git a/_build/default/test/passing/locally_abtract_types.ml.stderr b/_build/default/test/passing/locally_abtract_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/match.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/match.ml.stderr
# diff --git a/_build/default/test/passing/match.ml.stderr b/_build/default/test/passing/match.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/match2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/match2.ml.stderr
# diff --git a/_build/default/test/passing/match2.ml.stderr b/_build/default/test/passing/match2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/max_indent.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/max_indent.ml.stderr
# diff --git a/_build/default/test/passing/max_indent.ml.stderr b/_build/default/test/passing/max_indent.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/mod_type_subst.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/mod_type_subst.ml.stderr
# diff --git a/_build/default/test/passing/mod_type_subst.ml.stderr b/_build/default/test/passing/mod_type_subst.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module.ml.stderr
# diff --git a/_build/default/test/passing/module.ml.stderr b/_build/default/test/passing/module.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_anonymous.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_anonymous.ml.stderr
# diff --git a/_build/default/test/passing/module_anonymous.ml.stderr b/_build/default/test/passing/module_anonymous.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_item_spacing-sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_item_spacing-sparse.ml.stderr
# diff --git a/_build/default/test/passing/module_item_spacing-sparse.ml.stderr b/_build/default/test/passing/module_item_spacing-sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_item_spacing.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_item_spacing.ml.stderr
# diff --git a/_build/default/test/passing/module_item_spacing.ml.stderr b/_build/default/test/passing/module_item_spacing.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/module_type.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/module_type.ml.stderr
# diff --git a/_build/default/test/passing/module_type.ml.stderr b/_build/default/test/passing/module_type.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/monadic_binding.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/monadic_binding.ml.stderr
# diff --git a/_build/default/test/passing/monadic_binding.ml.stderr b/_build/default/test/passing/monadic_binding.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/multi_index_op.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/multi_index_op.ml.stderr
# diff --git a/_build/default/test/passing/multi_index_op.ml.stderr b/_build/default/test/passing/multi_index_op.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/named_existentials.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/named_existentials.ml.stderr
# diff --git a/_build/default/test/passing/named_existentials.ml.stderr b/_build/default/test/passing/named_existentials.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/new.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/new.ml.stderr
# diff --git a/_build/default/test/passing/new.ml.stderr b/_build/default/test/passing/new.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object2.ml.stderr
# diff --git a/_build/default/test/passing/object2.ml.stderr b/_build/default/test/passing/object2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object_expr-414.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_expr-414.ml.stderr
# diff --git a/_build/default/test/passing/object_expr-414.ml.stderr b/_build/default/test/passing/object_expr-414.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object_expr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_expr.ml.stderr
# diff --git a/_build/default/test/passing/object_expr.ml.stderr b/_build/default/test/passing/object_expr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/object_type.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/object_type.ml.stderr
# diff --git a/_build/default/test/passing/object_type.ml.stderr b/_build/default/test/passing/object_type.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/obuild.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/obuild.ml.stderr
# diff --git a/_build/default/test/passing/obuild.ml.stderr b/_build/default/test/passing/obuild.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/ocp_indent_options.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/ocp_indent_options.ml.stderr
# diff --git a/_build/default/test/passing/ocp_indent_options.ml.stderr b/_build/default/test/passing/ocp_indent_options.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/open.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/open.ml.stderr
# diff --git a/_build/default/test/passing/open.ml.stderr b/_build/default/test/passing/open.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/open_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/open_types.ml.stderr
# diff --git a/_build/default/test/passing/open_types.ml.stderr b/_build/default/test/passing/open_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/override.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/override.ml.stderr
# diff --git a/_build/default/test/passing/override.ml.stderr b/_build/default/test/passing/override.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/partial.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/partial.ml.stderr
# diff --git a/_build/default/test/passing/partial.ml.stderr b/_build/default/test/passing/partial.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/partial_double_quotes.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/partial_double_quotes.ml.stderr
# diff --git a/_build/default/test/passing/partial_double_quotes.ml.stderr b/_build/default/test/passing/partial_double_quotes.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/polytypes-default.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes-default.ml.stderr
# diff --git a/_build/default/test/passing/polytypes-default.ml.stderr b/_build/default/test/passing/polytypes-default.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/polytypes-janestreet.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes-janestreet.ml.stderr
# diff --git a/_build/default/test/passing/polytypes-janestreet.ml.stderr b/_build/default/test/passing/polytypes-janestreet.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/polytypes.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/polytypes.ml.stderr
# diff --git a/_build/default/test/passing/polytypes.ml.stderr b/_build/default/test/passing/polytypes.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/pre_post_extensions.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/pre_post_extensions.ml.stderr
# diff --git a/_build/default/test/passing/pre_post_extensions.ml.stderr b/_build/default/test/passing/pre_post_extensions.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/precedence.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/precedence.ml.stderr
# diff --git a/_build/default/test/passing/precedence.ml.stderr b/_build/default/test/passing/precedence.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/prefix_infix.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/prefix_infix.ml.stderr
# diff --git a/_build/default/test/passing/prefix_infix.ml.stderr b/_build/default/test/passing/prefix_infix.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/profiles.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/profiles.ml.stderr
# diff --git a/_build/default/test/passing/profiles.ml.stderr b/_build/default/test/passing/profiles.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/profiles2.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/profiles2.ml.stderr
# diff --git a/_build/default/test/passing/profiles2.ml.stderr b/_build/default/test/passing/profiles2.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/protected_object_types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/protected_object_types.ml.stderr
# diff --git a/_build/default/test/passing/protected_object_types.ml.stderr b/_build/default/test/passing/protected_object_types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/quoted_strings.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/quoted_strings.ml.stderr
# diff --git a/_build/default/test/passing/quoted_strings.ml.stderr b/_build/default/test/passing/quoted_strings.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/recmod.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/recmod.mli.stderr
# diff --git a/_build/default/test/passing/recmod.mli.stderr b/_build/default/test/passing/recmod.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/record_punning.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/record_punning.ml.stderr
# diff --git a/_build/default/test/passing/record_punning.ml.stderr b/_build/default/test/passing/record_punning.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/reformat_string.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/reformat_string.ml.stderr
# diff --git a/_build/default/test/passing/reformat_string.ml.stderr b/_build/default/test/passing/reformat_string.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/remove_extra_parens.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/remove_extra_parens.ml.stderr
# diff --git a/_build/default/test/passing/remove_extra_parens.ml.stderr b/_build/default/test/passing/remove_extra_parens.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/repl.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/repl.ml.stderr
# diff --git a/_build/default/test/passing/repl.ml.stderr b/_build/default/test/passing/repl.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/revapply_ext.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/revapply_ext.ml.stderr
# diff --git a/_build/default/test/passing/revapply_ext.ml.stderr b/_build/default/test/passing/revapply_ext.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/send.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/send.ml.stderr
# diff --git a/_build/default/test/passing/send.ml.stderr b/_build/default/test/passing/send.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/shebang.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/shebang.ml.stderr
# diff --git a/_build/default/test/passing/shebang.ml.stderr b/_build/default/test/passing/shebang.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/shortcut_ext_attr.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/shortcut_ext_attr.ml.stderr
# diff --git a/_build/default/test/passing/shortcut_ext_attr.ml.stderr b/_build/default/test/passing/shortcut_ext_attr.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/sig_value.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/sig_value.mli.stderr
# diff --git a/_build/default/test/passing/sig_value.mli.stderr b/_build/default/test/passing/sig_value.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/skip.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/skip.ml.stderr
# diff --git a/_build/default/test/passing/skip.ml.stderr b/_build/default/test/passing/skip.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/string.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string.ml.stderr
# diff --git a/_build/default/test/passing/string.ml.stderr b/_build/default/test/passing/string.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/string_array.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string_array.ml.stderr
# diff --git a/_build/default/test/passing/string_array.ml.stderr b/_build/default/test/passing/string_array.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/string_wrapping.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/string_wrapping.ml.stderr
# diff --git a/_build/default/test/passing/string_wrapping.ml.stderr b/_build/default/test/passing/string_wrapping.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/symbol.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/symbol.ml.stderr
# diff --git a/_build/default/test/passing/symbol.ml.stderr b/_build/default/test/passing/symbol.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/tag_only.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tag_only.ml.stderr
# diff --git a/_build/default/test/passing/tag_only.ml.stderr b/_build/default/test/passing/tag_only.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/tag_only.mli.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tag_only.mli.stderr
# diff --git a/_build/default/test/passing/tag_only.mli.stderr b/_build/default/test/passing/tag_only.mli.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/tuple_type_parens.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/tuple_type_parens.ml.stderr
# diff --git a/_build/default/test/passing/tuple_type_parens.ml.stderr b/_build/default/test/passing/tuple_type_parens.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/type_and_constraint.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/type_and_constraint.ml.stderr
# diff --git a/_build/default/test/passing/type_and_constraint.ml.stderr b/_build/default/test/passing/type_and_constraint.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/type_annotations.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/type_annotations.ml.stderr
# diff --git a/_build/default/test/passing/type_annotations.ml.stderr b/_build/default/test/passing/type_annotations.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-compact-space_around-docked.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact-space_around-docked.ml.stderr
# diff --git a/_build/default/test/passing/types-compact-space_around-docked.ml.stderr b/_build/default/test/passing/types-compact-space_around-docked.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-compact-space_around.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact-space_around.ml.stderr
# diff --git a/_build/default/test/passing/types-compact-space_around.ml.stderr b/_build/default/test/passing/types-compact-space_around.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-compact.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-compact.ml.stderr
# diff --git a/_build/default/test/passing/types-compact.ml.stderr b/_build/default/test/passing/types-compact.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types.ml.stderr
# diff --git a/_build/default/test/passing/types.ml.stderr b/_build/default/test/passing/types.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/unary.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/unary.ml.stderr
# diff --git a/_build/default/test/passing/unary.ml.stderr b/_build/default/test/passing/unary.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/unary_hash.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/unary_hash.ml.stderr
# diff --git a/_build/default/test/passing/unary_hash.ml.stderr b/_build/default/test/passing/unary_hash.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/use_file.mlt.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/use_file.mlt.stderr
# diff --git a/_build/default/test/passing/use_file.mlt.stderr b/_build/default/test/passing/use_file.mlt.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/verbatim_comments-wrap.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/verbatim_comments-wrap.ml.stderr
# diff --git a/_build/default/test/passing/verbatim_comments-wrap.ml.stderr b/_build/default/test/passing/verbatim_comments-wrap.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/verbatim_comments.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/verbatim_comments.ml.stderr
# diff --git a/_build/default/test/passing/verbatim_comments.ml.stderr b/_build/default/test/passing/verbatim_comments.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-sparse-space_around.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-sparse-space_around.ml.stderr
# diff --git a/_build/default/test/passing/types-sparse-space_around.ml.stderr b/_build/default/test/passing/types-sparse-space_around.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/wrap_comments_break.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/wrap_comments_break.ml.stderr
# diff --git a/_build/default/test/passing/wrap_comments_break.ml.stderr b/_build/default/test/passing/wrap_comments_break.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/wrapping_functor_args.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/wrapping_functor_args.ml.stderr
# diff --git a/_build/default/test/passing/wrapping_functor_args.ml.stderr b/_build/default/test/passing/wrapping_functor_args.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# File "test/passing/tests/types-sparse.ml.err", line 1, characters 0-0:
# /usr/bin/git --no-pager diff --no-index --color=always -u /dev/null _build/default/test/passing/types-sparse.ml.stderr
# diff --git a/_build/default/test/passing/types-sparse.ml.stderr b/_build/default/test/passing/types-sparse.ml.stderr
# new file mode 100644
# index 0000000..e69de29
# (cd _build/default/test/unit && ./test_unit.exe)
# Testing `ocamlformat'.
# This run has ID `AFL1MMCO'.
#
# [OK] Location 0 compare_width_decr...
# [OK] Location 1 compare_width_decr...
# [OK] Location 2 compare_width_decr...
# [OK] Location 3 compare_width_decr...
# [OK] non overlapping interval tree 0 dump: empty.
# [OK] non overlapping interval tree 1 dump: singleton.
# [OK] non overlapping interval tree 2 dump: disjoint.
# [OK] non overlapping interval tree 3 dump: same start.
# [OK] non overlapping interval tree 4 dump: same end.
# [OK] non overlapping interval tree 5 dump: inclusion.
# [OK] non overlapping interval tree 6 roots: empty.
# [OK] non overlapping interval tree 7 roots: singleton.
# [OK] non overlapping interval tree 8 roots: disjoint.
# [OK] non overlapping interval tree 9 roots: inclusion.
# [OK] non overlapping interval tree 10 children: empty.
# [OK] non overlapping interval tree 11 children: no child...
# [OK] non overlapping interval tree 12 children: not pres...
# [OK] non overlapping interval tree 13 children: one level.
# [OK] non overlapping interval tree 14 children: two levels.
# [OK] non overlapping interval tree 15 children: no parti...
# [OK] Ast 0 !.
# [OK] Ast 1 ?.
# [OK] Ast 2 ~.
# [OK] Ast 3 *.
# [OK] Ast 4 +.
# [OK] Ast 5 !=.
# [OK] Ast 6 land.
# [OK] Ast 7 lor.
# [OK] Ast 8 ||.
# [OK] Ast 9 @.
# [OK] Ast 10 ::.
# [OK] Ast 11 :=.
# [OK] Ast 12 let+.
# [OK] Ast 13 and+.
# [OK] Ast 14 .().
# [OK] Ast 15 .*().
# [OK] Ast 16 .*(;..).
# [OK] Ast 17 .[].
# [OK] Ast 18 .*[].
# [OK] Ast 19 .*[;..].
# [OK] Ast 20 .{}.
# [OK] Ast 21 .*{}.
# [OK] Ast 22 .*{;..}.
# [OK] Ast 23 .{}<-.
# [OK] Ast 24 .*{}<-.
# [OK] Ast 25 .*{;..}<-.
# [OK] Ast 26 let.
# [OK] Ast 27 let+abc.
# [OK] Ast 28 and.
# [OK] Ast 29 *.
# [OK] Ast 30 +.
# [OK] Ast 31 !=.
# [OK] Ast 32 land.
# [OK] Ast 33 lor.
# [OK] Ast 34 ||.
# [OK] Ast 35 @.
# [OK] Ast 36 ::.
# [OK] Ast 37 :=.
# [OK] Ast 38 let+.
# [OK] Ast 39 and+.
# [OK] Ast 40 let.
# [OK] Ast 41 let+abc.
# [OK] Ast 42 and.
# [OK] Ast 43 .().
# [OK] Ast 44 .*().
# [OK] Ast 45 .*(;..).
# [OK] Ast 46 .[].
# [OK] Ast 47 .*[].
# [OK] Ast 48 .*[;..].
# [OK] Ast 49 .{}.
# [OK] Ast 50 .*{}.
# [OK] Ast 51 .*{;..}.
# [OK] Ast 52 .{}<-.
# [OK] Ast 53 .*{}<-.
# [OK] Ast 54 .*{;..}<-.
# [OK] Ast 55 *.
# [OK] Ast 56 +.
# [OK] Ast 57 !=.
# [OK] Ast 58 land.
# [OK] Ast 59 lor.
# [OK] Ast 60 ||.
# [OK] Ast 61 @.
# [OK] Ast 62 ::.
# [OK] Ast 63 :=.
# [OK] Ast 64 let+.
# [OK] Ast 65 and+.
# [OK] Ast 66 .().
# [OK] Ast 67 .*().
# [OK] Ast 68 .*(;..).
# [OK] Ast 69 .[].
# [OK] Ast 70 .*[].
# [OK] Ast 71 .*[;..].
# [OK] Ast 72 .{}.
# [OK] Ast 73 .*{}.
# [OK] Ast 74 .*{;..}.
# [OK] Ast 75 .{}<-.
# [OK] Ast 76 .*{}<-.
# [OK] Ast 77 .*{;..}<-.
# [OK] Ast 78 let.
# [OK] Ast 79 let+abc.
# [OK] Ast 80 and.
# [OK] Ast 81 #.
# [OK] Ast 82 #.
# [OK] Ast 83 ##.
# [OK] Ast 84 #++.
# [OK] Ast 85 #---#.
# [OK] Ast 86 let.
# [OK] Ast 87 let+abc.
# [OK] Ast 88 and.
# [OK] Ast 89 *.
# [OK] Ast 90 +.
# [OK] Ast 91 !=.
# [OK] Ast 92 land.
# [OK] Ast 93 lor.
# [OK] Ast 94 ||.
# [OK] Ast 95 @.
# [OK] Ast 96 ::.
# [OK] Ast 97 :=.
# [OK] Ast 98 let+.
# [OK] Ast 99 and+.
# [OK] Ast 100 .().
# [OK] Ast 101 .*().
# [OK] Ast 102 .*(;..).
# [OK] Ast 103 .[].
# [OK] Ast 104 .*[].
# [OK] Ast 105 .*[;..].
# [OK] Ast 106 .{}.
# [OK] Ast 107 .*{}.
# [OK] Ast 108 .*{;..}.
# [OK] Ast 109 .{}<-.
# [OK] Ast 110 .*{}<-.
# [OK] Ast 111 .*{;..}<-.
# [OK] Ast 112 let+.
# [OK] Ast 113 and+.
# [OK] Ast 114 *.
# [OK] Ast 115 +.
# [OK] Ast 116 !=.
# [OK] Ast 117 let.
# [OK] Ast 118 let+abc.
# [OK] Ast 119 and.
# [OK] Ast 120 and#.
# [OK] Ast 121 land.
# [OK] Ast 122 lor.
# [OK] Ast 123 ||.
# [OK] Ast 124 @.
# [OK] Ast 125 ::.
# [OK] Ast 126 :=.
# [OK] Ast 127 .().
# [OK] Ast 128 .*().
# [OK] Ast 129 .*(;..).
# [OK] Ast 130 .[].
# [OK] Ast 131 .*[].
# [OK] Ast 132 .*[;..].
# [OK] Ast 133 .{}.
# [OK] Ast 134 .*{}.
# [OK] Ast 135 .*{;..}.
# [OK] Ast 136 .{}<-.
# [OK] Ast 137 .*{}<-.
# [OK] Ast 138 .*{;..}<-.
# [OK] Indent 0 Partial_ast.indent...
# [OK] Indent 1 Partial_ast.indent...
# [OK] Indent 2 Partial_ast.indent...
# [OK] Indent 3 Partial_ast.indent...
# [OK] Literal_lexer 0 string: string: no...
# [OK] Literal_lexer 1 string: simple (pr...
# [OK] Literal_lexer 2 string: simple (no...
# [OK] Literal_lexer 3 string: numeric es...
# [OK] Literal_lexer 4 string: numeric es...
# [OK] Literal_lexer 5 string: raw tab (p...
# [OK] Literal_lexer 6 string: raw tab (n...
# [OK] Literal_lexer 7 string: backslash ...
# [OK] Literal_lexer 8 string: backslash ...
# [OK] Literal_lexer 9 string: backslash ...
# [OK] Literal_lexer 10 string: backslash ...
# [OK] Literal_lexer 11 char: not a charac...
# [OK] Literal_lexer 12 char: escaped newl...
# [OK] Literal_lexer 13 char: letter.
# [OK] Literal_lexer 14 char: escaped back...
# [OK] Literal_lexer 15 char: escaped sing...
# [OK] Literal_lexer 16 char: escaped doub...
# [OK] Literal_lexer 17 char: backslash n.
# [OK] Literal_lexer 18 char: backslash t.
# [OK] Literal_lexer 19 char: backslash b.
# [OK] Literal_lexer 20 char: backslash r.
# [OK] Literal_lexer 21 char: backslash sp...
# [OK] Literal_lexer 22 char: decimal escape.
# [OK] Literal_lexer 23 char: octal escape.
# [OK] Literal_lexer 24 char: hex escape.
# [OK] Fmt 0 lazy_: not using l...
# [OK] Fmt 1 lazy_: using lazy.
# [OK] Fmt 2 list_pn: evaluatio...
# [OK] Fmt 3 list_pn: does not ...
# [OK] Fmt 4 list_k: evaluation...
# [OK] Fmt 5 list_k: does not c...
# [OK] Fmt 6 sequence: 1 element.
# [OK] Fmt 7 sequence: empty list.
# [OK] Fmt 8 sequence: list.
# [OK] Fmt 9 sequence: long list.
# [OK] Range 0 make: "" None.
# [OK] Range 1 make: "" (0, 0).
# [OK] Range 2 make: "" (1, 0).
# [OK] Range 3 make: "" (-1, -1).
# [OK] Range 4 make: "" (1, 1).
# [OK] Range 5 make: "\n" None.
# [OK] Range 6 make: "\n" (0, 0).
# [OK] Range 7 make: "\n" (1, 0).
# [OK] Range 8 make: "\n" (-1, -1).
# [OK] Range 9 make: "\n" (1, 2).
# [OK] Range 10 make: "xxxx\nxxxxx...
# [OK] Range 11 make: "xxxx\nxxxxx...
# [OK] Range 12 make: "xxxx\nxxxxx...
# [OK] Range 13 make: "\n\n" None.
# [OK] Range 14 make: "\n\n" (0, 0).
# [OK] Range 15 make: "\n\n" (1, 2).
# [OK] Range 16 make: "\nxxxx\nxxx...
# [OK] Range 17 make: "xxx\nxxxx\n...
# [OK] Range 18 make: "xxx\nxxxx\n...
# [OK] Range 19 make: "xxx\nxxxx\n...
# [OK] Range 20 make: "xxx\nxxxx\n...
# [OK] Range 21 make: "xxx\nxxxx\n...
# [OK] Range 22 make: "xxx\nxxxx\n...
# [OK] Range 23 make: "xxx\nxxxx\n...
# [OK] Range 24 make: "xxx\nxxxx\n...
# [OK] Translation_unit 0 parse_and_format s...
# [OK] Translation_unit 1 parse_and_format u...
# [OK] Translation_unit 2 parse_and_format c...
# [OK] Translation_unit 3 parse_and_format c...
# [OK] Translation_unit 4 parse_and_format c...
# [OK] Translation_unit 5 parse_and_format c...
# [OK] Translation_unit 6 parse_and_format c...
# [OK] Translation_unit 7 parse_and_format m...
# [OK] Translation_unit 8 parse_and_format m...
# [OK] Translation_unit 9 parse_and_format m...
# [OK] Translation_unit 10 parse_and_format m...
# [OK] Translation_unit 11 parse_and_format e...
# [OK] Translation_unit 12 numeric: empty buf...
# [OK] Translation_unit 13 numeric: last buff...
# [OK] Translation_unit 14 numeric: already f...
# [OK] Translation_unit 15 numeric: not alrea...
# [OK] Translation_unit 16 numeric: with pare...
# [OK] Translation_unit 17 numeric: split ove...
# [OK] Translation_unit 18 numeric: invalid f...
# [OK] Translation_unit 19 numeric: already f...
# [OK] Translation_unit 20 numeric: partial let.
# [OK] Translation_unit 21 numeric: fit on 1 ...
# [OK] Translation_unit 22 numeric (file): pa...
# [OK] Translation_unit 23 numeric (file): pa...
# [OK] Translation_unit 24 numeric (file): fo...
# [OK] Translation_unit 25 numeric (file): fo...
#
# Full test results in `~/.opam/4.14/.opam-switch/build/ocamlformat.0.24.1/_build/default/test/unit/_build/_tests/ocamlformat'.
# Test Successful in 0.030s. 249 tests run.
'opam reinstall --with-test --verbose ocamlformat.0.24.1' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose ocamlformat.0.24.1;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'ocamlformat.0.24.1' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-03-03 04:43.04: Job failed: Failed: Build failed
2026-03-03 04:43.04: Log analysis:
2026-03-03 04:43.04: >>>
[ERROR] The compilation of ocamlformat.0.24.1 failed at "dune build -p ocamlformat -j 255 @install @runtest".
(score = 20)
2026-03-03 04:43.04: >>>
[ERROR] The compilation of ocamlformat.0.24.1 failed at "dune build -p ocamlformat -j 255 @install @runtest".
(score = 20)
2026-03-03 04:43.04: The compilation of ocamlformat.0.24.1 failed at "dune build -p ocamlformat -j 255 @install @runtest".