(for PR #29402)
2026-02-16 02:23.12: New job: test shibboleth.0.0.5, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29402/head (2ddeadc17128da5d11a0827bd0757076bc84995b)
on debian-13-ocaml-4.14/arm64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29402/head" && git reset --hard 2ddeadc1
git fetch origin master
git merge --no-edit 66fe1c299d8a0fe922268a88a05ccf4bee097900
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e
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 shibboleth.0.0.5 0.0.5
RUN opam reinstall shibboleth.0.0.5; \
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" != 'shibboleth.0.0.5' && 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 shibboleth.0.0.5) || true
RUN opam reinstall --with-test --verbose shibboleth.0.0.5; \
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" != 'shibboleth.0.0.5' && 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-02-16 02:23.12: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e-shibboleth.0.0.5-2ddeadc17128da5d11a0827bd0757076bc84995b"
2026-02-16 02:23.12: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e)
(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 shibboleth.0.0.5 0.0.5"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall shibboleth.0.0.5;\
\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\" != 'shibboleth.0.0.5' && 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 shibboleth.0.0.5) || true"))
(run (shell "opam reinstall --with-test --verbose shibboleth.0.0.5;\
\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\" != 'shibboleth.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-16 02:23.12: Waiting for resource in pool OCluster
2026-02-16 02:23.12: Waiting for worker…
2026-02-16 02:23.12: Got resource from pool OCluster
Building on okypous.caelum.ci.dev
All commits already cached
Updating files: 78% (14244/18212)
Updating files: 79% (14388/18212)
Updating files: 80% (14570/18212)
Updating files: 81% (14752/18212)
Updating files: 82% (14934/18212)
Updating files: 83% (15116/18212)
Updating files: 84% (15299/18212)
Updating files: 85% (15481/18212)
Updating files: 86% (15663/18212)
Updating files: 87% (15845/18212)
Updating files: 88% (16027/18212)
Updating files: 89% (16209/18212)
Updating files: 90% (16391/18212)
Updating files: 91% (16573/18212)
Updating files: 92% (16756/18212)
Updating files: 93% (16938/18212)
Updating files: 94% (17120/18212)
Updating files: 95% (17302/18212)
Updating files: 96% (17484/18212)
Updating files: 97% (17666/18212)
Updating files: 98% (17848/18212)
Updating files: 99% (18030/18212)
Updating files: 100% (18212/18212)
Updating files: 100% (18212/18212), done.
HEAD is now at 66fe1c299d Merge pull request #29371 from edwintorok/release-lintcstubs-arity-0.5.0
Updating 66fe1c299d..2ddeadc171
Fast-forward
packages/shibboleth/shibboleth.0.0.5/opam | 57 +++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
create mode 100644 packages/shibboleth/shibboleth.0.0.5/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e' locally
docker.io/ocaml/opam@sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e: Pulling from ocaml/opam
1bd4defc8c5e: Pulling fs layer
0392a9b03762: Pulling fs layer
b22948f89819: Pulling fs layer
50d734b48f7f: Pulling fs layer
2177992334f7: Pulling fs layer
83c8cb383fef: Pulling fs layer
6ba4512d1f27: Pulling fs layer
3c7d30aed99f: Pulling fs layer
fb47c86320e8: Pulling fs layer
b72f50544b39: Pulling fs layer
48b83c8f6a56: Pulling fs layer
0392a9b03762: Download complete
b22948f89819: Download complete
b98d9c3ebd00: Pulling fs layer
6ba4512d1f27: Waiting
03343187894d: Pulling fs layer
2177992334f7: Download complete
9f5172efd37f: Pulling fs layer
b72f50544b39: Waiting
ae96ebb9601f: Pulling fs layer
3c7d30aed99f: Waiting
058dd2063dbc: Pulling fs layer
fb47c86320e8: Waiting
c35a072f823c: Pulling fs layer
b98d9c3ebd00: Waiting
9f5172efd37f: Waiting
03343187894d: Waiting
9bebec788ee7: Pulling fs layer
48b83c8f6a56: Waiting
058dd2063dbc: Waiting
452b69ff2588: Pulling fs layer
c35a072f823c: Waiting
ae96ebb9601f: Waiting
ec8490a65b44: Pulling fs layer
9bebec788ee7: Waiting
452b69ff2588: Waiting
664554f1f2bf: Pulling fs layer
4f4fb700ef54: Pulling fs layer
ec8490a65b44: Waiting
664554f1f2bf: Waiting
17f05a191d05: Pulling fs layer
4f4fb700ef54: Waiting
561e07df245a: Pulling fs layer
ee8ba93483b0: Pulling fs layer
17f05a191d05: Waiting
b0a45215a4bd: Pulling fs layer
561e07df245a: Waiting
089d08a29ab6: Pulling fs layer
ee8ba93483b0: Waiting
b0a45215a4bd: Waiting
c34e87301ab9: Pulling fs layer
089d08a29ab6: Waiting
97c48b419833: Pulling fs layer
d7d65197b0e7: Pulling fs layer
c34e87301ab9: Waiting
96ff79fa36d2: Pulling fs layer
97c48b419833: Waiting
b0c990537697: Pulling fs layer
d7d65197b0e7: Waiting
6490715e88f8: Pulling fs layer
96ff79fa36d2: Waiting
c8def43c265c: Pulling fs layer
b0c990537697: Waiting
6af0e0ea3ad2: Pulling fs layer
6490715e88f8: Waiting
5913635a0cc9: Pulling fs layer
c8def43c265c: Waiting
18ae542c4cd2: Pulling fs layer
f5663ae46d34: Pulling fs layer
6af0e0ea3ad2: Waiting
2de4a3385513: Pulling fs layer
5913635a0cc9: Waiting
30625ee7f894: Pulling fs layer
f5663ae46d34: Waiting
18ae542c4cd2: Waiting
79280a31b647: Pulling fs layer
2de4a3385513: Waiting
30625ee7f894: Waiting
1825132a5e0e: Pulling fs layer
79280a31b647: Waiting
3dc4f758fee9: Pulling fs layer
ad9eb07ed1c2: Pulling fs layer
1825132a5e0e: Waiting
ad9eb07ed1c2: Waiting
3dc4f758fee9: Waiting
83c8cb383fef: Download complete
6ba4512d1f27: Download complete
3c7d30aed99f: Verifying Checksum
3c7d30aed99f: Download complete
fb47c86320e8: Verifying Checksum
fb47c86320e8: Download complete
b72f50544b39: Download complete
48b83c8f6a56: Verifying Checksum
48b83c8f6a56: Download complete
b98d9c3ebd00: Verifying Checksum
b98d9c3ebd00: Download complete
03343187894d: Verifying Checksum
03343187894d: Download complete
9f5172efd37f: Verifying Checksum
9f5172efd37f: Download complete
ae96ebb9601f: Verifying Checksum
ae96ebb9601f: Download complete
058dd2063dbc: Verifying Checksum
058dd2063dbc: Download complete
c35a072f823c: Verifying Checksum
c35a072f823c: Download complete
50d734b48f7f: Verifying Checksum
50d734b48f7f: Download complete
9bebec788ee7: Download complete
ec8490a65b44: Download complete
664554f1f2bf: Verifying Checksum
664554f1f2bf: Download complete
452b69ff2588: Verifying Checksum
452b69ff2588: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
17f05a191d05: Verifying Checksum
17f05a191d05: Download complete
ee8ba93483b0: Verifying Checksum
ee8ba93483b0: Download complete
b0a45215a4bd: Verifying Checksum
b0a45215a4bd: Download complete
561e07df245a: Verifying Checksum
561e07df245a: Download complete
089d08a29ab6: Verifying Checksum
089d08a29ab6: Download complete
c34e87301ab9: Download complete
97c48b419833: Verifying Checksum
97c48b419833: Download complete
d7d65197b0e7: Verifying Checksum
d7d65197b0e7: Download complete
96ff79fa36d2: Verifying Checksum
96ff79fa36d2: Download complete
b0c990537697: Download complete
6490715e88f8: Download complete
c8def43c265c: Verifying Checksum
c8def43c265c: Download complete
5913635a0cc9: Download complete
18ae542c4cd2: Verifying Checksum
18ae542c4cd2: Download complete
f5663ae46d34: Verifying Checksum
f5663ae46d34: Download complete
6af0e0ea3ad2: Verifying Checksum
6af0e0ea3ad2: Download complete
2de4a3385513: Download complete
30625ee7f894: Verifying Checksum
30625ee7f894: Download complete
1bd4defc8c5e: Verifying Checksum
1bd4defc8c5e: Download complete
1bd4defc8c5e: Pull complete
0392a9b03762: Pull complete
b22948f89819: Pull complete
50d734b48f7f: Pull complete
2177992334f7: Pull complete
83c8cb383fef: Pull complete
6ba4512d1f27: Pull complete
3c7d30aed99f: Pull complete
fb47c86320e8: Pull complete
b72f50544b39: Pull complete
48b83c8f6a56: Pull complete
b98d9c3ebd00: Pull complete
03343187894d: Pull complete
9f5172efd37f: Pull complete
ae96ebb9601f: Pull complete
058dd2063dbc: Pull complete
c35a072f823c: Pull complete
9bebec788ee7: Pull complete
452b69ff2588: Pull complete
ec8490a65b44: Pull complete
664554f1f2bf: Pull complete
4f4fb700ef54: Pull complete
17f05a191d05: Pull complete
561e07df245a: Pull complete
ee8ba93483b0: Pull complete
b0a45215a4bd: Pull complete
089d08a29ab6: Pull complete
c34e87301ab9: Pull complete
97c48b419833: Pull complete
d7d65197b0e7: Pull complete
96ff79fa36d2: Pull complete
b0c990537697: Pull complete
6490715e88f8: Pull complete
c8def43c265c: Pull complete
6af0e0ea3ad2: Pull complete
5913635a0cc9: Pull complete
18ae542c4cd2: Pull complete
f5663ae46d34: Pull complete
2de4a3385513: Pull complete
30625ee7f894: Pull complete
79280a31b647: Verifying Checksum
79280a31b647: Download complete
1825132a5e0e: Verifying Checksum
1825132a5e0e: Download complete
3dc4f758fee9: Verifying Checksum
3dc4f758fee9: Download complete
ad9eb07ed1c2: Verifying Checksum
ad9eb07ed1c2: Download complete
79280a31b647: Pull complete
1825132a5e0e: Pull complete
3dc4f758fee9: Pull complete
ad9eb07ed1c2: Pull complete
Digest: sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e
Status: Downloaded newer image for ocaml/opam@sha256:a47688f873802e31de4ce2eaab316dec8c257971b7d8240f3dc6f52f49826c9e
2026-02-16 02:23.19 ---> using "8bfaea138c812392b5e96a932eec90483652ab6c300a96d2abcfe06ad746b8c1" 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-02-16 02:23.19 ---> using "347d2c5338287e0b1b772aa6faa835f2586df36131d8c842d34893be14f3dda1" 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
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-16 02:23.19 ---> using "628949aa91fbdfd1418ed4279d6570a717652e56e3e5a4764d5888c764325353" 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=arm64 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 79
# 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-02-16 02:23.19 ---> using "52fb2304d0fb0b61657240d724c54b435535c90e34b91d6cddc999eb8de06168" 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-02-16 02:23.19 ---> using "f3b3eb8f00e9fb7fbf8452db2ca6794b409783586d8e272ce2d24599a4bd48eb" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-16 02:23.24 ---> saved as "b5e9f0f862de814f4ad5b2bb7c73f13f499a190298de809cf19271184d9d3060"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-16 02:23.44 ---> saved as "7aeda7b9fc5db33d0b2daba4a6410ba886e2c79afc190f2dffb055703f30e06a"
/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 arm64 Packages [108 kB]
- Fetched 199 kB in 0s (1340 kB/s)
- Reading package lists...
2026-02-16 02:23.45 ---> saved as "95efa7b8105714a1e223b3c0ee9994ed8c0348e1fe137d3690a325aee85e0644"
/home/opam: (run (shell "opam pin add -k version -yn shibboleth.0.0.5 0.0.5"))
shibboleth is now pinned to version 0.0.5
2026-02-16 02:23.46 ---> saved as "47e0d90eb8614da04386e5a3bb488ce22027d76b3ef0b00c5669622a7a371ed1"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall shibboleth.0.0.5;\
\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\" != 'shibboleth.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
shibboleth.0.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 38 packages
- install astring 0.8.5 [required by bos]
- install base v0.16.4 [required by ppx_sexp_conv]
- install bos 0.2.1 [required by shibboleth]
- install cmdliner 2.1.0 [required by shibboleth]
- install containers 3.17 [required by shibboleth]
- install cppo 1.8.0 [required by ppx_deriving]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.1 [required by shibboleth]
- install dune-configurator 3.21.1 [required by containers]
- install either 1.0.0 [required by containers]
- install ez_file 0.3.0 [required by shibboleth]
- install fmt 0.11.0 [required by shibboleth]
- install fpath 0.7.3 [required by shibboleth]
- install logs 0.10.0 [required by bos]
- install menhir 20260209 [required by shibboleth]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by shibboleth]
- install menhirSdk 20260209 [required by menhir]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by bos]
- install ocamlfind 1.9.8 [required by bos, ppx_deriving]
- install ocplib_stuff 0.4.0 [required by ez_file]
- install parsexp v0.16.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by shibboleth]
- install ppx_import 1.12.0 [required by shibboleth]
- install ppx_sexp_conv v0.16.0 [required by shibboleth]
- install ppxlib 0.35.0 [required by shibboleth]
- install re 1.14.0 [required by shibboleth]
- install rresult 0.7.0 [required by bos]
- install sexplib v0.16.0 [required by shibboleth]
- install sexplib0 v0.16.0 [required by shibboleth]
- install shibboleth 0.0.5 (pinned)
- install stdlib-shims 0.3.0 [required by ppxlib]
- install topkg 1.1.1 [required by bos]
- install yojson 3.0.0 [required by shibboleth]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved containers.3.17 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved ez_file.0.3.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed cmdliner.2.1.0
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib_stuff.0.4.0 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_import.1.12.0 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved shibboleth.0.0.5 (https://github.com/wizard7377/sml-ocaml-converter/archive/refs/tags/v0.0.1.tar.gz)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed either.1.0.0
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ocplib_stuff.0.4.0
-> installed ez_file.0.3.0
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.16.0
-> installed containers.3.17
-> installed menhir.20260209
-> installed base.v0.16.4
-> installed ppxlib.0.35.0
-> installed ppx_import.1.12.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed shibboleth.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-16 02:24.45 ---> saved as "1e7fa790f921083ea3949c646007c4c2834d21f507a6e1e1353a829947afc37b"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test shibboleth.0.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile shibboleth 0.0.5 (pinned)
=== install 3 packages
- install alcotest 1.9.1 [required by shibboleth]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved shibboleth.0.0.5 (https://github.com/wizard7377/sml-ocaml-converter/archive/refs/tags/v0.0.1.tar.gz)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> removed shibboleth.0.0.5
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
[ERROR] The compilation of shibboleth.0.0.5 failed at "dune build -p shibboleth -j 79 @install @runtest".
#=== ERROR while compiling shibboleth.0.0.5 ===================================#
# context 2.5.0 | linux/arm64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/wizard7377/sml-ocaml-converter/archive/refs/tags/v0.0.1.tar.gz)
# path ~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p shibboleth -j 79 @install @runtest
# exit-code 1
# env-file ~/.opam/log/shibboleth-7-3821f5.env
# output-file ~/.opam/log/shibboleth-7-3821f5.out
### output ###
# File "lib/source/backend/dune", line 4, characters 1-15:
# 4 | (inline_tests)
# ^^^^^^^^^^^^^^
# Error: No inline tests backend found.
# (cd _build/.sandbox/d08cb7b3961cb05735f37d117a867e6d/default && /home/opam/.opam/4.14/bin/menhir --table --dump lib/source/frontend/parser.mly --base lib/source/frontend/parser --infer-write-query lib/source/frontend/parser__mock.ml.mock)
# File "lib/source/frontend/parser.mly", line 797, characters 0-12:
# Warning: symbol corespec_seq is unreachable from the start symbol.
# File "lib/source/frontend/parser.mly", line 545, characters 0-13:
# Warning: symbol kwcoredec_seq is unreachable from the start symbol.
# File "lib/source/frontend/parser.mly", line 539, characters 0-9:
# Warning: symbol kwdec_seq is unreachable from the start symbol.
# File "lib/source/frontend/parser.mly", line 791, characters 0-8:
# Warning: symbol spec_seq is unreachable from the start symbol.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/source/context/.context.objs/byte -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/re -I lib/common/.common.objs/byte -I lib/source/ast/.ast.objs/byte -intf-suffix .ml -no-alias-deps -open Context__ -o lib/source/context/.context.objs/byte/context__Get_context.cmo -c -impl lib/source/context/get_context.pp.ml)
# File "lib/source/context/get_context.ml", line 33, characters 8-14:
# 33 | | Some _ -> Some 1
# ^^^^^^
# Warning 11 [redundant-case]: this match case is unused.
# File "lib/source/context/get_context.ml", line 39, characters 8-12:
# 39 | let rest = match rest_opt with
# ^^^^
# Warning 26 [unused-var]: unused variable rest.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/source/backend/.backend.objs/byte -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/context/.context.objs/byte -intf-suffix .ml -no-alias-deps -open Backend__ -o lib/source/backend/.backend.objs/byte/backend__Process_names.cmo -c -impl lib/source/backend/process_names.pp.ml)
# File "lib/source/backend/process_names.ml", line 41, characters 19-41:
# 41 | assert (not @@ String.starts_with "(" @@ List.nth name 0);
# ^^^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 42, characters 19-39:
# 42 | assert (not @@ String.ends_with ")" @@ List.nth name (List.length name - 1));
# ^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 39, characters 24-45:
# 39 | method process_name ?(ctx : context = Empty) ~(name : string list) =
# ^^^^^^^^^^^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/.sandbox/8f7efa95c70c8f9538162ef44ee08268/default && /home/opam/.opam/4.14/bin/menhir --table --dump --explain lib/source/frontend/parser.mly --base lib/source/frontend/parser --infer-read-reply lib/source/frontend/parser__mock.mli.inferred)
# File "lib/source/frontend/parser.mly", line 116, characters 0-6:
# Warning: the precedence level assigned to AND is never useful.
# File "lib/source/frontend/parser.mly", line 126, characters 0-6:
# Warning: the precedence level assigned to ARROW is never useful.
# File "lib/source/frontend/parser.mly", line 129, characters 0-5:
# Warning: the precedence level assigned to COLON_GT is never useful.
# File "lib/source/frontend/parser.mly", line 127, characters 0-9:
# Warning: the precedence level assigned to EQUAL is never useful.
# Warning: 19 states have shift/reduce conflicts.
# Warning: 2 states have reduce/reduce conflicts.
# Warning: 98 shift/reduce conflicts were arbitrarily resolved.
# Warning: 3 reduce/reduce conflicts were arbitrarily resolved.
# File "lib/source/frontend/parser.mly", line 960, characters 2-12:
# Warning: production program_list -> program is never reduced.
# Warning: in total, 1 production is never reduced.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -bin-annot -I lib/cli/.cli.objs/byte -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/byte/cli__Cmd_common_options.cmo -c -impl lib/cli/cmd_common_options.ml)
# File "lib/cli/cmd_common_options.ml", line 24, characters 6-23:
# 24 | let process_names_doc : Arg.info = Arg.info ["process-names"] ~doc:"Conversion options for names" in
# ^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable process_names_doc.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -bin-annot -I lib/cli/.cli.objs/byte -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/byte/cli__Cmd_convert_file.cmo -c -impl lib/cli/cmd_convert_file.ml)
# File "lib/cli/cmd_convert_file.ml", line 6, characters 46-57:
# 6 | let convert_file ~(input_files:string list) ?(output_file:string option) ~(common_options:common_options) : int =
# ^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/file_tests/.file_tests.eobjs/byte -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/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -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/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.shibboleth.objs/byte -I lib/cli/.cli.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -no-alias-deps -open Dune__exe -o test/file_tests/.file_tests.eobjs/byte/dune__exe__Test_common.cmo -c -impl test/file_tests/test_common.ml)
# File "test/file_tests/test_common.ml", line 34, characters 6-22:
# 34 | let processed_actual = process actual in
# ^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_actual.
# File "test/file_tests/test_common.ml", line 35, characters 6-24:
# 35 | let processed_expected = process expected in
# ^^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_expected.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/re -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -intf-suffix .ml -no-alias-deps -open Context__ -o lib/source/context/.context.objs/native/context__Get_context.cmx -c -impl lib/source/context/get_context.pp.ml)
# File "lib/source/context/get_context.ml", line 33, characters 8-14:
# 33 | | Some _ -> Some 1
# ^^^^^^
# Warning 11 [redundant-case]: this match case is unused.
# File "lib/source/context/get_context.ml", line 39, characters 8-12:
# 39 | let rest = match rest_opt with
# ^^^^
# Warning 26 [unused-var]: unused variable rest.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -intf-suffix .ml -no-alias-deps -open Backend__ -o lib/source/backend/.backend.objs/native/backend__Process_names.cmx -c -impl lib/source/backend/process_names.pp.ml)
# File "lib/source/backend/process_names.ml", line 41, characters 19-41:
# 41 | assert (not @@ String.starts_with "(" @@ List.nth name 0);
# ^^^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 42, characters 19-39:
# 42 | assert (not @@ String.ends_with ")" @@ List.nth name (List.length name - 1));
# ^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 39, characters 24-45:
# 39 | method process_name ?(ctx : context = Empty) ~(name : string list) =
# ^^^^^^^^^^^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/native/cli__Cmd_common_options.cmx -c -impl lib/cli/cmd_common_options.ml)
# File "lib/cli/cmd_common_options.ml", line 24, characters 6-23:
# 24 | let process_names_doc : Arg.info = Arg.info ["process-names"] ~doc:"Conversion options for names" in
# ^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable process_names_doc.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/native/cli__Cmd_convert_file.cmx -c -impl lib/cli/cmd_convert_file.ml)
# File "lib/cli/cmd_convert_file.ml", line 6, characters 46-57:
# 6 | let convert_file ~(input_files:string list) ?(output_file:string option) ~(common_options:common_options) : int =
# ^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/file_tests/.file_tests.eobjs/byte -I test/file_tests/.file_tests.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/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -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/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/file_tests/.file_tests.eobjs/native/dune__exe__Test_common.cmx -c -impl test/file_tests/test_common.ml)
# File "test/file_tests/test_common.ml", line 34, characters 6-22:
# 34 | let processed_actual = process actual in
# ^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_actual.
# File "test/file_tests/test_common.ml", line 35, characters 6-24:
# 35 | let processed_expected = process expected in
# ^^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_expected.
# (cd _build/default/test/unit_tests && ./unit_tests.exe)
# Testing `Backend'.
# This run has ID `77SS2RGV'.
#
# [OK] Constant Processing 0 positive intege...
# [OK] Constant Processing 1 negative intege...
# [OK] Constant Processing 2 hexadecimal int...
# [OK] Constant Processing 3 word constant (...
# [OK] Constant Processing 4 word constant (...
# [OK] Constant Processing 5 positive float ...
# [OK] Constant Processing 6 negative float ...
# [OK] Constant Processing 7 character const...
# [OK] Constant Processing 8 string constant.
# [OK] Type Processing 0 process type va...
# [OK] Type Processing 1 process equalit...
# [OK] Type Processing 2 process simple ...
# [OK] Type Processing 3 process type co...
# [OK] Type Processing 4 process type co...
# [OK] Type Processing 5 process parenth...
# [OK] Type Processing 6 process functio...
# [OK] Type Processing 7 process nested ...
# [OK] Type Processing 8 process tuple t...
# [OK] Type Processing 9 process tuple t...
# [OK] Type Processing 10 process record ...
# [OK] Type Processing 11 process record ...
# [OK] Type Processing 12 process_type wr...
# [OK] Object Field Processing 0 process single ...
# [OK] Object Field Processing 1 process multipl...
# [OK] Expression Processing 0 identifier expr...
# [OK] Expression Processing 1 function applic...
# [OK] Expression Processing 2 infix application.
# [OK] Expression Processing 3 constant expres...
# [OK] Expression Processing 4 unit expression...
# [OK] Expression Processing 5 tuple expression.
# [OK] Expression Processing 6 record expression.
# [OK] Expression Processing 7 record selector...
# [OK] Expression Processing 8 empty list expr...
# [OK] Expression Processing 9 list expression.
# [OK] Expression Processing 10 sequence expres...
# [OK] Expression Processing 11 let expression.
# [OK] Expression Processing 12 typed expression.
# [OK] Expression Processing 13 raise expression.
# [OK] Expression Processing 14 andalso express...
# [OK] Expression Processing 15 orelse expressi...
# [OK] Expression Processing 16 if expression.
# [OK] Expression Processing 17 while expression.
# [OK] Expression Processing 18 case expression.
# [OK] Expression Processing 19 fn expression (...
# [OK] Pattern Processing 0 constant pattern.
# [OK] Pattern Processing 1 wildcard pattern.
# [OK] Pattern Processing 2 variable pattern.
# [OK] Pattern Processing 3 nullary constru...
# [OK] Pattern Processing 4 constructor pat...
# [OK] Pattern Processing 5 infix construct...
# [OK] Pattern Processing 6 unit pattern (e...
# [OK] Pattern Processing 7 tuple pattern.
# [OK] Pattern Processing 8 record pattern.
# [OK] Pattern Processing 9 record pattern ...
# [OK] Pattern Processing 10 empty list patt...
# [OK] Pattern Processing 11 list pattern.
# [OK] Pattern Processing 12 typed pattern.
# [OK] Pattern Processing 13 as pattern (lay...
# [OK] Declaration Processing 0 simple value bi...
# [OK] Declaration Processing 1 multiple value ...
# [OK] Declaration Processing 2 simple function...
# [OK] Declaration Processing 3 function with p...
# [OK] Declaration Processing 4 simple type abb...
# [OK] Declaration Processing 5 parametric type...
# [OK] Declaration Processing 6 simple datatype...
# [OK] Declaration Processing 7 option datatype...
# [OK] Declaration Processing 8 simple exceptio...
# [OK] Declaration Processing 9 exception with ...
# [OK] Program Processing 0 simple program ...
# [OK] Program Processing 1 program with fu...
# [OK] Program Processing 2 program with da...
# [OK] Program Processing 3 program with se...
# [OK] Complex Type Processing 0 process complex...
# [OK] Complex Type Processing 1 process list ty...
# [OK] Complex Type Processing 2 process higher-...
# [OK] Pattern Matching (AST Structure) 0 lambda has corr...
# [OK] Pattern Matching (AST Structure) 1 let binding has...
# [OK] Pattern Matching (AST Structure) 2 function applic...
# [OK] Pattern Matching (AST Structure) 3 case expression...
# [OK] Pattern Matching (AST Structure) 4 if expression h...
# [OK] Pattern Matching (AST Structure) 5 tuple expressio...
# [OK] Pattern Matching (AST Structure) 6 record expressi...
# [OK] Pattern Matching (AST Structure) 7 list expression...
# [OK] Pattern Matching (AST Structure) 8 empty list has ...
# [OK] Pattern Matching (AST Structure) 9 sequence expres...
# [OK] Pattern Matching (AST Structure) 10 typed expressio...
# [OK] Pattern Matching (AST Structure) 11 wildcard patter...
# [OK] Pattern Matching (AST Structure) 12 variable patter...
# [OK] Pattern Matching (AST Structure) 13 tuple pattern h...
# [OK] Pattern Matching (AST Structure) 14 list pattern ha...
# [OK] Pattern Matching (AST Structure) 15 constant patter...
# [OK] Pattern Matching (AST Structure) 16 constructor pat...
# [OK] Pattern Matching (AST Structure) 17 function type h...
# [OK] Pattern Matching (AST Structure) 18 tuple type has ...
# [OK] Pattern Matching (AST Structure) 19 type constructo...
# [OK] Pattern Matching (AST Structure) 20 parametric type...
# [OK] Pattern Matching (AST Structure) 21 type variable h...
# [OK] Pattern Matching (AST Structure) 22 object type has...
# [OK] Pattern Matching (AST Structure) 23 val declaration...
# [OK] Pattern Matching (AST Structure) 24 fun declaration...
# [OK] Pattern Matching (AST Structure) 25 datatype declar...
# [OK] Pattern Matching (AST Structure) 26 exception decla...
#
# Full test results in `~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5/_build/default/test/unit_tests/_build/_tests/Backend'.
# Test Successful in 0.010s. 102 tests run.
# (cd _build/default/test/file_tests && ./file_tests.exe)
# Testing `File_Tests'.
# This run has ID `W6UMTZ57'.
#
# [OK] Functor_Index 0 TEST 1.
# [OK] Structure_Functions 0 TEST 1.
# [OK] ModeSyn_Datatypes 0 ModeSyn - Datatypes and Patt...
# [OK] Data_Refs 0 Data - Simple Structure with...
# [OK] TimeLimit_Exception 0 TimeLimit - Exception and La...
# [OK] ArraySlice_Types 0 ArraySlice - Type Alias and ...
# [OK] SigINT_Let 0 SigINT - Simple Let Expression.
# [OK] Domains_Functors 0 Domains - Functor Applications.
# [OK] Index_Functors 0 Index - Functor with Multipl...
# [OK] TabledSyn_Functor 0 TabledSyn - Functor Applicat...
# [OK] Flit_Large_Functor 0 Flit - Large Functor Applica...
# [OK] Origins_Functor 0 Origins - Functor Application.
# [OK] ModSyn_Complex 0 ModSyn - Complex Functor App...
# [OK] Weaken_Local 0 Weaken - Functor with Local ...
# [OK] Compat_Functor 0 Compat - Functor with Many S...
# [OK] Order_Functor 0 Order - Functor Application ...
# [OK] StyleCheck_Functor 0 StyleCheck - Functor Applica...
# [OK] Server_Patterns 0 Server - Complex Pattern Mat...
# [OK] Fixity_Datatypes 0 Fixity - Nested Datatypes an...
# [OK] Qid_Strings 0 Qid - Datatype and String Op...
# [OK] Split_Local_Refs 0 Split - Local with Ref Lists.
# [OK] EVar_Nested_Let 0 EVar - Nested Let and Patter...
# [OK] Limit_Options 0 Limit - Option Pattern Match...
#
# Full test results in `~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5/_build/default/test/file_tests/_build/_tests/File_Tests'.
# Test Successful in 0.007s. 23 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build shibboleth 0.0.5
+-
+- The following changes have been performed
| - remove shibboleth 0.0.5
| - install alcotest 1.9.1
| - install ocaml-syntax-shims 1.0.0
| - install uutf 1.0.4
+-
# 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-20260216022446.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-02-16 02:25.03 ---> saved as "0c13829e3ef791927506e376a10b0d5980fb2d8209d6e30364b7133749b69542"
/home/opam: (run (shell "opam reinstall --with-test --verbose shibboleth.0.0.5;\
\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\" != 'shibboleth.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
shibboleth.0.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install shibboleth 0.0.5 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [shibboleth.0.0.5: extract]
-> retrieved shibboleth.0.0.5 (cached)
Processing 2/3: [shibboleth: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "shibboleth" "-j" "79" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/shibboleth.0.0.5)
- File "lib/source/backend/dune", line 4, characters 1-15:
- 4 | (inline_tests)
- ^^^^^^^^^^^^^^
- Error: No inline tests backend found.
- (cd _build/.sandbox/d08cb7b3961cb05735f37d117a867e6d/default && /home/opam/.opam/4.14/bin/menhir --table --dump lib/source/frontend/parser.mly --base lib/source/frontend/parser --infer-write-query lib/source/frontend/parser__mock.ml.mock)
- File "lib/source/frontend/parser.mly", line 797, characters 0-12:
- Warning: symbol corespec_seq is unreachable from the start symbol.
- File "lib/source/frontend/parser.mly", line 545, characters 0-13:
- Warning: symbol kwcoredec_seq is unreachable from the start symbol.
- File "lib/source/frontend/parser.mly", line 539, characters 0-9:
- Warning: symbol kwdec_seq is unreachable from the start symbol.
- File "lib/source/frontend/parser.mly", line 791, characters 0-8:
- Warning: symbol spec_seq is unreachable from the start symbol.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/source/context/.context.objs/byte -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/re -I lib/common/.common.objs/byte -I lib/source/ast/.ast.objs/byte -intf-suffix .ml -no-alias-deps -open Context__ -o lib/source/context/.context.objs/byte/context__Get_context.cmo -c -impl lib/source/context/get_context.pp.ml)
- File "lib/source/context/get_context.ml", line 33, characters 8-14:
- 33 | | Some _ -> Some 1
- ^^^^^^
- Warning 11 [redundant-case]: this match case is unused.
- File "lib/source/context/get_context.ml", line 39, characters 8-12:
- 39 | let rest = match rest_opt with
- ^^^^
- Warning 26 [unused-var]: unused variable rest.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/source/backend/.backend.objs/byte -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/context/.context.objs/byte -intf-suffix .ml -no-alias-deps -open Backend__ -o lib/source/backend/.backend.objs/byte/backend__Process_names.cmo -c -impl lib/source/backend/process_names.pp.ml)
- File "lib/source/backend/process_names.ml", line 41, characters 19-41:
- 41 | assert (not @@ String.starts_with "(" @@ List.nth name 0);
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "lib/source/backend/process_names.ml", line 42, characters 19-39:
- 42 | assert (not @@ String.ends_with ")" @@ List.nth name (List.length name - 1));
- ^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "lib/source/backend/process_names.ml", line 39, characters 24-45:
- 39 | method process_name ?(ctx : context = Empty) ~(name : string list) =
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/.sandbox/8f7efa95c70c8f9538162ef44ee08268/default && /home/opam/.opam/4.14/bin/menhir --table --dump --explain lib/source/frontend/parser.mly --base lib/source/frontend/parser --infer-read-reply lib/source/frontend/parser__mock.mli.inferred)
- File "lib/source/frontend/parser.mly", line 116, characters 0-6:
- Warning: the precedence level assigned to AND is never useful.
- File "lib/source/frontend/parser.mly", line 126, characters 0-6:
- Warning: the precedence level assigned to ARROW is never useful.
- File "lib/source/frontend/parser.mly", line 129, characters 0-5:
- Warning: the precedence level assigned to COLON_GT is never useful.
- File "lib/source/frontend/parser.mly", line 127, characters 0-9:
- Warning: the precedence level assigned to EQUAL is never useful.
- Warning: 19 states have shift/reduce conflicts.
- Warning: 2 states have reduce/reduce conflicts.
- Warning: 98 shift/reduce conflicts were arbitrarily resolved.
- Warning: 3 reduce/reduce conflicts were arbitrarily resolved.
- File "lib/source/frontend/parser.mly", line 960, characters 2-12:
- Warning: production program_list -> program is never reduced.
- Warning: in total, 1 production is never reduced.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -bin-annot -I lib/cli/.cli.objs/byte -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/byte/cli__Cmd_common_options.cmo -c -impl lib/cli/cmd_common_options.ml)
- File "lib/cli/cmd_common_options.ml", line 24, characters 6-23:
- 24 | let process_names_doc : Arg.info = Arg.info ["process-names"] ~doc:"Conversion options for names" in
- ^^^^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable process_names_doc.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -bin-annot -I lib/cli/.cli.objs/byte -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/byte/cli__Cmd_convert_file.cmo -c -impl lib/cli/cmd_convert_file.ml)
- File "lib/cli/cmd_convert_file.ml", line 6, characters 46-57:
- 6 | let convert_file ~(input_files:string list) ?(output_file:string option) ~(common_options:common_options) : int =
- ^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/file_tests/.file_tests.eobjs/byte -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/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -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/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.shibboleth.objs/byte -I lib/cli/.cli.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -no-alias-deps -open Dune__exe -o test/file_tests/.file_tests.eobjs/byte/dune__exe__Test_common.cmo -c -impl test/file_tests/test_common.ml)
- File "test/file_tests/test_common.ml", line 34, characters 6-22:
- 34 | let processed_actual = process actual in
- ^^^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable processed_actual.
- File "test/file_tests/test_common.ml", line 35, characters 6-24:
- 35 | let processed_expected = process expected in
- ^^^^^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable processed_expected.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/re -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -intf-suffix .ml -no-alias-deps -open Context__ -o lib/source/context/.context.objs/native/context__Get_context.cmx -c -impl lib/source/context/get_context.pp.ml)
- File "lib/source/context/get_context.ml", line 33, characters 8-14:
- 33 | | Some _ -> Some 1
- ^^^^^^
- Warning 11 [redundant-case]: this match case is unused.
- File "lib/source/context/get_context.ml", line 39, characters 8-12:
- 39 | let rest = match rest_opt with
- ^^^^
- Warning 26 [unused-var]: unused variable rest.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -intf-suffix .ml -no-alias-deps -open Backend__ -o lib/source/backend/.backend.objs/native/backend__Process_names.cmx -c -impl lib/source/backend/process_names.pp.ml)
- File "lib/source/backend/process_names.ml", line 41, characters 19-41:
- 41 | assert (not @@ String.starts_with "(" @@ List.nth name 0);
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
- File "lib/source/backend/process_names.ml", line 42, characters 19-39:
- 42 | assert (not @@ String.ends_with ")" @@ List.nth name (List.length name - 1));
- ^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
- File "lib/source/backend/process_names.ml", line 39, characters 24-45:
- 39 | method process_name ?(ctx : context = Empty) ~(name : string list) =
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/native/cli__Cmd_common_options.cmx -c -impl lib/cli/cmd_common_options.ml)
- File "lib/cli/cmd_common_options.ml", line 24, characters 6-23:
- 24 | let process_names_doc : Arg.info = Arg.info ["process-names"] ~doc:"Conversion options for names" in
- ^^^^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable process_names_doc.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/native/cli__Cmd_convert_file.cmx -c -impl lib/cli/cmd_convert_file.ml)
- File "lib/cli/cmd_convert_file.ml", line 6, characters 46-57:
- 6 | let convert_file ~(input_files:string list) ?(output_file:string option) ~(common_options:common_options) : int =
- ^^^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/file_tests/.file_tests.eobjs/byte -I test/file_tests/.file_tests.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/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -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/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/file_tests/.file_tests.eobjs/native/dune__exe__Test_common.cmx -c -impl test/file_tests/test_common.ml)
- File "test/file_tests/test_common.ml", line 34, characters 6-22:
- 34 | let processed_actual = process actual in
- ^^^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable processed_actual.
- File "test/file_tests/test_common.ml", line 35, characters 6-24:
- 35 | let processed_expected = process expected in
- ^^^^^^^^^^^^^^^^^^
- Warning 26 [unused-var]: unused variable processed_expected.
- (cd _build/default/test/unit_tests && ./unit_tests.exe)
- Testing `Backend'.
- This run has ID `B7E5O2QF'.
-
- [OK] Constant Processing 0 positive intege...
- [OK] Constant Processing 1 negative intege...
- [OK] Constant Processing 2 hexadecimal int...
- [OK] Constant Processing 3 word constant (...
- [OK] Constant Processing 4 word constant (...
- [OK] Constant Processing 5 positive float ...
- [OK] Constant Processing 6 negative float ...
- [OK] Constant Processing 7 character const...
- [OK] Constant Processing 8 string constant.
- [OK] Type Processing 0 process type va...
- [OK] Type Processing 1 process equalit...
- [OK] Type Processing 2 process simple ...
- [OK] Type Processing 3 process type co...
- [OK] Type Processing 4 process type co...
- [OK] Type Processing 5 process parenth...
- [OK] Type Processing 6 process functio...
- [OK] Type Processing 7 process nested ...
- [OK] Type Processing 8 process tuple t...
- [OK] Type Processing 9 process tuple t...
- [OK] Type Processing 10 process record ...
- [OK] Type Processing 11 process record ...
- [OK] Type Processing 12 process_type wr...
- [OK] Object Field Processing 0 process single ...
- [OK] Object Field Processing 1 process multipl...
- [OK] Expression Processing 0 identifier expr...
- [OK] Expression Processing 1 function applic...
- [OK] Expression Processing 2 infix application.
- [OK] Expression Processing 3 constant expres...
- [OK] Expression Processing 4 unit expression...
- [OK] Expression Processing 5 tuple expression.
- [OK] Expression Processing 6 record expression.
- [OK] Expression Processing 7 record selector...
- [OK] Expression Processing 8 empty list expr...
- [OK] Expression Processing 9 list expression.
- [OK] Expression Processing 10 sequence expres...
- [OK] Expression Processing 11 let expression.
- [OK] Expression Processing 12 typed expression.
- [OK] Expression Processing 13 raise expression.
- [OK] Expression Processing 14 andalso express...
- [OK] Expression Processing 15 orelse expressi...
- [OK] Expression Processing 16 if expression.
- [OK] Expression Processing 17 while expression.
- [OK] Expression Processing 18 case expression.
- [OK] Expression Processing 19 fn expression (...
- [OK] Pattern Processing 0 constant pattern.
- [OK] Pattern Processing 1 wildcard pattern.
- [OK] Pattern Processing 2 variable pattern.
- [OK] Pattern Processing 3 nullary constru...
- [OK] Pattern Processing 4 constructor pat...
- [OK] Pattern Processing 5 infix construct...
- [OK] Pattern Processing 6 unit pattern (e...
- [OK] Pattern Processing 7 tuple pattern.
- [OK] Pattern Processing 8 record pattern.
- [OK] Pattern Processing 9 record pattern ...
- [OK] Pattern Processing 10 empty list patt...
- [OK] Pattern Processing 11 list pattern.
- [OK] Pattern Processing 12 typed pattern.
- [OK] Pattern Processing 13 as pattern (lay...
- [OK] Declaration Processing 0 simple value bi...
- [OK] Declaration Processing 1 multiple value ...
- [OK] Declaration Processing 2 simple function...
- [OK] Declaration Processing 3 function with p...
- [OK] Declaration Processing 4 simple type abb...
- [OK] Declaration Processing 5 parametric type...
- [OK] Declaration Processing 6 simple datatype...
- [OK] Declaration Processing 7 option datatype...
- [OK] Declaration Processing 8 simple exceptio...
- [OK] Declaration Processing 9 exception with ...
- [OK] Program Processing 0 simple program ...
- [OK] Program Processing 1 program with fu...
- [OK] Program Processing 2 program with da...
- [OK] Program Processing 3 program with se...
- [OK] Complex Type Processing 0 process complex...
- [OK] Complex Type Processing 1 process list ty...
- [OK] Complex Type Processing 2 process higher-...
- [OK] Pattern Matching (AST Structure) 0 lambda has corr...
- [OK] Pattern Matching (AST Structure) 1 let binding has...
- [OK] Pattern Matching (AST Structure) 2 function applic...
- [OK] Pattern Matching (AST Structure) 3 case expression...
- [OK] Pattern Matching (AST Structure) 4 if expression h...
- [OK] Pattern Matching (AST Structure) 5 tuple expressio...
- [OK] Pattern Matching (AST Structure) 6 record expressi...
- [OK] Pattern Matching (AST Structure) 7 list expression...
- [OK] Pattern Matching (AST Structure) 8 empty list has ...
- [OK] Pattern Matching (AST Structure) 9 sequence expres...
- [OK] Pattern Matching (AST Structure) 10 typed expressio...
- [OK] Pattern Matching (AST Structure) 11 wildcard patter...
- [OK] Pattern Matching (AST Structure) 12 variable patter...
- [OK] Pattern Matching (AST Structure) 13 tuple pattern h...
- [OK] Pattern Matching (AST Structure) 14 list pattern ha...
- [OK] Pattern Matching (AST Structure) 15 constant patter...
- [OK] Pattern Matching (AST Structure) 16 constructor pat...
- [OK] Pattern Matching (AST Structure) 17 function type h...
- [OK] Pattern Matching (AST Structure) 18 tuple type has ...
- [OK] Pattern Matching (AST Structure) 19 type constructo...
- [OK] Pattern Matching (AST Structure) 20 parametric type...
- [OK] Pattern Matching (AST Structure) 21 type variable h...
- [OK] Pattern Matching (AST Structure) 22 object type has...
- [OK] Pattern Matching (AST Structure) 23 val declaration...
- [OK] Pattern Matching (AST Structure) 24 fun declaration...
- [OK] Pattern Matching (AST Structure) 25 datatype declar...
- [OK] Pattern Matching (AST Structure) 26 exception decla...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5/_build/default/test/unit_tests/_build/_tests/Backend'.
- Test Successful in 0.007s. 102 tests run.
- (cd _build/default/test/file_tests && ./file_tests.exe)
- Testing `File_Tests'.
- This run has ID `CQLLL7AN'.
-
- [OK] Functor_Index 0 TEST 1.
- [OK] Structure_Functions 0 TEST 1.
- [OK] ModeSyn_Datatypes 0 ModeSyn - Datatypes and Patt...
- [OK] Data_Refs 0 Data - Simple Structure with...
- [OK] TimeLimit_Exception 0 TimeLimit - Exception and La...
- [OK] ArraySlice_Types 0 ArraySlice - Type Alias and ...
- [OK] SigINT_Let 0 SigINT - Simple Let Expression.
- [OK] Domains_Functors 0 Domains - Functor Applications.
- [OK] Index_Functors 0 Index - Functor with Multipl...
- [OK] TabledSyn_Functor 0 TabledSyn - Functor Applicat...
- [OK] Flit_Large_Functor 0 Flit - Large Functor Applica...
- [OK] Origins_Functor 0 Origins - Functor Application.
- [OK] ModSyn_Complex 0 ModSyn - Complex Functor App...
- [OK] Weaken_Local 0 Weaken - Functor with Local ...
- [OK] Compat_Functor 0 Compat - Functor with Many S...
- [OK] Order_Functor 0 Order - Functor Application ...
- [OK] StyleCheck_Functor 0 StyleCheck - Functor Applica...
- [OK] Server_Patterns 0 Server - Complex Pattern Mat...
- [OK] Fixity_Datatypes 0 Fixity - Nested Datatypes an...
- [OK] Qid_Strings 0 Qid - Datatype and String Op...
- [OK] Split_Local_Refs 0 Split - Local with Ref Lists.
- [OK] EVar_Nested_Let 0 EVar - Nested Let and Patter...
- [OK] Limit_Options 0 Limit - Option Pattern Match...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5/_build/default/test/file_tests/_build/_tests/File_Tests'.
- Test Successful in 0.007s. 23 tests run.
[ERROR] The compilation of shibboleth.0.0.5 failed at "dune build -p shibboleth -j 79 @install @runtest".
#=== ERROR while compiling shibboleth.0.0.5 ===================================#
# context 2.5.0 | linux/arm64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/wizard7377/sml-ocaml-converter/archive/refs/tags/v0.0.1.tar.gz)
# path ~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p shibboleth -j 79 @install @runtest
# exit-code 1
# env-file ~/.opam/log/shibboleth-7-330861.env
# output-file ~/.opam/log/shibboleth-7-330861.out
### output ###
# File "lib/source/backend/dune", line 4, characters 1-15:
# 4 | (inline_tests)
# ^^^^^^^^^^^^^^
# Error: No inline tests backend found.
# (cd _build/.sandbox/d08cb7b3961cb05735f37d117a867e6d/default && /home/opam/.opam/4.14/bin/menhir --table --dump lib/source/frontend/parser.mly --base lib/source/frontend/parser --infer-write-query lib/source/frontend/parser__mock.ml.mock)
# File "lib/source/frontend/parser.mly", line 797, characters 0-12:
# Warning: symbol corespec_seq is unreachable from the start symbol.
# File "lib/source/frontend/parser.mly", line 545, characters 0-13:
# Warning: symbol kwcoredec_seq is unreachable from the start symbol.
# File "lib/source/frontend/parser.mly", line 539, characters 0-9:
# Warning: symbol kwdec_seq is unreachable from the start symbol.
# File "lib/source/frontend/parser.mly", line 791, characters 0-8:
# Warning: symbol spec_seq is unreachable from the start symbol.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/source/context/.context.objs/byte -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/re -I lib/common/.common.objs/byte -I lib/source/ast/.ast.objs/byte -intf-suffix .ml -no-alias-deps -open Context__ -o lib/source/context/.context.objs/byte/context__Get_context.cmo -c -impl lib/source/context/get_context.pp.ml)
# File "lib/source/context/get_context.ml", line 33, characters 8-14:
# 33 | | Some _ -> Some 1
# ^^^^^^
# Warning 11 [redundant-case]: this match case is unused.
# File "lib/source/context/get_context.ml", line 39, characters 8-12:
# 39 | let rest = match rest_opt with
# ^^^^
# Warning 26 [unused-var]: unused variable rest.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/source/backend/.backend.objs/byte -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/context/.context.objs/byte -intf-suffix .ml -no-alias-deps -open Backend__ -o lib/source/backend/.backend.objs/byte/backend__Process_names.cmo -c -impl lib/source/backend/process_names.pp.ml)
# File "lib/source/backend/process_names.ml", line 41, characters 19-41:
# 41 | assert (not @@ String.starts_with "(" @@ List.nth name 0);
# ^^^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 42, characters 19-39:
# 42 | assert (not @@ String.ends_with ")" @@ List.nth name (List.length name - 1));
# ^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 39, characters 24-45:
# 39 | method process_name ?(ctx : context = Empty) ~(name : string list) =
# ^^^^^^^^^^^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/.sandbox/8f7efa95c70c8f9538162ef44ee08268/default && /home/opam/.opam/4.14/bin/menhir --table --dump --explain lib/source/frontend/parser.mly --base lib/source/frontend/parser --infer-read-reply lib/source/frontend/parser__mock.mli.inferred)
# File "lib/source/frontend/parser.mly", line 116, characters 0-6:
# Warning: the precedence level assigned to AND is never useful.
# File "lib/source/frontend/parser.mly", line 126, characters 0-6:
# Warning: the precedence level assigned to ARROW is never useful.
# File "lib/source/frontend/parser.mly", line 129, characters 0-5:
# Warning: the precedence level assigned to COLON_GT is never useful.
# File "lib/source/frontend/parser.mly", line 127, characters 0-9:
# Warning: the precedence level assigned to EQUAL is never useful.
# Warning: 19 states have shift/reduce conflicts.
# Warning: 2 states have reduce/reduce conflicts.
# Warning: 98 shift/reduce conflicts were arbitrarily resolved.
# Warning: 3 reduce/reduce conflicts were arbitrarily resolved.
# File "lib/source/frontend/parser.mly", line 960, characters 2-12:
# Warning: production program_list -> program is never reduced.
# Warning: in total, 1 production is never reduced.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -bin-annot -I lib/cli/.cli.objs/byte -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/byte/cli__Cmd_common_options.cmo -c -impl lib/cli/cmd_common_options.ml)
# File "lib/cli/cmd_common_options.ml", line 24, characters 6-23:
# 24 | let process_names_doc : Arg.info = Arg.info ["process-names"] ~doc:"Conversion options for names" in
# ^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable process_names_doc.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -bin-annot -I lib/cli/.cli.objs/byte -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/byte/cli__Cmd_convert_file.cmo -c -impl lib/cli/cmd_convert_file.ml)
# File "lib/cli/cmd_convert_file.ml", line 6, characters 46-57:
# 6 | let convert_file ~(input_files:string list) ?(output_file:string option) ~(common_options:common_options) : int =
# ^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/file_tests/.file_tests.eobjs/byte -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/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -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/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.shibboleth.objs/byte -I lib/cli/.cli.objs/byte -I lib/common/.common.objs/byte -I lib/helpers/.helpers.objs/byte -I lib/process/.process.objs/byte -I lib/source/ast/.ast.objs/byte -I lib/source/backend/.backend.objs/byte -I lib/source/context/.context.objs/byte -I lib/source/frontend/.frontend.objs/byte -no-alias-deps -open Dune__exe -o test/file_tests/.file_tests.eobjs/byte/dune__exe__Test_common.cmo -c -impl test/file_tests/test_common.ml)
# File "test/file_tests/test_common.ml", line 34, characters 6-22:
# 34 | let processed_actual = process actual in
# ^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_actual.
# File "test/file_tests/test_common.ml", line 35, characters 6-24:
# 35 | let processed_expected = process expected in
# ^^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_expected.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/re -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -intf-suffix .ml -no-alias-deps -open Context__ -o lib/source/context/.context.objs/native/context__Get_context.cmx -c -impl lib/source/context/get_context.pp.ml)
# File "lib/source/context/get_context.ml", line 33, characters 8-14:
# 33 | | Some _ -> Some 1
# ^^^^^^
# Warning 11 [redundant-case]: this match case is unused.
# File "lib/source/context/get_context.ml", line 39, characters 8-12:
# 39 | let rest = match rest_opt with
# ^^^^
# Warning 26 [unused-var]: unused variable rest.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -intf-suffix .ml -no-alias-deps -open Backend__ -o lib/source/backend/.backend.objs/native/backend__Process_names.cmx -c -impl lib/source/backend/process_names.pp.ml)
# File "lib/source/backend/process_names.ml", line 41, characters 19-41:
# 41 | assert (not @@ String.starts_with "(" @@ List.nth name 0);
# ^^^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label prefix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 42, characters 19-39:
# 42 | assert (not @@ String.ends_with ")" @@ List.nth name (List.length name - 1));
# ^^^^^^^^^^^^^^^^^^^^
# Warning 6 [labels-omitted]: label suffix was omitted in the application of this function.
# File "lib/source/backend/process_names.ml", line 39, characters 24-45:
# 39 | method process_name ?(ctx : context = Empty) ~(name : string list) =
# ^^^^^^^^^^^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/native/cli__Cmd_common_options.cmx -c -impl lib/cli/cmd_common_options.ml)
# File "lib/cli/cmd_common_options.ml", line 24, characters 6-23:
# 24 | let process_names_doc : Arg.info = Arg.info ["process-names"] ~doc:"Conversion options for names" in
# ^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable process_names_doc.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -ppx '.ppx/089e7551ad08415df9c73ab565953db1/ppx.exe --as-ppx --cookie '\''library-name="cli"'\''' -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -I /home/opam/.opam/4.14/lib/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Cli__ -o lib/cli/.cli.objs/native/cli__Cmd_convert_file.cmx -c -impl lib/cli/cmd_convert_file.ml)
# File "lib/cli/cmd_convert_file.ml", line 6, characters 46-57:
# 6 | let convert_file ~(input_files:string list) ?(output_file:string option) ~(common_options:common_options) : int =
# ^^^^^^^^^^^
# Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
# (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/file_tests/.file_tests.eobjs/byte -I test/file_tests/.file_tests.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/cmdliner -I /home/opam/.opam/4.14/lib/ez_file -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/menhirLib -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocplib_stuff -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_deriving -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_import -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I lib/.shibboleth.objs/byte -I lib/.shibboleth.objs/native -I lib/cli/.cli.objs/byte -I lib/cli/.cli.objs/native -I lib/common/.common.objs/byte -I lib/common/.common.objs/native -I lib/helpers/.helpers.objs/byte -I lib/helpers/.helpers.objs/native -I lib/process/.process.objs/byte -I lib/process/.process.objs/native -I lib/source/ast/.ast.objs/byte -I lib/source/ast/.ast.objs/native -I lib/source/backend/.backend.objs/byte -I lib/source/backend/.backend.objs/native -I lib/source/context/.context.objs/byte -I lib/source/context/.context.objs/native -I lib/source/frontend/.frontend.objs/byte -I lib/source/frontend/.frontend.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/file_tests/.file_tests.eobjs/native/dune__exe__Test_common.cmx -c -impl test/file_tests/test_common.ml)
# File "test/file_tests/test_common.ml", line 34, characters 6-22:
# 34 | let processed_actual = process actual in
# ^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_actual.
# File "test/file_tests/test_common.ml", line 35, characters 6-24:
# 35 | let processed_expected = process expected in
# ^^^^^^^^^^^^^^^^^^
# Warning 26 [unused-var]: unused variable processed_expected.
# (cd _build/default/test/unit_tests && ./unit_tests.exe)
# Testing `Backend'.
# This run has ID `B7E5O2QF'.
#
# [OK] Constant Processing 0 positive intege...
# [OK] Constant Processing 1 negative intege...
# [OK] Constant Processing 2 hexadecimal int...
# [OK] Constant Processing 3 word constant (...
# [OK] Constant Processing 4 word constant (...
# [OK] Constant Processing 5 positive float ...
# [OK] Constant Processing 6 negative float ...
# [OK] Constant Processing 7 character const...
# [OK] Constant Processing 8 string constant.
# [OK] Type Processing 0 process type va...
# [OK] Type Processing 1 process equalit...
# [OK] Type Processing 2 process simple ...
# [OK] Type Processing 3 process type co...
# [OK] Type Processing 4 process type co...
# [OK] Type Processing 5 process parenth...
# [OK] Type Processing 6 process functio...
# [OK] Type Processing 7 process nested ...
# [OK] Type Processing 8 process tuple t...
# [OK] Type Processing 9 process tuple t...
# [OK] Type Processing 10 process record ...
# [OK] Type Processing 11 process record ...
# [OK] Type Processing 12 process_type wr...
# [OK] Object Field Processing 0 process single ...
# [OK] Object Field Processing 1 process multipl...
# [OK] Expression Processing 0 identifier expr...
# [OK] Expression Processing 1 function applic...
# [OK] Expression Processing 2 infix application.
# [OK] Expression Processing 3 constant expres...
# [OK] Expression Processing 4 unit expression...
# [OK] Expression Processing 5 tuple expression.
# [OK] Expression Processing 6 record expression.
# [OK] Expression Processing 7 record selector...
# [OK] Expression Processing 8 empty list expr...
# [OK] Expression Processing 9 list expression.
# [OK] Expression Processing 10 sequence expres...
# [OK] Expression Processing 11 let expression.
# [OK] Expression Processing 12 typed expression.
# [OK] Expression Processing 13 raise expression.
# [OK] Expression Processing 14 andalso express...
# [OK] Expression Processing 15 orelse expressi...
# [OK] Expression Processing 16 if expression.
# [OK] Expression Processing 17 while expression.
# [OK] Expression Processing 18 case expression.
# [OK] Expression Processing 19 fn expression (...
# [OK] Pattern Processing 0 constant pattern.
# [OK] Pattern Processing 1 wildcard pattern.
# [OK] Pattern Processing 2 variable pattern.
# [OK] Pattern Processing 3 nullary constru...
# [OK] Pattern Processing 4 constructor pat...
# [OK] Pattern Processing 5 infix construct...
# [OK] Pattern Processing 6 unit pattern (e...
# [OK] Pattern Processing 7 tuple pattern.
# [OK] Pattern Processing 8 record pattern.
# [OK] Pattern Processing 9 record pattern ...
# [OK] Pattern Processing 10 empty list patt...
# [OK] Pattern Processing 11 list pattern.
# [OK] Pattern Processing 12 typed pattern.
# [OK] Pattern Processing 13 as pattern (lay...
# [OK] Declaration Processing 0 simple value bi...
# [OK] Declaration Processing 1 multiple value ...
# [OK] Declaration Processing 2 simple function...
# [OK] Declaration Processing 3 function with p...
# [OK] Declaration Processing 4 simple type abb...
# [OK] Declaration Processing 5 parametric type...
# [OK] Declaration Processing 6 simple datatype...
# [OK] Declaration Processing 7 option datatype...
# [OK] Declaration Processing 8 simple exceptio...
# [OK] Declaration Processing 9 exception with ...
# [OK] Program Processing 0 simple program ...
# [OK] Program Processing 1 program with fu...
# [OK] Program Processing 2 program with da...
# [OK] Program Processing 3 program with se...
# [OK] Complex Type Processing 0 process complex...
# [OK] Complex Type Processing 1 process list ty...
# [OK] Complex Type Processing 2 process higher-...
# [OK] Pattern Matching (AST Structure) 0 lambda has corr...
# [OK] Pattern Matching (AST Structure) 1 let binding has...
# [OK] Pattern Matching (AST Structure) 2 function applic...
# [OK] Pattern Matching (AST Structure) 3 case expression...
# [OK] Pattern Matching (AST Structure) 4 if expression h...
# [OK] Pattern Matching (AST Structure) 5 tuple expressio...
# [OK] Pattern Matching (AST Structure) 6 record expressi...
# [OK] Pattern Matching (AST Structure) 7 list expression...
# [OK] Pattern Matching (AST Structure) 8 empty list has ...
# [OK] Pattern Matching (AST Structure) 9 sequence expres...
# [OK] Pattern Matching (AST Structure) 10 typed expressio...
# [OK] Pattern Matching (AST Structure) 11 wildcard patter...
# [OK] Pattern Matching (AST Structure) 12 variable patter...
# [OK] Pattern Matching (AST Structure) 13 tuple pattern h...
# [OK] Pattern Matching (AST Structure) 14 list pattern ha...
# [OK] Pattern Matching (AST Structure) 15 constant patter...
# [OK] Pattern Matching (AST Structure) 16 constructor pat...
# [OK] Pattern Matching (AST Structure) 17 function type h...
# [OK] Pattern Matching (AST Structure) 18 tuple type has ...
# [OK] Pattern Matching (AST Structure) 19 type constructo...
# [OK] Pattern Matching (AST Structure) 20 parametric type...
# [OK] Pattern Matching (AST Structure) 21 type variable h...
# [OK] Pattern Matching (AST Structure) 22 object type has...
# [OK] Pattern Matching (AST Structure) 23 val declaration...
# [OK] Pattern Matching (AST Structure) 24 fun declaration...
# [OK] Pattern Matching (AST Structure) 25 datatype declar...
# [OK] Pattern Matching (AST Structure) 26 exception decla...
#
# Full test results in `~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5/_build/default/test/unit_tests/_build/_tests/Backend'.
# Test Successful in 0.007s. 102 tests run.
# (cd _build/default/test/file_tests && ./file_tests.exe)
# Testing `File_Tests'.
# This run has ID `CQLLL7AN'.
#
# [OK] Functor_Index 0 TEST 1.
# [OK] Structure_Functions 0 TEST 1.
# [OK] ModeSyn_Datatypes 0 ModeSyn - Datatypes and Patt...
# [OK] Data_Refs 0 Data - Simple Structure with...
# [OK] TimeLimit_Exception 0 TimeLimit - Exception and La...
# [OK] ArraySlice_Types 0 ArraySlice - Type Alias and ...
# [OK] SigINT_Let 0 SigINT - Simple Let Expression.
# [OK] Domains_Functors 0 Domains - Functor Applications.
# [OK] Index_Functors 0 Index - Functor with Multipl...
# [OK] TabledSyn_Functor 0 TabledSyn - Functor Applicat...
# [OK] Flit_Large_Functor 0 Flit - Large Functor Applica...
# [OK] Origins_Functor 0 Origins - Functor Application.
# [OK] ModSyn_Complex 0 ModSyn - Complex Functor App...
# [OK] Weaken_Local 0 Weaken - Functor with Local ...
# [OK] Compat_Functor 0 Compat - Functor with Many S...
# [OK] Order_Functor 0 Order - Functor Application ...
# [OK] StyleCheck_Functor 0 StyleCheck - Functor Applica...
# [OK] Server_Patterns 0 Server - Complex Pattern Mat...
# [OK] Fixity_Datatypes 0 Fixity - Nested Datatypes an...
# [OK] Qid_Strings 0 Qid - Datatype and String Op...
# [OK] Split_Local_Refs 0 Split - Local with Ref Lists.
# [OK] EVar_Nested_Let 0 EVar - Nested Let and Patter...
# [OK] Limit_Options 0 Limit - Option Pattern Match...
#
# Full test results in `~/.opam/4.14/.opam-switch/build/shibboleth.0.0.5/_build/default/test/file_tests/_build/_tests/File_Tests'.
# Test Successful in 0.007s. 23 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build shibboleth 0.0.5
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose shibboleth.0.0.5' 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 shibboleth.0.0.5;
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" != 'shibboleth.0.0.5' && 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-02-16 02:25.25: Job failed: Failed: Build failed
2026-02-16 02:25.25: Log analysis:
2026-02-16 02:25.25: >>>
[ERROR] The compilation of shibboleth.0.0.5 failed at "dune build -p shibboleth -j 79 @install @runtest".
(score = 20)
2026-02-16 02:25.25: >>>
# Error: No inline tests backend found.
(score = 48)
2026-02-16 02:25.25: >>>
[ERROR] The compilation of shibboleth.0.0.5 failed at "dune build -p shibboleth -j 79 @install @runtest".
(score = 20)
2026-02-16 02:25.25: >>>
# Error: No inline tests backend found.
(score = 48)
2026-02-16 02:25.25: No inline tests backend found.