(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-flambda-fp/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/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-flambda-fp@sha256:00364a7a2f7c5e6a323e2038faeb9b49c19cf04d866e371d842d41f2e3206df4
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-flambda-fp@sha256:00364a7a2f7c5e6a323e2038faeb9b49c19cf04d866e371d842d41f2e3206df4-shibboleth.0.0.5-2ddeadc17128da5d11a0827bd0757076bc84995b"
2026-02-16 02:23.12: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14-flambda-fp@sha256:00364a7a2f7c5e6a323e2038faeb9b49c19cf04d866e371d842d41f2e3206df4)
 (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:24.20: Waiting for worker…
2026-02-16 02:26.52: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
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-flambda-fp@sha256:00364a7a2f7c5e6a323e2038faeb9b49c19cf04d866e371d842d41f2e3206df4)
2026-02-16 02:27.05 ---> using "f7c65a87f54c5d7fea9bd32a67db3135089fc47c11465b63acbbff923d32c067" 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:27.05 ---> using "e88acc78f5cc259d4145d64421672c242ba4a92978a3584a17b70ff44a1cb1c3" 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:27.05 ---> using "bc44da53a5f0b574979ff664533015f237463ae4f7dd0c5364570919333a2704" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-options-only-flambda-fp"]
# compiler-packages    ocaml-option-flambda.1, ocaml-option-fp.1, ocaml-options-only-flambda-fp.1, ocaml-variants.4.14.2+options
# 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+options+fp+flambda
2026-02-16 02:27.05 ---> using "1ef3c57d99b3d3b9f9dc22aa206a49f43248bf2afe6eedfb9688bf37f237659a" 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:27.05 ---> using "daa2e9ebbb66ffe52b5ad96d6633e2699abab06d37b9aeded55ba43e32d9c3a4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-02-16 02:27.13 ---> saved as "3e2271ffa19accdb1f3e95861bf609fbb68fc3c7e4b3f9b6b05bcfcb3d94914c"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-16 02:27.36 ---> saved as "8c791b129c1542094010fee789688bcd8d3660ccc26f4e0c26962fc7193c8c65"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [108 kB]
- Fetched 198 kB in 0s (1774 kB/s)
- Reading package lists...
- 
2026-02-16 02:27.38 ---> saved as "dc87481f60f439fcb8aa4487fff459e15295e343e4b8437ce1e52338ac07017d"

/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:27.39 ---> saved as "cd1a42d3c07fcc48071547cfc7d5b76cda19bf7d76da03a53efa1e1cac144f91"

/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 sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed re.1.14.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 base.v0.16.4
-> installed menhir.20260209
-> 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:29.15 ---> saved as "761a198e19f664757f01a8be162c5ca56ce17168b74a4c5460e0da4bf3cd7b38"

/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 71 @install @runtest".

#=== ERROR while compiling shibboleth.0.0.5 ===================================#
# context              2.5.0 | linux/x86_64 | ocaml-options-only-flambda-fp.1 | 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 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/shibboleth-7-386a1c.env
# output-file          ~/.opam/log/shibboleth-7-386a1c.out
### output ###
# File "lib/source/backend/dune", line 4, characters 1-15:
# 4 |  (inline_tests)
#      ^^^^^^^^^^^^^^
# Error: No inline tests backend found.
# (cd _build/.sandbox/444c3b41cf6a636de0dd4e0cdb7e9031/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/61b955b99f0d067f5cacf9d7cfad99e5/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 `VOU0KVCZ'.
# 
#   [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.012s. 102 tests run.
# (cd _build/default/test/file_tests && ./file_tests.exe)
# Testing `File_Tests'.
# This run has ID `E9SBUZVQ'.
# 
#   [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.008s. 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-20260216022915.export"
Or you can retry to install your package selection with:
    /usr/bin/opam install --restore
2026-02-16 02:29.36 ---> saved as "b455a1bf54d65783f5605cc09db574ff1008d0db0b32b863e7c0649c70dc8173"

/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" "71" "@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/444c3b41cf6a636de0dd4e0cdb7e9031/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/61b955b99f0d067f5cacf9d7cfad99e5/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 `EE0Q7UTO'.
- 
-   [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.013s. 102 tests run.
- (cd _build/default/test/file_tests && ./file_tests.exe)
- Testing `File_Tests'.
- This run has ID `VM7706RL'.
- 
-   [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.009s. 23 tests run.
[ERROR] The compilation of shibboleth.0.0.5 failed at "dune build -p shibboleth -j 71 @install @runtest".

#=== ERROR while compiling shibboleth.0.0.5 ===================================#
# context              2.5.0 | linux/x86_64 | ocaml-options-only-flambda-fp.1 | 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 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/shibboleth-7-e9bbc6.env
# output-file          ~/.opam/log/shibboleth-7-e9bbc6.out
### output ###
# File "lib/source/backend/dune", line 4, characters 1-15:
# 4 |  (inline_tests)
#      ^^^^^^^^^^^^^^
# Error: No inline tests backend found.
# (cd _build/.sandbox/444c3b41cf6a636de0dd4e0cdb7e9031/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/61b955b99f0d067f5cacf9d7cfad99e5/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 `EE0Q7UTO'.
# 
#   [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.013s. 102 tests run.
# (cd _build/default/test/file_tests && ./file_tests.exe)
# Testing `File_Tests'.
# This run has ID `VM7706RL'.
# 
#   [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.009s. 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:29.58: Job failed: Failed: Build failed
2026-02-16 02:29.58: Log analysis:
2026-02-16 02:29.58: >>> 
[ERROR] The compilation of shibboleth.0.0.5 failed at "dune build -p shibboleth -j 71 @install @runtest".
 (score = 20)
2026-02-16 02:29.58: >>> 
# Error: No inline tests backend found.
 (score = 48)
2026-02-16 02:29.58: >>> 
[ERROR] The compilation of shibboleth.0.0.5 failed at "dune build -p shibboleth -j 71 @install @runtest".
 (score = 20)
2026-02-16 02:29.58: >>> 
# Error: No inline tests backend found.
 (score = 48)
2026-02-16 02:29.58: No inline tests backend found.