(not at the head of any monitored branch or PR)
2026-04-10 17:57.36: New job: test ott.0.34 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall ott.0.34; \
    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" != 'ott.0.34' && 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 ott.0.34) || true
RUN opam reinstall --with-test --verbose ott.0.34; \
    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" != 'ott.0.34' && 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-04-10 17:57.36: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-ott.0.34-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.36: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ott.0.34;\
             \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\" != 'ott.0.34' && 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 ott.0.34) || true"))
 (run (shell  "opam reinstall --with-test --verbose ott.0.34;\
             \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\" != 'ott.0.34' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-10 17:57.36: Waiting for resource in pool OCluster
2026-04-11 02:38.54: Waiting for worker…
2026-04-11 02:40.41: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files:  59% (11169/18686)
Updating files:  60% (11212/18686)
Updating files:  61% (11399/18686)
Updating files:  62% (11586/18686)
Updating files:  63% (11773/18686)
Updating files:  64% (11960/18686)
Updating files:  65% (12146/18686)
Updating files:  66% (12333/18686)
Updating files:  67% (12520/18686)
Updating files:  68% (12707/18686)
Updating files:  69% (12894/18686)
Updating files:  70% (13081/18686)
Updating files:  71% (13268/18686)
Updating files:  72% (13454/18686)
Updating files:  73% (13641/18686)
Updating files:  74% (13828/18686)
Updating files:  75% (14015/18686)
Updating files:  76% (14202/18686)
Updating files:  77% (14389/18686)
Updating files:  78% (14576/18686)
Updating files:  79% (14762/18686)
Updating files:  80% (14949/18686)
Updating files:  81% (15136/18686)
Updating files:  82% (15323/18686)
Updating files:  83% (15510/18686)
Updating files:  84% (15697/18686)
Updating files:  85% (15884/18686)
Updating files:  86% (16070/18686)
Updating files:  87% (16257/18686)
Updating files:  88% (16444/18686)
Updating files:  89% (16631/18686)
Updating files:  90% (16818/18686)
Updating files:  91% (17005/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4' locally
docker.io/ocaml/opam@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
bcb8aca13f7d: Pulling fs layer
bee1401d6aa9: Pulling fs layer
70a4ec3f5a63: Pulling fs layer
946380c37df7: Pulling fs layer
40a16ba01935: Pulling fs layer
f4df01b7be08: Pulling fs layer
c7d14a9ac62c: Pulling fs layer
8ece799add44: Pulling fs layer
d3cb64c779a6: Pulling fs layer
946380c37df7: Waiting
d54da7bf4e54: Pulling fs layer
40a16ba01935: Waiting
3111aa7c2023: Pulling fs layer
f4df01b7be08: Waiting
962186c6e1e2: Pulling fs layer
8745338b1e0b: Pulling fs layer
c7d14a9ac62c: Waiting
70494a8c0d08: Pulling fs layer
8ece799add44: Waiting
9fbe01dcf1e6: Pulling fs layer
d3cb64c779a6: Waiting
3111aa7c2023: Waiting
d54da7bf4e54: Waiting
742774a39128: Pulling fs layer
6780ddc6e8a5: Pulling fs layer
962186c6e1e2: Waiting
742774a39128: Waiting
5049c6e21d97: Pulling fs layer
9fbe01dcf1e6: Waiting
f8f7f2d621cc: Pulling fs layer
5049c6e21d97: Waiting
d221e77cf2b7: Pulling fs layer
ea40bd8c29fe: Pulling fs layer
f8f7f2d621cc: Waiting
6780ddc6e8a5: Waiting
4f4fb700ef54: Pulling fs layer
546c3ffe9fcf: Pulling fs layer
de88a7570f24: Pulling fs layer
614f1e6aac31: Pulling fs layer
4f4fb700ef54: Waiting
546c3ffe9fcf: Waiting
d221e77cf2b7: Waiting
de88a7570f24: Waiting
4448849c2ba8: Pulling fs layer
ae7502e72140: Pulling fs layer
ea40bd8c29fe: Waiting
614f1e6aac31: Waiting
4448849c2ba8: Waiting
ff97726fb361: Pulling fs layer
20d3e00ca128: Pulling fs layer
ae7502e72140: Waiting
ff97726fb361: Waiting
8745338b1e0b: Waiting
734e3f9ef8d5: Pulling fs layer
20d3e00ca128: Waiting
a9623fbab448: Pulling fs layer
734e3f9ef8d5: Waiting
d9066aed5713: Pulling fs layer
a9623fbab448: Waiting
70494a8c0d08: Waiting
df57d5f0aedf: Pulling fs layer
d9066aed5713: Waiting
a963972287a7: Pulling fs layer
960128877639: Pulling fs layer
df57d5f0aedf: Waiting
a963972287a7: Waiting
224d5050da5a: Pulling fs layer
960128877639: Waiting
f8105fbb3180: Pulling fs layer
670a1f9738fe: Pulling fs layer
10f42e6216ad: Pulling fs layer
f8105fbb3180: Waiting
224d5050da5a: Waiting
670a1f9738fe: Waiting
1930c7997386: Pulling fs layer
10f42e6216ad: Waiting
3dfb608b80df: Pulling fs layer
1930c7997386: Waiting
35294222fbdf: Pulling fs layer
3dfb608b80df: Waiting
b427a5ce3ccf: Pulling fs layer
35294222fbdf: Waiting
159615597ae3: Pulling fs layer
b427a5ce3ccf: Waiting
159615597ae3: Waiting
bee1401d6aa9: Verifying Checksum
bee1401d6aa9: Download complete
bcb8aca13f7d: Download complete
bcb8aca13f7d: Pull complete
bee1401d6aa9: Pull complete
70a4ec3f5a63: Verifying Checksum
70a4ec3f5a63: Download complete
946380c37df7: Download complete
f4df01b7be08: Verifying Checksum
f4df01b7be08: Download complete
c7d14a9ac62c: Verifying Checksum
c7d14a9ac62c: Download complete
8ece799add44: Verifying Checksum
8ece799add44: Download complete
70a4ec3f5a63: Pull complete
946380c37df7: Pull complete
d3cb64c779a6: Verifying Checksum
d3cb64c779a6: Download complete
d54da7bf4e54: Verifying Checksum
d54da7bf4e54: Download complete
962186c6e1e2: Verifying Checksum
962186c6e1e2: Download complete
3111aa7c2023: Verifying Checksum
3111aa7c2023: Download complete
8745338b1e0b: Verifying Checksum
8745338b1e0b: Download complete
70494a8c0d08: Download complete
9fbe01dcf1e6: Verifying Checksum
742774a39128: Verifying Checksum
742774a39128: Download complete
6780ddc6e8a5: Verifying Checksum
6780ddc6e8a5: Download complete
f8f7f2d621cc: Verifying Checksum
f8f7f2d621cc: Download complete
5049c6e21d97: Verifying Checksum
5049c6e21d97: Download complete
ea40bd8c29fe: Download complete
d221e77cf2b7: Download complete
40a16ba01935: Verifying Checksum
40a16ba01935: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
546c3ffe9fcf: Verifying Checksum
546c3ffe9fcf: Download complete
de88a7570f24: Verifying Checksum
de88a7570f24: Download complete
4448849c2ba8: Verifying Checksum
4448849c2ba8: Download complete
614f1e6aac31: Download complete
ae7502e72140: Verifying Checksum
ae7502e72140: Download complete
ff97726fb361: Download complete
20d3e00ca128: Verifying Checksum
20d3e00ca128: Download complete
734e3f9ef8d5: Verifying Checksum
734e3f9ef8d5: Download complete
a9623fbab448: Verifying Checksum
a9623fbab448: Download complete
d9066aed5713: Verifying Checksum
d9066aed5713: Download complete
df57d5f0aedf: Verifying Checksum
df57d5f0aedf: Download complete
a963972287a7: Verifying Checksum
a963972287a7: Download complete
224d5050da5a: Download complete
670a1f9738fe: Download complete
10f42e6216ad: Verifying Checksum
10f42e6216ad: Download complete
1930c7997386: Verifying Checksum
1930c7997386: Download complete
960128877639: Verifying Checksum
960128877639: Download complete
35294222fbdf: Download complete
b427a5ce3ccf: Verifying Checksum
b427a5ce3ccf: Download complete
f8105fbb3180: Verifying Checksum
f8105fbb3180: Download complete
159615597ae3: Download complete
3dfb608b80df: Verifying Checksum
3dfb608b80df: Download complete
40a16ba01935: Pull complete
f4df01b7be08: Pull complete
c7d14a9ac62c: Pull complete
8ece799add44: Pull complete
d3cb64c779a6: Pull complete
d54da7bf4e54: Pull complete
3111aa7c2023: Pull complete
962186c6e1e2: Pull complete
8745338b1e0b: Pull complete
70494a8c0d08: Pull complete
9fbe01dcf1e6: Pull complete
742774a39128: Pull complete
6780ddc6e8a5: Pull complete
5049c6e21d97: Pull complete
f8f7f2d621cc: Pull complete
d221e77cf2b7: Pull complete
ea40bd8c29fe: Pull complete
4f4fb700ef54: Pull complete
546c3ffe9fcf: Pull complete
de88a7570f24: Pull complete
614f1e6aac31: Pull complete
4448849c2ba8: Pull complete
ae7502e72140: Pull complete
ff97726fb361: Pull complete
20d3e00ca128: Pull complete
734e3f9ef8d5: Pull complete
a9623fbab448: Pull complete
d9066aed5713: Pull complete
df57d5f0aedf: Pull complete
a963972287a7: Pull complete
960128877639: Pull complete
224d5050da5a: Pull complete
f8105fbb3180: Pull complete
670a1f9738fe: Pull complete
10f42e6216ad: Pull complete
1930c7997386: Pull complete
3dfb608b80df: Pull complete
35294222fbdf: Pull complete
b427a5ce3ccf: Pull complete
159615597ae3: Pull complete
Digest: sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
Status: Downloaded newer image for ocaml/opam@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
2026-04-11 02:40.44 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-04-11 02:40.44 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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-04-11 02:40.44 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-11 02:40.44 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-04-11 02:40.44 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 02:40.45 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 02:40.45 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1614 kB/s)
- Reading package lists...
- 
2026-04-11 02:40.45 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 02:40.46 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:40.46 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ott.0.34;\
                        \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\" != 'ott.0.34' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ott.0.34 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
  - install ocamlfind  1.9.8 [required by ott]
  - install ocamlgraph 2.2.0 [required by ott]
  - install ott        0.34

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ott.0.34  (cached)
-> installed ocamlgraph.2.2.0
-> installed ocamlfind.1.9.8
-> installed ott.0.34
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:41.20 ---> saved as "247f0f6df704a65539f839da6ad51bb60e758657f54f1f76e117bd3c0285b122"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ott.0.34) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ott        0.34
=== install 7 packages
  - install   menhir     20260209 [required by ott]
  - install   menhirCST  20260209 [required by menhir]
  - install   menhirGLR  20260209 [required by menhir]
  - install   menhirLib  20260209 [required by menhir]
  - install   menhirSdk  20260209 [required by menhir]
  - install   ocamlbuild 0.16.1   [required by ott]
  - install   pprint     20230830 [required by ott]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://opam.ocaml.org/cache)
-> installed menhirCST.20260209
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ott.0.34  (https://opam.ocaml.org/cache)
-> installed menhirLib.20260209
-> retrieved pprint.20230830  (https://opam.ocaml.org/cache)
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed pprint.20230830
-> removed   ott.0.34
-> installed ocamlbuild.0.16.1
-> installed menhir.20260209
-> installed ott.0.34
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:41.56 ---> saved as "067692ad8cb30574f65f96f5593e1faa4c9b17c316873c73bc2446ab9d666c30"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ott.0.34;\
                        \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\" != 'ott.0.34' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile ott 0.34

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [ott.0.34: extract]
-> retrieved ott.0.34  (cached)
Processing  2/4: [ott: make world]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "world" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ott.0.34)
- cd src; make install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/src'
- ocamllex grammar_lexer.mll
- 374 states, 16439 transitions, table size 68000 bytes
- 3397 additional bytes used for bindings
- ocamlyacc -v grammar_parser.mly
- 2 rules never reduced
- ocamldep location.ml types.ml auxl.ml merge.ml global_option.ml grammar_lexer.ml grammar_parser.mli grammar_parser.ml version.ml grammar_pp.ml parse_table.ml glr.ml new_term_parser.ml term_parser.ml dependency.ml bounds.ml context_pp.ml quotient_rules.ml grammar_typecheck.ml transform.ml substs_pp.ml subrules_pp.ml embed_pp.ml defns.ml ln_transform.ml coq_induct.ml system_pp.ml lex_menhir_pp.ml align.ml main.ml align.mli bounds.mli coq_induct.mli defns.mli dependency.mli embed_pp.mli grammar_typecheck.mli merge.mli subrules_pp.mli substs_pp.mli system_pp.mli lex_menhir_pp.mli transform.mli term_parser.mli > .depend
- mkdir ../bin
- make opt
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/src'
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c location.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c types.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c auxl.ml
- File "auxl.ml", lines 405-412, characters 7-19:
- 405 | .......( match hse with
- 406 | 	      | Hom_index _ | Hom_terminal _ -> []
- 407 | 	      | Hom_string s -> 
- 408 | 		  let strs = Str.split (Str.regexp "[ \t]+") s in
- 409 | 		  let ntrs_hom = List.filter (fun st -> List.mem st defined_ntrs) strs in
- 410 | 		  if promote 
- 411 | 		  then List.map (promote_ntr xd) ntrs_hom
- 412 | 		  else ntrs_hom ).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Hom_ln_free_index (_, _)
- File "auxl.ml", lines 467-471, characters 7-59:
- 467 | .......( match hse with
- 468 | 	      | Hom_index _ | Hom_terminal _ -> []
- 469 | 	      | Hom_string s -> 
- 470 | 		  let strs = Str.split (Str.regexp "[ \t]+") s in
- 471 | 		  List.filter (fun st -> List.mem st defined_mvrs) strs ).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Hom_ln_free_index (_, _)
- File "auxl.ml", lines 1839-1854, characters 4-42:
- 1839 | ....( match stre with 
- 1840 |     | Struct_md mvr ->  "metavar def: "^mvr
- 1841 |     | Struct_rs ntrs -> "rule def: "^(String.concat " " ntrs)
- 1842 |     | Struct_srs xs -> "subrule def: "^
- 1843 | 	(String.concat " " 
- ...
- 1851 |     | Struct_axs xs -> "aux def: "^
- 1852 |         (String.concat " " xs)
- 1853 |     | Struct_fun_or_defnclass s -> "fundefn_class def: "^s
- 1854 |     | Struct_embed (_,h,_) -> "embed: "^h)
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Struct_crs _
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c location.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c types.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c merge.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c merge.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c global_option.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c grammar_parser.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c grammar_parser.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c grammar_lexer.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c version.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c grammar_pp.ml
- File "grammar_pp.ml", lines 1883-2139, characters 6-25:
- 1883 | ......( match m with 
- 1884 |       | Lex _ | Menhir _ -> Auxl.errorm m "pp_mse"
- 1885 |       | Ascii ao -> 
- 1886 |           pp_auxfn m xd f ^ ""^pp_LPAREN ^ "" 
- 1887 |           ^ pp_ntlist
- ...
- 2136 | 	  else
- 2137 | 	    ( "(flat_map (fun "^pat_fun^" => "^pp_body^ pat_fun_end ^ ") "
- 2138 | 	      ^ de1i.de1_compound_id
- 2139 | 	      ^ ")", [], [] )  )
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Coq _|Isa _)
- (However, some guarded clause may match this value.)
- File "grammar_pp.ml", lines 4034-4037, characters 16-45:
- 4034 | ................(match hse with 
- 4035 |     | Hom_string _ -> arity_of_homspec hs'
- 4036 |     | Hom_index i -> max (1+i) (arity_of_homspec hs')
- 4037 |     | Hom_terminal _ -> arity_of_homspec hs')
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Hom_ln_free_index (_, _)
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c parse_table.ml
- File "parse_table.ml", line 914, characters 42-56:
- 914 |                             prod_action = (fun [r] -> r);
-                                                 ^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::_::_
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c glr.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c new_term_parser.ml
- File "new_term_parser.ml", lines 150-177, characters 10-30:
- 150 | ..........(function 
- 151 |              | "[" -> "lbrac"
- 152 |              | "]" -> "rbrac"
- 153 |              | "!" -> "excl"
- 154 |              | "\"" -> "doublequote"
- ...
- 174 |              | "}" -> "rcurly"
- 175 |              | "|" -> "bar"
- 176 |              | "~" -> "tilde"
- 177 |              | "-" -> "minus")
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- ""
- File "new_term_parser.ml", lines 289-290, characters 14-18:
- 289 | ..............[Res_char c; Res_charl l] =
- 290 |   Res_charl (c::l)..
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_char _::Res_charl _::_::_
- File "new_term_parser.ml", lines 292-293, characters 20-46:
- 292 | ....................[Res_char c; Res_charl l] =
- 293 |   Res_string (Auxl.string_of_char_list (c::l))..
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_char _::Res_charl _::_::_
- File "new_term_parser.ml", line 295, characters 14-58:
- 295 | let res_stlil [Res_stli a; Res_stlil b] = Res_stlil (a::b);;
-                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_stli _::Res_stlil _::_::_
- File "new_term_parser.ml", lines 342-346, characters 67-66:
- 342 | ...................................................................function
- 343 |       [] -> []
- 344 |     | Res_ignore::rl -> process_prod_res rl
- 345 |     | Res_ste ste::rl -> ste::process_prod_res rl
- 346 |     | Res_st st::rl -> Ste_st (dummy_loc, st)::process_prod_res rl
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Res_none|Res_stli _|Res_stlil _|Res_char _|Res_charl _|Res_string _|
- Res_int _|Res_si _|Res_sil _)::_
- File "new_term_parser.ml", line 382, characters 14-42:
- 382 |               (fun [Res_stlil x] -> elc x);
-                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_stlil _::_::_
- File "new_term_parser.ml", line 401, characters 8-42:
- 401 |         (fun [Res_stli x]-> Res_stlil [x]);
-               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_stli _::_::_
- File "new_term_parser.ml", line 416, characters 16-51:
- 416 |                 (fun [x; _; y] -> res_stlil [x; y])
-                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::_::_::_::_
- File "new_term_parser.ml", lines 463-467, characters 26-65:
- 463 | ..........................(fun [Res_stli (Stli_single (_, es1)); 
- 464 |                                 _; 
- 465 |                                 Res_int n';
- 466 |                                 Res_stli (Stli_single (_, es2))] ->
- 467 |                              process_dot_listform_res es1 n' es2).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_stli (Stli_single (_, _))::_::Res_int _::Res_stli (Stli_single (_, _))::
- _::_
- File "new_term_parser.ml", lines 476-482, characters 26-65:
- 476 | ..........................(fun [Res_stli (Stli_single (_, es1)); 
- 477 |                                 _; 
- 478 |                                 _;
- 479 |                                 Res_int n';
- 480 |                                 _;
- 481 |                                 Res_stli (Stli_single (_, es2))] ->
- 482 |                              process_dot_listform_res es1 n' es2)
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_stli (Stli_single (_, _))::_::_::Res_int _::_::
- Res_stli (Stli_single (_, _))::_::_
- File "new_term_parser.ml", lines 488-500, characters 18-53:
- 488 | ..................(fun [_; Res_stli (Stli_single (_, es)); _; _; Res_string ivr;
- 489 |                         _] ->
- 490 |                      let es'' = 
- 491 |                        List.map 
- 492 |                          (Merge.abstract_indexvar_symterm_element ivr 0) 
- ...
- 497 |                                  stl_elements = es'';
- 498 |                                  stl_loc = dummy_loc}
- 499 |                      in
- 500 |                        Res_stli (Stli_listform stlb)).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_stli (Stli_single (_, _))::_::_::Res_string _::_::_::_
- File "new_term_parser.ml", lines 508-523, characters 18-53:
- 508 | ..................(fun [_; Res_stli (Stli_single (_, es)); _; _; Res_string ivr;
- 509 |                         _;
- 510 |                         _; Res_string ivr';
- 511 |                         _] ->
- 512 |                      let es'' = 
- ...
- 520 |                      let stlb = {stl_bound = b;
- 521 |                                  stl_elements = es'';
- 522 |                                  stl_loc = dummy_loc} in
- 523 |                        Res_stli (Stli_listform stlb)).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_stli (Stli_single (_, _))::_::_::Res_string _::_::_::Res_string _::_::
- _::_
- File "new_term_parser.ml", lines 536-557, characters 18-53:
- 536 | ..................(fun [_; Res_stli (Stli_single (_, es)); _; _; Res_string ivr;
- 537 |                         _;
- 538 |                         _;
- 539 |                         Res_string lower;
- 540 |                         _;
- ...
- 554 |                      let stlb = {stl_bound = b;
- 555 |                                  stl_elements = es'';
- 556 |                                  stl_loc = dummy_loc} in
- 557 |                        Res_stli (Stli_listform stlb)).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_stli (Stli_single (_, _))::_::_::Res_string _::_::_::Res_string _::_::
- Res_int _::_::Res_si _::_::_::_
- File "new_term_parser.ml", line 560, characters 18-53:
- 560 |                   (fun [Res_stli x] -> Res_stlil [x]));
-                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_stli _::_::_
- File "new_term_parser.ml", line 574, characters 24-59:
- 574 |                         (fun [x; _; y] -> res_stlil [x; y]));
-                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::_::_::_::_
- File "new_term_parser.ml", line 603, characters 15-44:
- 603 |                (fun (_::rl) -> build_res rl) in
-                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- []
- File "new_term_parser.ml", line 609, characters 15-44:
- 609 |                (fun (_::rl) -> build_res rl) in
-                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- []
- File "new_term_parser.ml", line 628, characters 12-29:
- 628 |             (fun [_; x] -> x)
-                   ^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::_::_::_
- File "new_term_parser.ml", lines 638-639, characters 13-63:
- 638 | .............(fun [_; Res_sil l] ->
- 639 |                 Res_st (St_nonterm (dummy_loc, ntr, (nt', l)))).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_sil _::_::_
- File "new_term_parser.ml", lines 649-653, characters 18-55:
- 649 | ..................(fun [_; Res_sil l] ->
- 650 |                      Res_st (St_nontermsub (dummy_loc, 
- 651 |                                             ntl, 
- 652 |                                             Auxl.promote_ntr xd ntr, 
- 653 |                                             (nt', l)))).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_sil _::_::_
- File "new_term_parser.ml", lines 664-665, characters 6-59:
- 664 | ......(fun [_; Res_sil x] ->
- 665 |          Res_ste (Ste_metavar (dummy_loc, name, (mvr, x))))
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_sil _::_::_
- File "new_term_parser.ml", line 695, characters 14-100:
- 695 |               (fun (_::Res_string s::_) -> Res_ste (Ste_metavar (dummy_loc, mvd.mvd_name, (s, []))))
-                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::
- (Res_ignore|Res_none|Res_st _|Res_ste _|Res_stli _|Res_stlil _|Res_char _|
- Res_charl _|Res_int _|Res_si _|Res_sil _)::_
- File "new_term_parser.ml", lines 703-707, characters 16-68:
- 703 | ................(fun [_; Res_string s] -> 
- 704 |                    if is_tm s then
- 705 |                      raise Reject_parse
- 706 |                    else
- 707 |                      Res_ste (Ste_var (dummy_loc, mvd.mvd_name, s))).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_string _::_::_
- File "new_term_parser.ml", lines 710-711, characters 16-66:
- 710 | ................(fun [_; Res_string s] -> 
- 711 |                    Res_ste (Ste_var (dummy_loc, mvd.mvd_name, s))).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_string _::_::_
- File "new_term_parser.ml", lines 715-719, characters 16-23:
- 715 | ................(fun [((Res_ste (Ste_var (_, _, s))) as x)] -> 
- 716 |                    if is_tm s then 
- 717 |                      raise Reject_parse
- 718 |                    else
- 719 |                      x)
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_ste (Ste_var (_, _, _))::_::_
- File "new_term_parser.ml", line 742, characters 6-41:
- 742 |       (fun [Res_char c] -> Res_charl [c]);
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_char _::_::_
- File "new_term_parser.ml", line 748, characters 6-68:
- 748 |       (fun [Res_charl s] -> Res_string (Auxl.string_of_char_list s));
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_charl _::_::_
- File "new_term_parser.ml", line 761, characters 6-53:
- 761 |       (fun [Res_si s; Res_sil sl] -> Res_sil (s::sl));
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_si _::Res_sil _::_::_
- File "new_term_parser.ml", line 767, characters 6-73:
- 767 |       (fun [Res_charl l] -> Res_si (Si_num (Auxl.string_of_char_list l)));
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_charl _::_::_
- File "new_term_parser.ml", line 771, characters 6-24:
- 771 |       (fun [rsi] -> rsi);
-             ^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::_::_
- File "new_term_parser.ml", line 794, characters 6-47:
- 794 |       (fun [Res_charl c] -> Res_charl ('_'::c));
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_charl _::_::_
- File "new_term_parser.ml", line 796, characters 6-48:
- 796 |       (fun [Res_charl c] -> Res_charl ('\''::c));
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_charl _::_::_
- File "new_term_parser.ml", line 831, characters 6-52:
- 831 |       (fun [Res_string s] -> Res_si (Si_var (s, 0)));
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_string _::_::_
- File "new_term_parser.ml", line 835, characters 6-53:
- 835 |       (fun [Res_string s] -> Res_si (Si_var (s, -1)));
-             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- Res_string _::_::_
- File "new_term_parser.ml", lines 846-847, characters 13-61:
- 846 | .............(fun [_; Res_sil x] ->
- 847 |                 Res_st (St_nonterm (dummy_loc, "", (nt, x)))).
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::Res_sil _::_::_
- File "new_term_parser.ml", line 858, characters 13-27:
- 858 |              (fun [x] -> x);
-                    ^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- _::_::_
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c term_parser.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c term_parser.ml
- File "term_parser.ml", lines 1139-1172, characters 2-11:
- 1139 | ..let Ascii oldopts = pp_ascii_opts_default in
- 1140 |   let opts = Ascii {oldopts with ppa_colour = !Auxl.colour} in
- 1141 |   let sts = parse_complete lookup ntr concrete s in
- 1142 |   let sts = transform sts in
- 1143 |   match sts with
- ...
- 1169 |         begin  
- 1170 |           report_error (Some l) (sstart ^ concat "" intermed);
- 1171 |           St_uninterpreted(l, "multiple parses")
- 1172 |         end
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Coq
-    {coq_quantified_vars_from_de=_; coq_non_local_hyp_defn=_;
-    coq_non_local_hyp_defn_vars=_; coq_list_types=_;
-    coq_list_aux_defns={defined=_; newly_defined=_};
-    coq_library={contents=(_, _)}; coq_locally_nameless=_; _ }|
- Isa {isa_library={contents=(_, _)}; _ }|Hol {hol_library={contents=(_, _)}}|
- Lem {lem_library={contents=(_, _)}}|
- Twf {twf_current_defn=_; twf_library={contents=(_, _)}}|Tex _|
- Caml {caml_library={contents=(_, _)}; _ }|
- Lex {ppm_caml_opts={caml_library={contents=(_, _)}; _ }; _ }|
- Menhir {ppm_caml_opts={caml_library={contents=(_, _)}; _ }; _ })
- File "term_parser.ml", line 1222, characters 25-54:
- 1222 |                 List.map (fun (Ntp.Gtp.Res_st s) -> s) res
-                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Res_ignore|Res_none|Res_ste _|Res_stli _|Res_stlil _|Res_char _|Res_charl _|
- Res_string _|Res_int _|Res_si _|Res_sil _)
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c dependency.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c dependency.ml
- File "dependency.ml", lines 571-579, characters 2-74:
- 571 | ..match m with
- 572 |   | Isa io when io.ppi_isa_primrec -> isa_primrec_collapse m xd funcs
- 573 |   | Isa io when not io.ppi_isa_primrec -> isa_fun_collapse m xd funcs
- 574 |   | Hol _ -> hol_collapse m xd funcs
- 575 |   | Lem _ -> lem_collapse m xd funcs
- 576 |   | Coq _ -> coq_collapse m xd funcs
- 577 |   | Twf _ -> twf_collapse m xd funcs
- 578 |   | Caml _ -> caml_collapse m xd funcs
- 579 |   | Tex _ | Ascii _ -> Auxl.error None "internal: collapse of Tex-Ascii\n"
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Isa _|Lex _|Menhir _)
- (However, some guarded clause may match this value.)
- File "dependency.ml", lines 584-714, characters 2-53:
- 584 | ..match m with
- 585 |   | Tex _ | Ascii _ -> Auxl.error None "internal: print of Tex-Ascii\n"
- 586 |   | Isa io ->
- 587 |       let print_lemma block = 
- 588 | 	if ( List.exists 
- ...
- 711 | (*               (List.map (fun (_,((h1,h2,h3),s,_)) -> h1 ^ "FOO1" ^ h2 ^ "FOO2"^ h3 ^ "FOO3"^s) block))*)
- 712 |                (List.map (fun (_,((h1,h2,h3),s,_)) -> h1 ^ h2 ^ h3 ^ s ^ "  end\n") block))
- 713 | 	  ^ "\n") in
- 714 |       String.concat "" (List.map print_block sorting)
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Lex _|Menhir _)
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c bounds.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c bounds.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c context_pp.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c quotient_rules.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c grammar_typecheck.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c grammar_typecheck.ml
- File "grammar_typecheck.ml", lines 54-56, characters 4-82:
- 54 | ....match (xs,keys) with
- 55 |     | ([],[]) -> None
- 56 |     | (x::xs, key::keys) -> if (List.mem key keys) then Some x else helper xs keys.
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- ([], _::_)
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c transform.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c transform.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c substs_pp.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c substs_pp.ml
- File "substs_pp.ml", lines 333-336, characters 10-11:
- 333 | ..........(match m with 
- 334 |           | Caml _ -> Grammar_pp.pp_nt_or_mv_root_ty m xd ntmvr ^ " list" 
- 335 |           | Lem _ -> "list " ^Grammar_pp.pp_nt_or_mv_root_ty m xd ntmvr
- 336 |           )
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Coq _|Isa _|Hol _|Twf _|Ascii _|Tex _|Lex _|Menhir _)
- File "substs_pp.ml", lines 1400-1412, characters 3-4:
- 1400 | ...(match m with 
- 1401 | 		 | Caml _ -> 	
- 1402 | 		     "(" 
- 1403 | 	             ^ Grammar_pp.pp_nt_or_mv_root_ty m xd subst.sb_that 
- 1404 | 		     ^ "*" ^ Grammar_pp.pp_nontermroot_ty m xd subst.sb_this 
- ...
- 1409 | 		     ^ Grammar_pp.pp_nt_or_mv_root_ty m xd subst.sb_that 
- 1410 | 		     ^ "*" ^ Grammar_pp.pp_nontermroot_ty m xd subst.sb_this 
- 1411 | 		     ^ ")"
- 1412 | 		 )
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Coq _|Isa _|Hol _|Twf _|Ascii _|Tex _|Lex _|Menhir _)
- File "substs_pp.ml", lines 1747-1876, characters 3-8:
- 1747 | ...( match m with 
- 1748 |           | Ascii _ | Tex _ | Lex _ | Menhir _ -> Auxl.error (Some p.prod_loc) "pp_fv_symterm_list_body"
- 1749 | 	  | Isa io when io.ppi_isa_primrec ->
- 1750 |               let args = 
- 1751 | 	        String.concat "_" 
- ...
- 1873 | 		  ("(flat_map (fun (pat_:"^de1i.de1_coq_type_of_pattern^") => match pat_ with " ^ de1i.de1_pattern ^ " => "^pp_body^" end) "
- 1874 | 		   ^ de1i.de1_compound_id
- 1875 | 		   ^ ")"), funcs
- 1876 |        )..
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Coq _|Isa _|Twf _)
- (However, some guarded clause may match this value.)
- File "substs_pp.ml", lines 2030-2033, characters 5-6:
- 2030 | .....(match m with 
- 2031 | 	    | Caml _ -> Grammar_pp.pp_nt_or_mv_root_ty m xd fv.fv_that ^ " list"
- 2032 | 	    | Lem _ -> " list " ^ Grammar_pp.pp_nt_or_mv_root_ty m xd fv.fv_that
- 2033 | 	    )
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Coq _|Isa _|Hol _|Twf _|Ascii _|Tex _|Lex _|Menhir _)
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c subrules_pp.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c subrules_pp.ml
- File "subrules_pp.ml", lines 167-368, characters 8-2:
- 167 | ........( match m with 
- 168 |         | Isa io when io.ppi_isa_primrec ->
- 169 | 	    let typ = 
- 170 | 	      Auxl.the (Grammar_pp.pp_elements 
- 171 | 	       	 m xd  ((Si_punct "_")::sie) elbu.elb_es true false true true) ^ " list" in
- ...
- 365 |             [ " %{ TWELF NOT IMPLEMENTED }%"], deps, []
- 366 |         | Tex _ | Ascii _ | Lex _ | Menhir _ -> Auxl.errorm m "pp_subelement"
- 367 | 
- 368 |  )
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Coq _|Isa _)
- (However, some guarded clause may match this value.)
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c embed_pp.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c embed_pp.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c defns.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c defns.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c ln_transform.ml
- File "ln_transform.ml", lines 1057-1067, characters 4-7:
- 1057 | ....match mse with
- 1058 |     | Empty -> 
- 1059 | 	"0",[]
- 1060 |     | MetaVarExp mv -> 
- 1061 | 	"1",[] (* FZ is this correct in the general case? *)
- ...
- 1064 |     | Aux (f1,nt1) -> 
- 1065 | 	let name = arity_name f1 (Auxl.promote_ntr xd_transformed (Auxl.primary_ntr_of_ntr xd_transformed (fst nt1))) in
- 1066 | 	name ^ " " ^ Grammar_pp.pp_nonterm m xd_transformed nt1,
- 1067 | 	[name]
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (NonTermExp _|MetaVarListExp (_, _)|NonTermListExp (_, _)|AuxList (_, _, _))
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c coq_induct.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c coq_induct.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c system_pp.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c system_pp.ml
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c lex_menhir_pp.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c lex_menhir_pp.ml
- File "lex_menhir_pp.ml", lines 274-285, characters 10-11:
- 274 | ..........(match ocamllex_hom_opt, ocamllex_remove_hom with
- 275 |           | Some ocamllex_hom, false -> 
- 276 |               Some (token_name_of mvd.mvd_name, mvd.mvd_name, TK_metavar(ocaml_type, Some ocamllex_hom, ocamllex_of_string_hom_opt))
- 277 |           | None, false -> 
- 278 | (* hack: default to ocamllex-remove *)
- ...
- 282 |               Auxl.error (Some mvd.mvd_loc) ("ocamllex output: both ocamllex and ocamllex-remove hom for "^mvd.mvd_name^"\n")
- 283 |           | None, true -> 
- 284 |               Some (token_name_of mvd.mvd_name, mvd.mvd_name, TK_metavar(ocaml_type, None, ocamllex_of_string_hom_opt))
- 285 |           )
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Some _, true)
- File "lex_menhir_pp.ml", line 281, characters 12-36:
- 281 |           | Some ocamllex_hom, false -> 
-                   ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 11 [redundant-case]: this match case is unused.
- File "lex_menhir_pp.ml", lines 331-335, characters 13-42:
- 331 | .............(match ocaml_type with
- 332 |              | "string" -> ""
- 333 |              | "int" -> "int_of_string"
- 334 |              | "float" -> "float_of_string"
- 335 |              | "bool" -> "bool_of_string")
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- ""
- ocamlfind ocamlc -package str -package ocamlgraph -linkpkg -g -dtypes   -c align.mli
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c align.ml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -c main.ml
- sed -e 's/__VERSION__/0.34/' \
-     -e '/__DATE__/r tmp_date.txt' \
-     -e '/__DATE__/d' <version_src.tex >version.tex
- echo Makefile location.cmx types.cmx auxl.cmx merge.cmx global_option.cmx grammar_lexer.cmx grammar_parser.cmx version.cmx grammar_pp.cmx parse_table.cmx glr.cmx new_term_parser.cmx term_parser.cmx dependency.cmx bounds.cmx context_pp.cmx quotient_rules.cmx grammar_typecheck.cmx transform.cmx substs_pp.cmx subrules_pp.cmx embed_pp.cmx defns.cmx ln_transform.cmx coq_induct.cmx system_pp.cmx lex_menhir_pp.cmx align.cmx main.cmx align.cmi bounds.cmi coq_induct.cmi defns.cmi dependency.cmi embed_pp.cmi grammar_typecheck.cmi merge.cmi subrules_pp.cmi substs_pp.cmi system_pp.cmi lex_menhir_pp.cmi transform.cmi term_parser.cmi version.tex
- Makefile location.cmx types.cmx auxl.cmx merge.cmx global_option.cmx grammar_lexer.cmx grammar_parser.cmx version.cmx grammar_pp.cmx parse_table.cmx glr.cmx new_term_parser.cmx term_parser.cmx dependency.cmx bounds.cmx context_pp.cmx quotient_rules.cmx grammar_typecheck.cmx transform.cmx substs_pp.cmx subrules_pp.cmx embed_pp.cmx defns.cmx ln_transform.cmx coq_induct.cmx system_pp.cmx lex_menhir_pp.cmx align.cmx main.cmx align.cmi bounds.cmi coq_induct.cmi defns.cmi dependency.cmi embed_pp.cmi grammar_typecheck.cmi merge.cmi subrules_pp.cmi substs_pp.cmi system_pp.cmi lex_menhir_pp.cmi transform.cmi term_parser.cmi version.tex
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -v
- The OCaml native-code compiler, version 4.14.3
- Standard library directory: /home/opam/.opam/4.14/lib/ocaml
- ocamlfind ocamlopt -package str -package ocamlgraph -linkpkg -w y -g -dtypes -unsafe -inline 9 -o ott.opt  location.cmx  types.cmx  auxl.cmx  merge.cmx  global_option.cmx  grammar_lexer.cmx  grammar_parser.cmx  version.cmx  grammar_pp.cmx  parse_table.cmx  glr.cmx  new_term_parser.cmx  term_parser.cmx  dependency.cmx  bounds.cmx  context_pp.cmx  quotient_rules.cmx  grammar_typecheck.cmx  transform.cmx  substs_pp.cmx  subrules_pp.cmx  embed_pp.cmx  defns.cmx  ln_transform.cmx  coq_induct.cmx  system_pp.cmx  lex_menhir_pp.cmx  align.cmx  main.cmx
- ln -s -f ott.opt ott
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/src'
- cp ./ott ../bin/ott
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/src'
Processing  2/4: [ott: make ott.install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "ott.install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ott.0.34)
- cp ott.install.nodoc ott.install
- echo "doc : [" >> ott.install
- echo "\"README.md\" { \"README.md\" }" >> ott.install
- echo "\"LICENCE\" { \"LICENSE\" }" >> ott.install
- echo "\"built_doc/top2.pdf\" { \"doc/ott_manual.pdf\" }" >> ott.install
- echo "\"built_doc/top2.html\" { \"doc/ott_manual.html\" }" >> ott.install
- echo  "\"built_doc/top2001.png\""  "\"built_doc/top2002.png\""  "\"built_doc/top2003.png\""  "\"built_doc/top2004.png\""  "\"built_doc/top2005.png\""  "\"built_doc/top2006.png\""  "\"built_doc/top2007.png\""  "\"built_doc/top2008.png\""  "\"built_doc/top2009.png\""  "\"built_doc/top2010.png\""  "\"built_doc/top2011.png\""  "\"built_doc/top2012.png\""  "\"built_doc/top2013.png\""  "\"built_doc/top2014.png\""  "\"built_doc/top2015.png\""  "\"built_doc/top2016.png\""  "\"built_doc/top2017.png\""  "\"built_doc/top2018.png\""  "\"built_doc/top2019.png\""  "\"built_doc/top2020.png\""  "\"built_doc/top2021.png\""  "\"built_doc/top2022.png\""  "\"built_doc/top2023.png\""  "\"built_doc/top2024.png\""  "\"built_doc/top2025.png\""  "\"built_doc/top2026.png\""  "\"built_doc/top2027.png\""  "\"built_doc/top2028.png\""  "\"built_doc/top2029.png\""  "\"built_doc/top2030.png\""  "\"built_doc/top2031.png\""  "\"built_doc/top2032.png\""  "\"built_doc/top2033.png\""  "\"built_doc/top2034.png\""  "\"built_doc/top2035.png\""  "\"built_doc/top2036.png\""  "\"built_doc/top2037.png\"" >> ott.install
- echo "]" >> ott.install
Processing  2/4: [ott: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "tests/menhir_tests/test_if" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ott.0.34)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test_if'
- ../../../bin/ott -show_sort true -quotient_rules false -i test_if.ott  -o test_if_parser.mly -o test_if_lexer.mll -o test_if_ast.ml -o test_if.tex
- Ott version 0.34   distribution of Mon Dec 30 10:12:45 GMT 2024
- ********** AFTER CHECK, DISAMBIGUATE AND SORT  *********************
- 
- metavar var , x ::= {{ com term variable }} {{ isa string }} {{ coq nat }} {{ hol string }} {{ lem string }} {{ coq-equality  }} {{ ocaml string }} {{ lex alphanum }} {{ tex \mathit{[[0]]} }} {{ ocamllex ['a'-'z''A'-'Z']+ }}
- grammar
- 
- exp :: '' ::= {{ menhir-start  }}
-   | if exp1 then exp2 else exp3                                :: E_if 
-   | if exp1 then exp2                                          :: E_ifnoelse {{ ocaml E_if ([[0]], [[1]], E_skip) }}
-   | skip                                                       :: E_skip 
-   | x                                                          :: E_var 
-   | exp * exp'                                                 :: E_star 
- 
- 
- judgement :: '' ::= 
-   
- 
- user_syntax :: '' ::= 
-   | var                                                        :: user_syntax__var 
-   | exp                                                        :: user_syntax__exp 
- 
- 
- formula :: '' ::= {{ coq Prop }} {{ hol bool }} {{ lem bool }} {{ isa bool }} {{ ocaml bool }}
-   | judgement                                                  :: formula_judgement 
- 
- 
- subrules
- 
- 
- 
- substitutions
- 
- 
- ocamlbuild -use-ocamlfind -use-menhir -menhir "menhir --infer --explain --unused-tokens --trace --base test_if_parser ../../../../menhir/menhir_library_extra.mly " -package pprint main.byte
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package pprint -modules main.ml > main.ml.depends
- + ocamlfind ocamldep -package pprint -modules test_if_ast.ml > test_if_ast.ml.depends
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q test_if_lexer.mll
- + ocamlfind ocamldep -package pprint -modules test_if_lexer.ml > test_if_lexer.ml.depends
- + menhir --infer --explain --unused-tokens --trace --base test_if_parser ../../../../menhir/menhir_library_extra.mly  --raw-depend --ocamldep 'ocamlfind ocamldep -modules' test_if_parser.mly > test_if_parser.mly.depends
- + ocamlfind ocamlc -c -package pprint -o test_if_ast.cmo test_if_ast.ml
- + menhir --infer --explain --unused-tokens --trace --base test_if_parser ../../../../menhir/menhir_library_extra.mly  --ocamlc 'ocamlfind ocamlc -package pprint' --infer test_if_parser.mly
- + ocamlfind ocamldep -package pprint -modules test_if_parser.mli > test_if_parser.mli.depends
- + ocamlfind ocamlc -c -package pprint -o test_if_parser.cmi test_if_parser.mli
- + ocamlfind ocamldep -package pprint -modules test_if_parser_pp.ml > test_if_parser_pp.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test_if_lexer.cmo test_if_lexer.ml
- + ocamlfind ocamlc -c -package pprint -o test_if_parser_pp.cmo test_if_parser_pp.ml
- + ocamlfind ocamlc -c -package pprint -o main.cmo main.ml
- + ocamlfind ocamldep -package pprint -modules test_if_parser.ml > test_if_parser.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test_if_parser.cmo test_if_parser.ml
- + ocamlfind ocamlc -linkpkg -package pprint test_if_ast.cmo test_if_parser.cmo test_if_lexer.cmo test_if_parser_pp.cmo main.cmo -o main.byte
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test_if'
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "tests/menhir_tests/test10menhir" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ott.0.34)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test10menhir'
- ../../../bin/ott -show_sort true -quotient_rules false -i test10menhir.ott  -o test10menhir_parser.mly -o test10menhir_lexer.mll -o test10menhir_ast.ml -o test10menhir.tex
- Ott version 0.34   distribution of Mon Dec 30 10:12:45 GMT 2024
- ********** AFTER CHECK, DISAMBIGUATE AND SORT  *********************
- 
- metavar var , x ::= {{ com term variable }} {{ isa string }} {{ coq nat }} {{ hol string }} {{ lem string }} {{ coq-equality  }} {{ ocaml string }} {{ lex alphanum }} {{ tex \mathit{[[0]]} }} {{ ocamllex ['a'-'z''A'-'Z']+ }}
- grammar
- 
- judgement :: '' ::= 
-   
- 
- terminals :: '' ::= 
-   | \                                                          :: terminals_lambda {{ tex \lambda }}
-   | -->                                                        :: terminals_red {{ tex \longrightarrow }}
- 
- 
- term , t , v , atomic_term , at , lhs , rhs , lambda :: '' ::= {{ menhir-start  }}
-   | lhs rhs'                                                   :: T_app 
-   | { t / x } t'                                               :: T_sub {{ isa (tsubst_term [[0]] [[1]] [[2]]) }} {{ hol (tsubst_term [[0]] [[1]] [[2]]) }} {{ coq (tsubst_term [[0]] [[1]] [[2]]) }} {{ lem (tsubst_term [[0]] [[1]] [[2]]) }} {{ ocaml (tsubst_term [[0]] [[1]] [[2]]) }}
-   | x                                                          :: T_var 
-   | ( t )                                                      :: T_paren 
-   | \ x . t                                                    :: T_lambda 
- 
- 
- formula :: '' ::= {{ coq Prop }} {{ hol bool }} {{ lem bool }} {{ isa bool }} {{ ocaml bool }}
-   | judgement                                                  :: formula_judgement 
- 
- 
- user_syntax :: '' ::= 
-   | var                                                        :: user_syntax__var 
-   | term                                                       :: user_syntax__term 
-   | terminals                                                  :: user_syntax__terminals 
- 
- 
- subrules
- 
- 
- 
- substitutions
- 
- 
- ocamlbuild -use-ocamlfind -use-menhir -menhir "menhir --infer" -package pprint main.byte
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package pprint -modules main.ml > main.ml.depends
- + ocamlfind ocamldep -package pprint -modules test10menhir_ast.ml > test10menhir_ast.ml.depends
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q test10menhir_lexer.mll
- + ocamlfind ocamldep -package pprint -modules test10menhir_lexer.ml > test10menhir_lexer.ml.depends
- + menhir --infer --raw-depend --ocamldep 'ocamlfind ocamldep -modules' test10menhir_parser.mly > test10menhir_parser.mly.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_ast.cmo test10menhir_ast.ml
- + menhir --infer --ocamlc 'ocamlfind ocamlc -package pprint' --infer test10menhir_parser.mly
- + ocamlfind ocamldep -package pprint -modules test10menhir_parser.mli > test10menhir_parser.mli.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_parser.cmi test10menhir_parser.mli
- + ocamlfind ocamldep -package pprint -modules test10menhir_parser_pp.ml > test10menhir_parser_pp.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_lexer.cmo test10menhir_lexer.ml
- + ocamlfind ocamlc -c -package pprint -o test10menhir_parser_pp.cmo test10menhir_parser_pp.ml
- + ocamlfind ocamlc -c -package pprint -o main.cmo main.ml
- + ocamlfind ocamldep -package pprint -modules test10menhir_parser.ml > test10menhir_parser.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_parser.cmo test10menhir_parser.ml
- + ocamlfind ocamlc -linkpkg -package pprint test10menhir_ast.cmo test10menhir_parser.cmo test10menhir_lexer.cmo test10menhir_parser_pp.cmo main.cmo -o main.byte
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test10menhir'
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "tests/menhir_tests/test10menhir_with_aux_args" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ott.0.34)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test10menhir_with_aux_args'
- ../../../bin/ott -aux_style_rules false -show_sort true -quotient_rules false -generate_aux_rules true -i test10menhir_with_aux.ott  -o test10menhir_with_aux_parser.mly -o test10menhir_with_aux_lexer.mll -o test10menhir_with_aux_ast.ml -o test10menhir_with_aux.tex
- Ott version 0.34   distribution of Mon Dec 30 10:12:45 GMT 2024
- ********** AFTER CHECK, DISAMBIGUATE AND SORT  *********************
- 
- metavar var , x ::= {{ com term variable }} {{ isa string }} {{ coq nat }} {{ hol string }} {{ lem string }} {{ coq-equality  }} {{ ocaml string }} {{ lex alphanum }} {{ tex \mathit{[[0]]} }} {{ ocamllex ['a'-'z''A'-'Z']+ }}
- grammar
- 
- l :: '' ::= {{ phantom  }} {{ ocaml l }} {{ com Source location }} {{ pp l = pp_l l }} {{ pp-raw l = pp_l l }}
-   |                                                            :: Unknown {{ ocaml Unknown }}
- 
- 
- term , t , v , atomic_term , at , lhs , rhs , lambda :: '' ::= {{ menhir-start  }} {{ aux _ l }}
-   | lhs rhs' l                                                 :: T_app 
-   | { t / x } t' l                                             :: T_sub {{ isa (tsubst_term [[0]] [[1]] [[2]]) }} {{ hol (tsubst_term [[0]] [[1]] [[2]]) }} {{ coq (tsubst_term [[0]] [[1]] [[2]]) }} {{ lem (tsubst_term [[0]] [[1]] [[2]]) }} {{ ocaml (tsubst_term [[0]] [[1]] [[2]]) }}
-   | Foo term l                                                 :: T_foo 
-   | x l                                                        :: T_var 
-   | ( t ) l                                                    :: T_paren 
-   | \ x . t l                                                  :: T_lambda 
- 
- 
- terminals :: '' ::= 
-   | \                                                          :: terminals_lambda {{ tex \lambda }}
-   | -->                                                        :: terminals_red {{ tex \longrightarrow }}
- 
- 
- judgement :: '' ::= 
-   
- 
- user_syntax :: '' ::= 
-   | var                                                        :: user_syntax__var 
-   | l                                                          :: user_syntax__l 
-   | term                                                       :: user_syntax__term 
-   | terminals                                                  :: user_syntax__terminals 
- 
- 
- formula :: '' ::= {{ coq Prop }} {{ hol bool }} {{ lem bool }} {{ isa bool }} {{ ocaml bool }}
-   | judgement                                                  :: formula_judgement 
- 
- 
- subrules
- 
- 
- 
- substitutions
- 
- 
- ocamlbuild -use-ocamlfind -use-menhir -menhir "menhir --infer" -package pprint main.byte
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package pprint -modules main.ml > main.ml.depends
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_ast.ml > test10menhir_with_aux_ast.ml.depends
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q test10menhir_with_aux_lexer.mll
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_lexer.ml > test10menhir_with_aux_lexer.ml.depends
- + menhir --infer --raw-depend --ocamldep 'ocamlfind ocamldep -modules' test10menhir_with_aux_parser.mly > test10menhir_with_aux_parser.mly.depends
- + menhir --infer --raw-depend --ocamldep 'ocamlfind ocamldep -modules' test10menhir_with_aux_parser.mly > test10menhir_with_aux_parser.mly.depends
- File "test10menhir_with_aux_parser.mly", line 23, characters 0-1:
- Warning: symbol l is unreachable from the start symbol.
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_ast.cmo test10menhir_with_aux_ast.ml
- + menhir --infer --ocamlc 'ocamlfind ocamlc -package pprint' --infer test10menhir_with_aux_parser.mly
- + menhir --infer --ocamlc 'ocamlfind ocamlc -package pprint' --infer test10menhir_with_aux_parser.mly
- File "test10menhir_with_aux_parser.mly", line 23, characters 0-1:
- Warning: symbol l is unreachable from the start symbol.
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_parser.mli > test10menhir_with_aux_parser.mli.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_parser.cmi test10menhir_with_aux_parser.mli
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_parser_pp.ml > test10menhir_with_aux_parser_pp.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_lexer.cmo test10menhir_with_aux_lexer.ml
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_parser_pp.cmo test10menhir_with_aux_parser_pp.ml
- + ocamlfind ocamlc -c -package pprint -o main.cmo main.ml
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_parser.ml > test10menhir_with_aux_parser.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_parser.cmo test10menhir_with_aux_parser.ml
- + ocamlfind ocamlc -linkpkg -package pprint test10menhir_with_aux_ast.cmo test10menhir_with_aux_parser.cmo test10menhir_with_aux_lexer.cmo test10menhir_with_aux_parser_pp.cmo main.cmo -o main.byte
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test10menhir_with_aux_args'
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "tests/menhir_tests/test10menhir_with_aux_rules" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ott.0.34)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test10menhir_with_aux_rules'
- ../../../bin/ott -aux_style_rules true -show_sort true -quotient_rules false -generate_aux_rules true -i test10menhir_with_aux.ott  -o test10menhir_with_aux_parser.mly -o test10menhir_with_aux_lexer.mll -o test10menhir_with_aux_ast.ml -o test10menhir_with_aux.tex
- Ott version 0.34   distribution of Mon Dec 30 10:12:45 GMT 2024
- ********** AFTER CHECK, DISAMBIGUATE AND SORT  *********************
- 
- metavar var , x ::= {{ com term variable }} {{ isa string }} {{ coq nat }} {{ hol string }} {{ lem string }} {{ coq-equality  }} {{ ocaml string }} {{ lex alphanum }} {{ tex \mathit{[[0]]} }} {{ ocamllex ['a'-'z''A'-'Z']+ }}
- grammar
- 
- l :: '' ::= {{ phantom  }} {{ ocaml l }} {{ com Source location }} {{ pp l = pp_l l }} {{ pp-raw l = pp_l l }}
-   |                                                            :: Unknown {{ ocaml Unknown }}
- 
- 
- term_aux :: '' ::= {{ menhir-start  }} {{ aux _ l }}
-   | lhs rhs'                                                   :: T_app 
-   | { t / x } t'                                               :: T_sub {{ isa (tsubst_term [[0]] [[1]] [[2]]) }} {{ hol (tsubst_term [[0]] [[1]] [[2]]) }} {{ coq (tsubst_term [[0]] [[1]] [[2]]) }} {{ lem (tsubst_term [[0]] [[1]] [[2]]) }} {{ ocaml (tsubst_term [[0]] [[1]] [[2]]) }}
-   | Foo term                                                   :: T_foo 
-   | x                                                          :: T_var 
-   | ( t )                                                      :: T_paren 
-   | \ x . t                                                    :: T_lambda 
- 
- term , t , v , atomic_term , at , lhs , rhs , lambda :: '' ::= 
-   | term_aux l                                                 :: T_aux 
- 
- 
- terminals :: '' ::= 
-   | \                                                          :: terminals_lambda {{ tex \lambda }}
-   | -->                                                        :: terminals_red {{ tex \longrightarrow }}
- 
- 
- judgement :: '' ::= 
-   
- 
- user_syntax :: '' ::= 
-   | var                                                        :: user_syntax__var 
-   | l                                                          :: user_syntax__l 
-   | term_aux                                                   :: user_syntax__term_aux 
-   | term                                                       :: user_syntax__term 
-   | terminals                                                  :: user_syntax__terminals 
- 
- 
- formula :: '' ::= {{ coq Prop }} {{ hol bool }} {{ lem bool }} {{ isa bool }} {{ ocaml bool }}
-   | judgement                                                  :: formula_judgement 
- 
- 
- subrules
- 
- 
- 
- substitutions
- 
- 
- ocamlbuild -use-ocamlfind -use-menhir -menhir "menhir --infer" -package pprint main.byte
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package pprint -modules main.ml > main.ml.depends
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_ast.ml > test10menhir_with_aux_ast.ml.depends
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q test10menhir_with_aux_lexer.mll
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_lexer.ml > test10menhir_with_aux_lexer.ml.depends
- + menhir --infer --raw-depend --ocamldep 'ocamlfind ocamldep -modules' test10menhir_with_aux_parser.mly > test10menhir_with_aux_parser.mly.depends
- + menhir --infer --raw-depend --ocamldep 'ocamlfind ocamldep -modules' test10menhir_with_aux_parser.mly > test10menhir_with_aux_parser.mly.depends
- File "test10menhir_with_aux_parser.mly", line 23, characters 0-1:
- Warning: symbol l is unreachable from the start symbol.
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_ast.cmo test10menhir_with_aux_ast.ml
- + menhir --infer --ocamlc 'ocamlfind ocamlc -package pprint' --infer test10menhir_with_aux_parser.mly
- + menhir --infer --ocamlc 'ocamlfind ocamlc -package pprint' --infer test10menhir_with_aux_parser.mly
- File "test10menhir_with_aux_parser.mly", line 23, characters 0-1:
- Warning: symbol l is unreachable from the start symbol.
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_parser.mli > test10menhir_with_aux_parser.mli.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_parser.cmi test10menhir_with_aux_parser.mli
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_parser_pp.ml > test10menhir_with_aux_parser_pp.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_lexer.cmo test10menhir_with_aux_lexer.ml
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_parser_pp.cmo test10menhir_with_aux_parser_pp.ml
- + ocamlfind ocamlc -c -package pprint -o main.cmo main.ml
- + ocamlfind ocamldep -package pprint -modules test10menhir_with_aux_parser.ml > test10menhir_with_aux_parser.ml.depends
- + ocamlfind ocamlc -c -package pprint -o test10menhir_with_aux_parser.cmo test10menhir_with_aux_parser.ml
- + ocamlfind ocamlc -linkpkg -package pprint test10menhir_with_aux_ast.cmo test10menhir_with_aux_parser.cmo test10menhir_with_aux_lexer.cmo test10menhir_with_aux_parser_pp.cmo main.cmo -o main.byte
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ott.0.34/tests/menhir_tests/test10menhir_with_aux_rules'
-> compiled  ott.0.34
-> removed   ott.0.34
-> installed ott.0.34
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:42.26 ---> saved as "a4487876348d575edc9540f1df2469c757d987c02ca87e0eb657e265dd6f0b76"
Job succeeded
2026-04-11 02:42.39: Job succeeded