(not at the head of any monitored branch or PR)
2025-08-05 14:00.14: New job: test elpi.2.0.7 with dune.3.20.0~alpha2, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28298/head (dd5533520fdcb5364efecb41d297e786ddcc1f76)
                              on debian-12-ocaml-5.3/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/28298/head" && git reset --hard dd553352
git fetch origin master
git merge --no-edit 39155538b0d7654773a68bd42b0b7dbb8eb14ad7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha2 3.20.0~alpha2
RUN opam reinstall dune.3.20.0~alpha2; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.20.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall elpi.2.0.7; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'elpi.2.0.7' && 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 elpi.2.0.7) || true
RUN opam reinstall --with-test --verbose elpi.2.0.7; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'elpi.2.0.7' && 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 .

2025-08-05 14:00.14: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03-dune.3.20.0~alpha2-elpi.2.0.7-dd5533520fdcb5364efecb41d297e786ddcc1f76"
2025-08-05 14:00.14: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha2 3.20.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.20.0~alpha2;\
             \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-12\\\"\"; 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.20.0~alpha2' && 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 elpi.2.0.7;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'elpi.2.0.7' && 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 elpi.2.0.7) || true"))
 (run (shell  "opam reinstall --with-test --verbose elpi.2.0.7;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'elpi.2.0.7' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-08-05 14:00.14: Waiting for resource in pool OCluster
2025-08-05 18:18.53: Waiting for worker…
2025-08-05 18:21.25: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 39155538b0 Merge pull request #28292 from gildor478/release-ocamlmod-v0.1.1
Updating 39155538b0..dd5533520f
Fast-forward
 .../chrome-trace/chrome-trace.3.20.0~alpha2/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.20.0~alpha2/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.20.0~alpha2/opam             | 47 ++++++++++++++
 .../dune-configurator.3.20.0~alpha2/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.20.0~alpha2/opam    | 44 +++++++++++++
 .../dune-private-libs.3.20.0~alpha2/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam      | 45 +++++++++++++
 packages/dune-site/dune-site.3.20.0~alpha2/opam    | 39 ++++++++++++
 packages/dune/dune.3.20.0~alpha2/opam              | 74 ++++++++++++++++++++++
 packages/dyn/dyn.3.20.0~alpha2/opam                | 42 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.20.0~alpha2/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.20.0~alpha2/opam          | 46 ++++++++++++++
 packages/xdg/xdg.3.20.0~alpha2/opam                | 41 ++++++++++++
 15 files changed, 704 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.20.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.20.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.20.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.20.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.20.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.20.0~alpha2/opam

(from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03' locally
docker.io/ocaml/opam@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03: Pulling from ocaml/opam
Digest: sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
Status: Downloaded newer image for ocaml/opam@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
2025-08-05 18:21.33 ---> using "136b9da5b4792138f95300e61d33f42dd45fd35a017a7276daca78afc682748d" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-05 18:21.33 ---> using "a388c5b35cadef4c2005715355a9e850636d9e91fb537c5a71d1c45917048fdc" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-05 18:21.33 ---> using "bb165827456dcd23ceb0ae78f1e65a9e17509720f29c738eb19faac8565f141e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.3
# invariant            ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-08-05 18:21.33 ---> using "531a32bcfb595c38d922854047b33660029bc78d4418665c28feb76af7b35eb4" 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/"))
2025-08-05 18:21.33 ---> using "c20e3b5fdf01328bb44c0a8a29e7ec3ba2d9ed727ee69b4cd024fdd82aedb434" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-08-05 18:21.34 ---> using "73494652ae5cbe73a570c2fb3cc60f88e48a99790b2100e85d610a014663672a" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-05 18:21.34 ---> using "5bbb47b46e833101d358bd0bb3fba662d23c88e2c7611a7dd61fda7a882c4749" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Fetched 103 kB in 5s (19.5 kB/s)
- Reading package lists...
2025-08-05 18:21.34 ---> using "14a0dd3c170709748f601221b68c6aec534b4baf4f768f1c44b08e16fb5c04c8" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha2 3.20.0~alpha2"))
dune is now pinned to version 3.20.0~alpha2
2025-08-05 18:21.34 ---> using "0dc86ba3c315436269fe1d18479eccd8e74e465ed875d7836ac6b36e3e42dd34" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.20.0~alpha2;\
                        \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-12\\\"\"; 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.20.0~alpha2' && 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.20.0~alpha2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.20.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha2  (cached)
-> installed dune.3.20.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:21.34 ---> using "7d66253a831e807c66c378f2d3d96a3f69d560a0160b70f90707e09e26b92cea" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall elpi.2.0.7;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'elpi.2.0.7' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
elpi.2.0.7 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 24 packages
  - install atd                 2.16.0   [required by atdgen, atdts]
  - install atdgen              2.15.0   [required by elpi]
  - install atdgen-runtime      2.16.0   [required by atdgen]
  - install atdts               2.16.0   [required by elpi]
  - install biniou              1.2.2    [required by atdgen]
  - install camlp-streams       5.0.1    [required by biniou]
  - install cmdliner            1.3.0    [required by atdts]
  - install cppo                1.8.0    [required by ppx_deriving]
  - install easy-format         1.3.4    [required by atd]
  - install elpi                2.0.7
  - install menhir              20240715 [required by elpi]
  - install menhirCST           20240715 [required by menhir]
  - install menhirLib           20240715 [required by menhir]
  - install menhirSdk           20240715 [required by menhir]
  - install ocaml-compiler-libs v0.17.0  [required by ppxlib]
  - install ocamlfind           1.9.8    [required by ppx_deriving]
  - install ppx_derivers        1.2.1    [required by ppx_deriving]
  - install ppx_deriving        6.0.3    [required by elpi]
  - install ppxlib              0.35.0   [required by elpi]
  - install re                  1.13.2   [required by elpi]
  - install seq                 base     [required by re, yojson]
  - install sexplib0            v0.17.0  [required by ppxlib]
  - install stdlib-shims        0.3.0    [required by elpi]
  - install yojson              2.2.2    [required by atdgen]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0, atdts.2.16.0  (cached)
-> retrieved atdgen.2.15.0  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> installed easy-format.1.3.4
-> installed camlp-streams.5.0.1
-> retrieved elpi.2.0.7  (cached)
-> installed biniou.1.2.2
-> installed cppo.1.8.0
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> installed menhirCST.20240715
-> retrieved ppxlib.0.35.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved re.1.13.2  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved yojson.2.2.2  (cached)
-> installed menhirSdk.20240715
-> installed menhirLib.20240715
-> installed cmdliner.1.3.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed re.1.13.2
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.2.2.2
-> installed atdgen-runtime.2.16.0
-> installed ocamlfind.1.9.8
-> installed menhir.20240715
-> installed ppxlib.0.35.0
-> installed atd.2.16.0
-> installed atdts.2.16.0
-> installed atdgen.2.15.0
-> installed ppx_deriving.6.0.3
-> installed elpi.2.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:22.11 ---> saved as "1c419af728961c6fa185e8afcd623e3bcb7a4ec76939468e3b171cbe85d33d49"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test elpi.2.0.7) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile elpi         2.0.7
=== install 5 packages
  - install   ANSITerminal 0.8.5 [required by elpi]
  - install   base-bytes   base  [required by ANSITerminal]
  - install   conf-time    1     [required by elpi]
  - install   conf-which   1     [required by conf-time]
  - install   fileutils    0.6.6 [required by elpi]

The following system packages will first need to be installed:
    time

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "time"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package time.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18778 files and directories currently installed.)
- Preparing to unpack .../time_1.9-0.2_amd64.deb ...
- Unpacking time (1.9-0.2) ...
- Setting up time (1.9-0.2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ANSITerminal.0.8.5  (https://opam.ocaml.org/cache)
-> installed base-bytes.base
-> installed conf-which.1
-> installed conf-time.1
-> installed ANSITerminal.0.8.5
-> retrieved elpi.2.0.7  (https://opam.ocaml.org/cache)
-> retrieved fileutils.0.6.6  (https://opam.ocaml.org/cache)
-> removed   elpi.2.0.7
-> installed fileutils.0.6.6
-> installed elpi.2.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:22.53 ---> saved as "dabb6baa2d5fb5db766fa25eb399b7390606fc974dbab875509d9a09ed62a4d6"

/home/opam: (run (shell  "opam reinstall --with-test --verbose elpi.2.0.7;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'elpi.2.0.7' && 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 elpi 2.0.7

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [elpi.2.0.7: extract]
-> retrieved elpi.2.0.7  (cached)
Processing  2/4: [elpi: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "elpi" "-j" "255" (CWD=/home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7)
- (cd _build/default/src/parser && /home/opam/.opam/5.3/bin/menhir tokens.mly grammar.mly token_precedence.mly --base grammar --compile-errors error_messages.txt) > _build/default/src/parser/error_messages.ml
- Read 373 sample input sentences and 41 error messages.
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I trace/runtime/.trace_ppx_runtime.objs/byte -I /home/opam/.opam/5.3/lib/re -I /home/opam/.opam/5.3/lib/seq -cmi-file trace/runtime/.trace_ppx_runtime.objs/byte/trace_ppx_runtime__Runtime.cmi -no-alias-deps -open Trace_ppx_runtime -o trace/runtime/.trace_ppx_runtime.objs/byte/trace_ppx_runtime__Runtime.cmo -c -impl trace/runtime/runtime.ml)
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include: 
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w -40 -g -I trace/runtime/.trace_ppx_runtime.objs/byte -I trace/runtime/.trace_ppx_runtime.objs/native -I /home/opam/.opam/5.3/lib/re -I /home/opam/.opam/5.3/lib/seq -cmi-file trace/runtime/.trace_ppx_runtime.objs/byte/trace_ppx_runtime__Runtime.cmi -no-alias-deps -open Trace_ppx_runtime -o trace/runtime/.trace_ppx_runtime.objs/native/trace_ppx_runtime__Runtime.cmx -c -impl trace/runtime/runtime.ml)
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include: 
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
Processing  2/4: [elpi: make tests]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "tests" "DUNE_OPTS=-p elpi" "SKIP=performance_HO" "SKIP+=performance_FO" "SKIP+=elpi_api_performance" (CWD=/home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7)
- make build
- make[1]: Entering directory '/home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7'
- dune build -p elpi @all
- make[1]: Leaving directory '/home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7'
- dune runtest
- (cd _build/default && /home/opam/.opam/5.3/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -w -9 -w -32 -w -27 -warn-error -A -g -I trace/runtime/.trace_ppx_runtime.objs/byte -I trace/runtime/.trace_ppx_runtime.objs/native -I /home/opam/.opam/5.3/lib/re -I /home/opam/.opam/5.3/lib/seq -cmi-file trace/runtime/.trace_ppx_runtime.objs/byte/trace_ppx_runtime__Runtime.cmi -no-alias-deps -opaque -open Trace_ppx_runtime -o trace/runtime/.trace_ppx_runtime.objs/native/trace_ppx_runtime__Runtime.cmx -c -impl trace/runtime/runtime.ml)
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include: 
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- (cd _build/default/src/runtime && ./test_discrimination_tree.exe)
- 
- -> Running test 1 <-
-  Retrived clause number is 3
- 
- -> Running test 2 <-
-  Retrived clause number is 1
- 
- -> Running test 3 <-
-  Retrived clause number is 3
- 
- -> Running test 4 <-
-  Retrived clause number is 2
- Test remove 1
- Test remove 2
- Test remove 3
- Test remove 4
- (cd _build/default/src/runtime && ./test_bl.exe)
- build: bl=0.948277 l=0.739048
- ulimit -s 1114112; OCAMLRUNPARAM=l=1114112 \
- 	tests/test.exe \
- 	--seed $RANDOM \
- 	--promote false \
- 	--ln_nb=-1 \
- 	--timeout 90.0 \
- 	--stop-on-first-error=false \
- 	--time /usr/bin/time \
- 	--sources=/home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7/tests/sources/ \
- 	--plot=/home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7/tests/plot \
- 	 \
- 	--cat-skip performance_HO --cat-skip performance_FO --cat-skip elpi_api_performance \
- 	--runner /home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7/_build/install/default/bin/elpi --runner /home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7/_build/install/default/bin/elpi-trace-elaborator
- ------------------------------------------------------------------
- Runners: /home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7/_build/install/default/bin/elpi /home/opam/.opam/5.3/.opam-switch/build/elpi.2.0.7/_build/install/default/bin/elpi-trace-elaborator
- Random seed: 26187
- Timeout: 90.00 seconds
- Fiber stack: 1114112
- 
- status   test                  time   typchk wall   mem     runner
- ------------------------------------------------------------------
- RUNNING  CHR_no_clique (CHR rule on a non constraint) elpi
OK       CHR_no_clique          0.00   0.00   0.00    0.0M  elpi
- RUNNING  IO_COLON (IO_COLON token)                   elpi
OK       IO_COLON               0.00   0.00   0.02   13.6M  elpi
- RUNNING  accumulate_twice1 (double accumulate)       elpi
OK       accumulate_twice1      0.00   0.00   0.00    0.0M  elpi
- RUNNING  accumulate_twice2 (double accumulate)       elpi
OK       accumulate_twice2      0.00   0.00   0.00    0.0M  elpi
- RUNNING  asclause (parsing of the .. as X clause)    elpi
OK       asclause               0.00   0.00   0.02   13.6M  elpi
- RUNNING  backtracking (backtracking variable assignment) elpi
OK       backtracking           0.00   0.00   0.02   13.6M  elpi
- RUNNING  bad_index (bad indexing directive)          elpi
OK       bad_index              0.00   0.00   0.00    0.0M  elpi
- RUNNING  beta (beta reduction)                       elpi
OK       beta                   0.00   0.00   0.02   13.7M  elpi
- RUNNING  block (blocks are closed)                   elpi
OK       block                  0.00   0.00   0.00    0.0M  elpi
- RUNNING  bug-256 (move/unif)                         elpi
OK       bug-256                0.00   0.00   0.02   13.8M  elpi
- RUNNING  bug19 (unif under binders)                  elpi
OK       bug19                  0.00   0.00   0.02   13.7M  elpi
- RUNNING  bug_226 (move/unif bug)                     elpi
OK       bug_226                0.00   0.00   0.02   13.6M  elpi
- RUNNING  chr (constraints handling rules)            elpi
OK       chr                    0.00   0.00   0.02   13.8M  elpi
- RUNNING  chr-scope (chr-relocation)                  elpi
OK       chr-scope              0.00   0.00   0.02   13.8M  elpi
- RUNNING  chr-scope-change (chr-relocation)           elpi
OK       chr-scope-change       0.00   0.00   0.02   13.8M  elpi
- RUNNING  chr-scope-change-err (chr-relocation)       elpi
OK       chr-scope-change-err   0.00   0.00   0.00    0.0M  elpi
- RUNNING  chr_even_odd (CHR example at MLWS)          elpi
OK       chr_even_odd           0.00   0.00   0.02   13.7M  elpi
- RUNNING  chr_gcd (greatest common divisor in CHR)    elpi
OK       chr_gcd                0.00   0.00   0.02   13.8M  elpi
- RUNNING  chr_leq (chr transitive closure)            elpi
OK       chr_leq                0.00   0.00   0.02   13.8M  elpi
- RUNNING  chr_nokey (constraints keyed on _)          elpi
OK       chr_nokey              0.00   0.00   0.02   13.7M  elpi
- RUNNING  chr_nokey2 (constraints keyed on _)         elpi
OK       chr_nokey2             0.00   0.00   0.02   13.6M  elpi
- RUNNING  chr_sem (refined operational semantics)     elpi
OK       chr_sem                0.00   0.00   0.02   13.7M  elpi
- RUNNING  chr_ut (type checker with UT via CHR)       elpi
OK       chr_ut                 0.00   0.00   0.03   13.8M  elpi
- RUNNING  chr_with_hypotheses (chr_with_hypotheses)   elpi
OK       chr_with_hypotheses    0.00   0.00   0.02   13.7M  elpi
- RUNNING  conj2 (parsing and evaluation of & (binary conj)) elpi
OK       conj2                  0.00   0.00   0.02   13.7M  elpi
- RUNNING  cut1 (what else)                            elpi
OK       cut1                   0.00   0.00   0.02   13.6M  elpi
- RUNNING  cut2 (what else)                            elpi
- OK       cut2                   0.00   0.00   0.02   13.7M  elpi
- RUNNING  cut3 (what else)                            elpi
OK       cut3                   0.00   0.00   0.02   13.7M  elpi
- RUNNING  cut4 (what else)                            elpi
OK       cut4                   0.00   0.00   0.02   13.7M  elpi
- RUNNING  cut5 (what else)                            elpi
OK       cut5                   0.00   0.00   0.02   13.7M  elpi
- RUNNING  cut6 (what else)                            elpi
OK       cut6                   0.00   0.00   0.03   13.8M  elpi
- RUNNING  discard (_)                                 elpi
OK       discard                0.00   0.00   0.02   13.6M  elpi
- RUNNING  dt_bug_272 (dt list truncation heuristic)   elpi
OK       dt_bug_272             0.02   0.00   0.04   13.8M  elpi
- RUNNING  dt_max_depths (discrimination_tree max_depth) elpi
OK       dt_max_depths          0.00   0.00   0.02   13.7M  elpi
- RUNNING  dt_multiparam1 (discrimination_tree indexing multi argument) elpi
OK       dt_multiparam1         0.61   0.00   0.64   18.8M  elpi
- RUNNING  dt_multiparam2 (discrimination_tree indexing multi with flexible) elpi
- OK       dt_multiparam2         0.60   0.00   0.63   18.7M  elpi
- RUNNING  dt_multiparam3 (discrimination_tree indexing multi with flexible in input mode) elpi
- OK       dt_multiparam3         0.00   0.00   0.00    0.0M  elpi
- RUNNING  dt_multivar (discrimination_tree indexing multi with flexible in input mode) elpi
OK       dt_multivar            0.00   0.00   0.03   13.8M  elpi
- RUNNING  dt_var (discrimination_tree indexing flex)  elpi
OK       dt_var                 0.00   0.00   0.02   13.7M  elpi
- RUNNING  dt_var2 (discrimination_tree indexing flex) elpi
OK       dt_var2                0.00   0.00   0.02   13.7M  elpi
- RUNNING  elpi_only_llam (full HO unif gives error)   elpi
OK       elpi_only_llam         0.00   0.00   0.00    0.0M  elpi
- RUNNING  eta (test eta for rigid terms)              elpi
OK       eta                    0.00   0.00   0.02   13.8M  elpi
- RUNNING  eta_as (eta expansion of as clause)         elpi
OK       eta_as                 0.00   0.00   0.03   13.7M  elpi
- RUNNING  eta_oc (eta expansion and occur check)      elpi
OK       eta_oc                 0.00   0.00   0.02   13.8M  elpi
- RUNNING  findall (stash across backtrack)            elpi
OK       findall                0.00   0.00   0.02   13.8M  elpi
- RUNNING  graft_before (grafting a clause before the clause of another predicate) elpi
OK       graft_before           0.00   0.00   0.02   13.7M  elpi
- RUNNING  graft_before_same (grafting a clause before the clause of the same predicate) elpi
OK       graft_before_same      0.00   0.00   0.03   13.8M  elpi
- RUNNING  graft_remove (remove a clase)               elpi
OK       graft_remove           0.00   0.00   0.03   13.7M  elpi
- RUNNING  graft_replace_err (replacing a clase)       elpi
OK       graft_replace_err      0.00   0.00   0.00    0.0M  elpi
- RUNNING  graft_replace_ok (replacing a clase)        elpi
OK       graft_replace_ok       0.00   0.00   0.02   13.8M  elpi
- RUNNING  hc_interp (Horn Clauses interpreter)        elpi
OK       hc_interp              0.00   0.00   0.02   13.8M  elpi
- RUNNING  hdclause (hdclause unification)             elpi
OK       hdclause               0.00   0.00   0.02   13.8M  elpi
- RUNNING  heap_discard (heapification of _)           elpi
OK       heap_discard           0.00   0.00   0.02   13.6M  elpi
- RUNNING  hilbert (hilbert)                           elpi
OK       hilbert                0.00   0.00   0.02   13.7M  elpi
- RUNNING  hilbert2 (hilbert2)                         elpi
OK       hilbert2               0.00   0.00   0.02   13.7M  elpi
- RUNNING  ho (HO predicates)                          elpi
OK       ho                     0.00   0.00   0.02   13.8M  elpi
- RUNNING  hollight (hollight implementation)          elpi
OK       hollight               0.00   0.00   0.00    0.0M  elpi
- RUNNING  holp (HOL programming)                      elpi
- OK       holp                   0.00   0.00   0.03   13.9M  elpi
- RUNNING  hyp_uvar (uvar at the left of implication)  elpi
OK       hyp_uvar               0.00   0.00   0.02   13.8M  elpi
- RUNNING  ifdef (lexer ifdef)                         elpi
OK       ifdef                  0.00   0.00   0.02   13.6M  elpi
- RUNNING  impl (implication)                          elpi
OK       impl                   0.00   0.00   0.02   13.8M  elpi
- RUNNING  impl2 (implication)                         elpi
OK       impl2                  0.00   0.00   0.02   13.7M  elpi
- RUNNING  impl_order (implication and pair/list)      elpi
OK       impl_order             0.00   0.00   0.02   13.8M  elpi
- RUNNING  impl_prec (warning about A => B, C)         elpi
OK       impl_prec              0.00   0.00   0.02   13.6M  elpi
- RUNNING  impl_prec_silent (warning about A => B, C)  elpi
OK       impl_prec_silent       0.00   0.00   0.02   13.7M  elpi
- RUNNING  is (calc)                                   elpi
OK       is                     0.00   0.00   0.02   13.7M  elpi
- RUNNING  lambda4 (simple type checker)               elpi
OK       lambda4                0.00   0.00   0.02   13.6M  elpi
- RUNNING  lambda5 (simple type checker)               elpi
OK       lambda5                0.00   0.00   0.00    0.0M  elpi
- RUNNING  lambda6 (simple type checker)               elpi
OK       lambda6                0.00   0.00   0.00    0.0M  elpi
- RUNNING  lambda_arrow1 (simple type checker)         elpi
OK       lambda_arrow1          0.00   0.00   0.03   13.6M  elpi
- RUNNING  lambda_arrow2 (simple type checker)         elpi
OK       lambda_arrow2          0.00   0.00   0.02   13.8M  elpi
- RUNNING  lambdadelta (lambda delta tests)            elpi
OK       lambdadelta            0.00   0.00   0.03   13.9M  elpi
- RUNNING  linear (linear variable check)              elpi
OK       linear                 0.00   0.00   0.02   13.7M  elpi
- RUNNING  list_as_conj (list is an nary conjunction)  elpi
OK       list_as_conj           0.00   0.00   0.02   13.6M  elpi
- RUNNING  list_comma (lists with spurious , in there) elpi
OK       list_comma             0.00   0.00   0.02   13.7M  elpi
- RUNNING  llam (Miller pattern unification)           elpi
OK       llam                   0.00   0.00   0.02   13.8M  elpi
- RUNNING  llamb0_exit1 (Outside the llamb0 fragment)  elpi
OK       llamb0_exit1           0.00   0.00   0.03   13.7M  elpi
- RUNNING  llamb0_exit2 (Outside the llamb0 fragment)  elpi
OK       llamb0_exit2           0.00   0.00   0.03   13.8M  elpi
- RUNNING  llamb0_exit3 (Outside the llamb0 fragment)  elpi
OK       llamb0_exit3           0.00   0.00   0.02   13.7M  elpi
- RUNNING  llamb0_exit4 (Outside the llamb0 fragment)  elpi
OK       llamb0_exit4           0.00   0.00   0.02   13.7M  elpi
- RUNNING  llamb0_exit5 (Outside the llamb0 fragment)  elpi
OK       llamb0_exit5           0.00   0.00   0.02   13.6M  elpi
- RUNNING  llamb0_exit6 (Outside the llamb0 fragment)  elpi
OK       llamb0_exit6           0.00   0.00   0.02   13.7M  elpi
- RUNNING  mk_uv_meta (uvar surgery at the meta level) elpi
OK       mk_uv_meta             0.00   0.00   0.02   13.7M  elpi
- RUNNING  mode_checking_fo (mode_checking_fo)         elpi
OK       mode_checking_fo       0.00   0.00   0.02   13.8M  elpi
- RUNNING  mode_checking_ho (mode_checking_ho)         elpi
OK       mode_checking_ho       0.00   0.00   0.02   13.8M  elpi
- RUNNING  name (name builtin)                         elpi
OK       name                   0.00   0.00   0.02   13.6M  elpi
- RUNNING  named_clauses00 (clause grafting using names) elpi
OK       named_clauses00        0.00   0.00   0.00    0.0M  elpi
- RUNNING  named_clauses01 (clause grafting using names) elpi
- OK       named_clauses01        0.00   0.00   0.00    0.0M  elpi
- RUNNING  named_clauses02 (clause grafting using names) elpi
OK       named_clauses02        0.00   0.00   0.02   13.8M  elpi
- RUNNING  namespace00 (namespacing of predicates and constants) elpi
OK       namespace00            0.00   0.00   0.02   13.7M  elpi
- RUNNING  namespace01 (namespacing of predicates and constants) elpi
OK       namespace01            0.00   0.00   0.02   13.7M  elpi
- RUNNING  namespace02 (namespacing of predicates and constants) elpi
OK       namespace02            0.00   0.00   0.02   13.7M  elpi
- RUNNING  namespace03 (namespacing of predicates and constants) elpi
OK       namespace03            0.00   0.00   0.02   13.8M  elpi
- RUNNING  nil_cons (nil = [])                         elpi
OK       nil_cons               0.00   0.00   0.02   13.6M  elpi
- RUNNING  notation (extensible syntax)                elpi
OK       notation               0.00   0.00   0.02   13.8M  elpi
- RUNNING  notation_error (infix declaration error)    elpi
OK       notation_error         0.00   0.00   0.00    0.0M  elpi
- RUNNING  oc_eta (eta expansion and occur check)      elpi
OK       oc_eta                 0.00   0.00   0.00    0.0M  elpi
- RUNNING  patternunif (Miller pattern unification)    elpi
OK       patternunif            0.00   0.00   0.03   13.8M  elpi
- RUNNING  patternunif2 (Miller pattern unification)   elpi
OK       patternunif2           0.00   0.00   0.03   13.8M  elpi
- RUNNING  pcf (type inference for PCF)                elpi
OK       pcf                    0.00   0.00   0.03   14.1M  elpi
- RUNNING  pi (pi quantification)                      elpi
OK       pi                     0.00   0.00   0.02   13.7M  elpi
- RUNNING  pi3 (pi quantification)                     elpi
OK       pi3                    0.00   0.00   0.03   13.6M  elpi
- RUNNING  pi5 (pi quantification)                     elpi
OK       pi5                    0.00   0.00   0.02   13.7M  elpi
- RUNNING  pnf (some HO programming)                   elpi
OK       pnf                    0.00   0.00   0.02   13.7M  elpi
- RUNNING  polymorphic_variants (typechecker for polymorphic variants) elpi
OK       polymorphic_variants   0.00   0.00   0.03   13.8M  elpi
- RUNNING  printer (printing infix)                    elpi
OK       printer                0.00   0.00   0.02   13.7M  elpi
- RUNNING  progs (progs)                               elpi
OK       progs                  0.00   0.00   0.03   14.0M  elpi
- RUNNING  random (random numbers)                     elpi
OK       random                 0.00   0.00   0.02   13.6M  elpi
- RUNNING  restriction (HO unification scope checking) elpi
OK       restriction            0.00   0.00   0.00    0.0M  elpi
- RUNNING  restriction3 (HO unification scope checking) elpi
OK       restriction3           0.00   0.00   0.02   13.8M  elpi
- RUNNING  restriction4 (HO unification scope checking) elpi
OK       restriction4           0.00   0.00   0.03   13.7M  elpi
- RUNNING  restriction5 (HO unification scope checking) elpi
OK       restriction5           0.00   0.00   0.02   13.6M  elpi
- RUNNING  restriction6 (HO unification scope checking) elpi
OK       restriction6           0.00   0.00   0.03   13.7M  elpi
- RUNNING  same_term (the == operator)                 elpi
OK       same_term              0.00   0.00   0.02   13.8M  elpi
- RUNNING  self_assignment (Miller pattern unification) elpi
- OK       self_assignment        0.00   0.00   0.02   13.6M  elpi
- RUNNING  shorten (shortening names of a namespace)   elpi
OK       shorten                0.00   0.00   0.02   13.7M  elpi
- RUNNING  shorten-EOF (shortening names ends with the file) elpi
OK       shorten-EOF            0.00   0.00   0.02   13.8M  elpi
- RUNNING  shorten_builtin (shortening a builtin)      elpi
OK       shorten_builtin        0.00   0.00   0.02   13.6M  elpi
- RUNNING  shorten_trie (shortening a trie of names)   elpi
OK       shorten_trie           0.00   0.00   0.02   13.8M  elpi
- RUNNING  spill_collision (spilling under 2 pi named the same) elpi
OK       spill_collision        0.00   0.00   0.02   13.7M  elpi
- RUNNING  spill_pi (spilling under pi)                elpi
OK       spill_pi               0.00   0.00   0.02   13.7M  elpi
- RUNNING  spilling_and (spilling anonymous compound goal) elpi
OK       spilling_and           0.00   0.00   0.02   13.8M  elpi
- RUNNING  spilling_impl (spilling implication)        elpi
OK       spilling_impl          0.00   0.00   0.03   13.8M  elpi
- RUNNING  spilling_in_list (spilling prem order)      elpi
OK       spilling_in_list       0.00   0.00   0.02   13.7M  elpi
- RUNNING  spilling_lam (spilling inside anonymous clause) elpi
OK       spilling_lam           0.00   0.00   0.02   13.6M  elpi
- RUNNING  spilling_or (spilling prem order)           elpi
OK       spilling_or            0.00   0.00   0.02   13.7M  elpi
- RUNNING  trace-browser (trace generation)            elpi
OK       trace-browser          0.00   0.00   0.02   13.7M  elpi
- RUNNING  trace-browser-chr (trace generation)        elpi
OK       trace-browser-chr      0.00   0.00   0.02   13.8M  elpi
- RUNNING  trace-browser-cut (trace generation)        elpi
OK       trace-browser-cut      0.00   0.00   0.02   13.8M  elpi
- RUNNING  trace-browser-elab (trace elaboration)      elpi-trace-elaborator
OK       trace-browser-elab     0.00   0.00   0.00    7.1M  elpi-trace-elaborator
- RUNNING  trace-browser-elab-broken1 (recoverable broken trace elaboration) elpi-trace-elaborator
- OK       trace-browser-elab-broken1   0.00   0.00   0.13   32.0M  elpi-trace-elaborator
- RUNNING  trace-browser-elab-broken2 (fatal broken trace elaboration) elpi-trace-elaborator
OK       trace-browser-elab-broken2   0.00   0.00   0.00    0.0M  elpi-trace-elaborator
- RUNNING  trace-browser-elab-chr (trace elaboration)  elpi-trace-elaborator
OK       trace-browser-elab-chr   0.00   0.00   0.00    6.9M  elpi-trace-elaborator
- RUNNING  trace-browser-elab-cut (trace elaboration)  elpi-trace-elaborator
OK       trace-browser-elab-cut   0.00   0.00   0.00    7.1M  elpi-trace-elaborator
- RUNNING  trace-browser-elab-findall (trace elaboration) elpi-trace-elaborator
OK       trace-browser-elab-findall   0.00   0.00   0.00    5.9M  elpi-trace-elaborator
- RUNNING  trace-browser-findall (trace generation)    elpi
OK       trace-browser-findall   0.00   0.00   0.02   13.7M  elpi
- RUNNING  trace-browser-w (trace generation)          elpi
OK       trace-browser-w        0.01   0.00   0.03   13.8M  elpi
- RUNNING  trace-browser-w-elab (trace elaboration)    elpi-trace-elaborator
OK       trace-browser-w-elab   0.00   0.00   0.01    7.8M  elpi-trace-elaborator
- RUNNING  trace-browser2 (trace generation)           elpi
OK       trace-browser2         0.00   0.00   0.02   13.6M  elpi
- RUNNING  trace-browser2-elab (trace elaboration)     elpi-trace-elaborator
OK       trace-browser2-elab    0.00   0.00   0.00    5.2M  elpi-trace-elaborator
- RUNNING  trace-browser3 (trace generation)           elpi
OK       trace-browser3         0.00   0.00   0.02   13.6M  elpi
- RUNNING  trace-browser3-elab (trace elaboration)     elpi-trace-elaborator
OK       trace-browser3-elab    0.00   0.00   0.00    6.3M  elpi-trace-elaborator
- RUNNING  trace-browser4 (trace generation)           elpi
OK       trace-browser4         0.00   0.00   0.02   13.7M  elpi
- RUNNING  trace-browser4-elab (trace elaboration)     elpi-trace-elaborator
OK       trace-browser4-elab    0.00   0.00   0.00    7.1M  elpi-trace-elaborator
- RUNNING  trailing_comment (trailing comment)         elpi
OK       trailing_comment       0.00   0.00   0.02   13.6M  elpi
- RUNNING  trie (discrimination_tree on trees)         elpi
OK       trie                   0.00   0.00   0.02   13.8M  elpi
- RUNNING  typeabbrv1 (type abbreviations)             elpi
OK       typeabbrv1             0.00   0.00   0.02   13.7M  elpi
- RUNNING  typeabbrv10 (type abbreviations and error messages) elpi
OK       typeabbrv10            0.00   0.00   0.00    0.0M  elpi
- RUNNING  typeabbrv11 (type abbreviations and error messages) elpi
OK       typeabbrv11            0.00   0.00   0.00    0.0M  elpi
- RUNNING  typeabbrv12 (type abbreviations and error messages) elpi
- OK       typeabbrv12            0.00   0.00   0.00    0.0M  elpi
- RUNNING  typeabbrv13 (type abbreviations)            elpi
OK       typeabbrv13            0.00   0.00   0.02   13.7M  elpi
- RUNNING  typeabbrv2 (type abbreviations)             elpi
OK       typeabbrv2             0.00   0.00   0.00    0.0M  elpi
- RUNNING  typeabbrv3 (type abbreviations)             elpi
OK       typeabbrv3             0.00   0.00   0.02   13.6M  elpi
- RUNNING  typeabbrv4 (type abbreviations)             elpi
OK       typeabbrv4             0.00   0.00   0.02   13.7M  elpi
- RUNNING  typeabbrv5 (type abbreviations)             elpi
OK       typeabbrv5             0.00   0.00   0.00    0.0M  elpi
- RUNNING  typeabbrv6 (type abbreviations)             elpi
OK       typeabbrv6             0.00   0.00   0.00    0.0M  elpi
- RUNNING  typeabbrv7 (type abbreviations)             elpi
OK       typeabbrv7             0.00   0.00   0.02   13.7M  elpi
- RUNNING  typeabbrv8 (type abbreviations)             elpi
OK       typeabbrv8             0.00   0.00   0.02   13.7M  elpi
- RUNNING  typeabbrv9 (type abbreviations)             elpi
OK       typeabbrv9             0.00   0.00   0.02   13.6M  elpi
- RUNNING  uminus (parsing and evaluation of unary minus) elpi
OK       uminus                 0.00   0.00   0.02   13.6M  elpi
- RUNNING  unix (unix APIs)                            elpi
OK       unix                   0.01   0.00   0.03   13.8M  elpi
- RUNNING  uvar_keyword (uvar kwd status at the meta level) elpi
OK       uvar_keyword           0.00   0.00   0.02   13.8M  elpi
- RUNNING  var (var API)                               elpi
OK       var                    0.00   0.00   0.02   13.7M  elpi
- RUNNING  variadic_declare_constraints (declare_constraint takes keys of different types) elpi
OK       variadic_declare_constraints   0.00   0.00   0.02   13.7M  elpi
- RUNNING  w (ELPI example at MLWS)                    elpi
OK       w                      0.00   0.00   0.02   13.7M  elpi
- ------------------------------------------------------------------
- Tests: 165
- Passed: 165
- Failed: 0
-> compiled  elpi.2.0.7
-> removed   elpi.2.0.7
-> installed elpi.2.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:23.41 ---> saved as "ade523c2bb25644bb3b175de0640471abb9d9abc6c24400e571532fc5f887ace"
Job succeeded
2025-08-05 18:23.54: Job succeeded