- github
- ocaml
- opam-repository
- 3af7d0
- distributions,archlinux-ocaml-4.14,tezt.4.2.0,tests
(not at the head of any monitored branch or PR)
2026-03-10 08:59.54: New job: test tezt.4.2.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
on archlinux-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/29530/head" && git reset --hard 3af7d0a2
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc
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 tezt.4.2.0 4.2.0
RUN opam reinstall tezt.4.2.0; \
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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tezt.4.2.0' && 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 tezt.4.2.0) || true
RUN opam reinstall --with-test --verbose tezt.4.2.0; \
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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'tezt.4.2.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-10 08:59.54: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc-tezt.4.2.0-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.54: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc)
(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 tezt.4.2.0 4.2.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tezt.4.2.0;\
\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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezt.4.2.0' && 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 tezt.4.2.0) || true"))
(run (shell "opam reinstall --with-test --verbose tezt.4.2.0;\
\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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezt.4.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-10 08:59.54: Waiting for resource in pool OCluster
2026-03-10 09:59.25: Waiting for worker…
2026-03-10 10:02.13: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..3af7d0a259
Fast-forward
packages/bimage-lwt/bimage-lwt.0.3.0/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.3.1/opam | 6 +++++-
packages/bimage-lwt/bimage-lwt.0.4.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.0.11.0/opam | 4 +++-
packages/caqti-lwt/caqti-lwt.1.0.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.2.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.3.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.6.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.7.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.8.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.1.9.0/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.0.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.1.1/opam | 6 +++++-
packages/caqti-lwt/caqti-lwt.2.2.4/opam | 6 +++++-
packages/fuseau-lwt/fuseau-lwt.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.1.13/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.2/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0.3/opam | 6 +++++-
packages/lambda-term/lambda-term.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.0.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.1.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.2.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.0/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.1/opam | 6 +++++-
packages/lambda-term/lambda-term.3.3.2/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.1.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.2.0/opam | 6 +++++-
packages/lwt_domain/lwt_domain.0.3.0/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.1/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.2/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.3/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.4/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.5.1/opam | 6 +++++-
packages/lwt_eio/lwt_eio.0.5/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.0.1/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.0/opam | 6 +++++-
packages/lwt_glib/lwt_glib.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.0/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.1/opam | 6 +++++-
packages/lwt_log/lwt_log.1.1.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.1.2.4/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.0.3/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.2.1.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.0/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.8.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.1/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.2/opam | 6 +++++-
packages/lwt_ppx/lwt_ppx.5.9.3/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.6/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.7/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.8/opam | 6 +++++-
packages/moonpool-lwt/moonpool-lwt.0.9/opam | 6 +++++-
packages/mwt/mwt.0.1.0/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-1/opam | 6 +++++-
packages/nocrypto/nocrypto.0.5.4-2/opam | 6 +++++-
packages/ocluster/ocluster.0.1/opam | 4 +++-
packages/ocluster/ocluster.0.2.1/opam | 6 +++++-
packages/ocluster/ocluster.0.2/opam | 4 +++-
packages/ocluster/ocluster.0.3.0/opam | 6 +++++-
packages/picos/picos.0.3.0/opam | 6 +++++-
packages/picos/picos.0.4.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.5.0/opam | 6 +++++-
packages/picos_lwt/picos_lwt.0.6.0/opam | 6 +++++-
packages/tezt/tezt.2.0.0/opam | 6 +++++-
packages/tezt/tezt.3.0.0/opam | 4 +++-
packages/tezt/tezt.3.1.0/opam | 4 +++-
packages/tezt/tezt.3.1.1/opam | 4 +++-
packages/tezt/tezt.4.0.0/opam | 4 +++-
packages/tezt/tezt.4.1.0/opam | 4 +++-
packages/tezt/tezt.4.2.0/opam | 4 +++-
packages/tezt/tezt.4.3.0/opam | 4 +++-
84 files changed, 400 insertions(+), 84 deletions(-)
(from ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc)
Unable to find image 'ocaml/opam:archlinux-ocaml-4.14@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc' locally
docker.io/ocaml/opam@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc: Pulling from ocaml/opam
30309458937a: Already exists
d6ec592b6ce7: Already exists
eb0cc4fae01f: Already exists
da907aea55a3: Already exists
41225181d62b: Already exists
99bbb95b040c: Already exists
ae03e2432f2e: Already exists
960a3688e50d: Already exists
12e572ae8d9e: Already exists
5d9b53919351: Already exists
613718b9dc5c: Already exists
20c50d6517d7: Already exists
318e41a81dac: Already exists
c8d0fbcceca0: Already exists
f18608e88c8a: Already exists
4f4fb700ef54: Already exists
53a25100385e: Already exists
cf8654ebee96: Already exists
57cdf8563f57: Already exists
ce24bbfe16f6: Already exists
5c9351c3921c: Already exists
4d8c9f844539: Already exists
765a1d524e16: Already exists
e9b60c2e279a: Already exists
35a412369c63: Already exists
26b4e7a0d54a: Already exists
13545a674236: Already exists
93a04f32ed48: Already exists
59e69b721f9d: Already exists
563d03393b08: Already exists
22f1353d2736: Already exists
bb9e869c408b: Already exists
edabeb8a4c11: Already exists
7efbe0d19f89: Already exists
21417741ad36: Pulling fs layer
042e95d761f0: Pulling fs layer
21417741ad36: Waiting
067eafa8dfc5: Pulling fs layer
042e95d761f0: Waiting
c7d024cccfeb: Pulling fs layer
067eafa8dfc5: Waiting
c7d024cccfeb: Waiting
21417741ad36: Verifying Checksum
21417741ad36: Download complete
042e95d761f0: Download complete
067eafa8dfc5: Download complete
21417741ad36: Pull complete
042e95d761f0: Pull complete
067eafa8dfc5: Pull complete
c7d024cccfeb: Verifying Checksum
c7d024cccfeb: Download complete
c7d024cccfeb: Pull complete
Digest: sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc
Status: Downloaded newer image for ocaml/opam@sha256:369998b962d7905bf95882e9371b1f500da183d2d11a230e3a47965defe581bc
2026-03-10 10:06.42 ---> using "defecf98fb6f641e065b799254b3c5c2968572b44e0295065c234fad52a6afe3" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-10 10:06.42 ---> using "f751fdf01351e78d896c907353de30cfda207d18430617ae2b0053c521b16039" 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-03-10 10:06.42 ---> using "cf049c20f36a20b71fc8f8859551e5548a66e77585344418c35085917a36d17b" 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=arch os-version=20260301.0.494762
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-10 10:06.42 ---> using "156cd3919581b4ed59e130881fe979b51263d70a65dd7375c417031f90284d42" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-10 10:06.42 ---> using "16dbf86c224f68e5cc760fb73511cd0f76aa8cdceeb839da2f5152ab0f39180c" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 10:06.43 ---> using "7c6031df29a901be4aef6cca90e7b414d6e8e08ac96ee223a0edb10907ce464c" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 10:06.43 ---> using "aceb35197adfaa71e65f64db9fa89f2bd91b1de7553beba146468f0ae5d9358f" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2026-03-10 10:06.43 ---> using "ad138cf4d087d1c1f96936c84e602cb71823cac1cbe51b67480cf7438a6d2471" from cache
/home/opam: (run (shell "opam pin add -k version -yn tezt.4.2.0 4.2.0"))
tezt is now pinned to version 4.2.0
2026-03-10 10:06.43 ---> using "adb4cfafc0f82625a6a59c8e09681872c247dde9bde7582c2b5a2064de6a1205" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall tezt.4.2.0;\
\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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezt.4.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
tezt.4.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 20 packages
∗ base-bytes base [required by ocplib-endian]
∗ clap 0.3.0 [required by tezt]
∗ cppo 1.8.0 [required by lwt]
∗ csexp 1.5.2 [required by dune-configurator]
∗ cstruct 6.2.0 [required by hex]
∗ dune 3.21.1 [required by tezt]
∗ dune-configurator 3.21.1 [required by lwt]
∗ ezjsonm 1.3.0 [required by tezt]
∗ fmt 0.11.0 [required by cstruct]
∗ hex 1.5.0 [required by ezjsonm]
∗ jsonm 1.0.2 [required by ezjsonm]
∗ lwt 5.9.2 [required by tezt]
∗ ocamlbuild 0.16.1 [required by jsonm]
∗ ocamlfind 1.9.8 [required by jsonm]
∗ ocplib-endian 1.2 [required by lwt]
∗ re 1.14.0 [required by tezt]
∗ sexplib0 v0.17.0 [required by ezjsonm]
∗ tezt 4.2.0 (pinned)
∗ topkg 1.1.1 [required by jsonm]
∗ uutf 1.0.4 [required by ezjsonm]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved clap.0.3.0 (cached)
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved csexp.1.5.2 (cached)
⬇ retrieved cstruct.6.2.0 (cached)
⬇ retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
⬇ retrieved ezjsonm.1.3.0 (cached)
⬇ retrieved fmt.0.11.0 (cached)
⬇ retrieved hex.1.5.0 (cached)
⬇ retrieved jsonm.1.0.2 (cached)
⬇ retrieved lwt.5.9.2 (cached)
⬇ retrieved ocamlbuild.0.16.1 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved ocplib-endian.1.2 (cached)
⬇ retrieved re.1.14.0 (cached)
⬇ retrieved sexplib0.v0.17.0 (cached)
⬇ retrieved tezt.4.2.0 (cached)
⬇ retrieved topkg.1.1.1 (cached)
⬇ retrieved uutf.1.0.4 (cached)
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed ocamlbuild.0.16.1
∗ installed topkg.1.1.1
∗ installed uutf.1.0.4
∗ installed fmt.0.11.0
∗ installed jsonm.1.0.2
∗ installed dune.3.21.1
∗ installed csexp.1.5.2
∗ installed clap.0.3.0
∗ installed cppo.1.8.0
∗ installed cstruct.6.2.0
∗ installed re.1.14.0
∗ installed sexplib0.v0.17.0
∗ installed hex.1.5.0
∗ installed ocplib-endian.1.2
∗ installed ezjsonm.1.3.0
∗ installed dune-configurator.3.21.1
∗ installed lwt.5.9.2
∗ installed tezt.4.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 10:06.51 ---> saved as "2a0ccafc24280505581ea82cb65f999c9669a8c2b62b118982ea6035fdc6a5bd"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test tezt.4.2.0) || true"))
The following actions will be performed:
=== downgrade 3 packages
↘ dune 3.21.1 to 3.18.2 [required by tezt]
↘ dune-configurator 3.21.1 to 3.19.1 [uses dune]
↘ sexplib0 v0.17.0 to v0.16.0 [uses dune]
=== recompile 13 packages
↻ clap 0.3.0 [uses dune]
↻ cppo 1.8.0 [uses dune]
↻ csexp 1.5.2 [uses dune]
↻ cstruct 6.2.0 [uses dune]
↻ ezjsonm 1.3.0 [uses dune]
↻ fmt 0.11.0 [uses cmdliner]
↻ hex 1.5.0 [uses dune]
↻ jsonm 1.0.2 [uses uutf]
↻ lwt 5.9.2 [uses dune]
↻ ocplib-endian 1.2 [uses dune]
↻ re 1.14.0 [uses dune]
↻ tezt 4.2.0 (pinned)
↻ uutf 1.0.4 [uses cmdliner]
=== install 34 packages
∗ astring 0.8.5 [required by ocamlformat-lib]
∗ base v0.16.4 [required by ocamlformat-lib]
∗ camlp-streams 5.0.1 [required by ocamlformat-lib]
∗ cmdliner 1.3.0 [required by ocamlformat]
∗ conf-npm 1 [required by tezt]
∗ dune-build-info 3.19.1 [required by ocamlformat-lib]
∗ either 1.0.0 [required by ocamlformat-lib]
∗ fix 20250919 [required by ocamlformat-lib]
∗ fpath 0.7.3 [required by ocamlformat-lib]
∗ gen 1.1 [required by sedlex]
∗ js_of_ocaml 6.0.1 [required by tezt]
∗ js_of_ocaml-compiler 6.0.1 [required by js_of_ocaml]
∗ js_of_ocaml-lwt 6.0.1 [required by tezt]
∗ js_of_ocaml-ppx 6.0.1 [required by js_of_ocaml-lwt]
∗ menhir 20260209 [required by js_of_ocaml-compiler, ocamlformat-lib]
∗ menhirCST 20260209 [required by menhir]
∗ menhirGLR 20260209 [required by menhir]
∗ menhirLib 20260209 [required by js_of_ocaml-compiler, ocamlformat-lib]
∗ menhirSdk 20260209 [required by js_of_ocaml-compiler, ocamlformat-lib]
∗ ocaml-compiler-libs v0.12.4 [required by ppxlib]
∗ ocaml-version 4.0.3 [required by ocamlformat-lib]
∗ ocamlformat 0.26.2 [required by tezt]
∗ ocamlformat-lib 0.26.2 [required by ocamlformat]
∗ ocp-indent 1.8.1 [required by ocamlformat-lib]
∗ ppx_derivers 1.2.1 [required by ppxlib]
∗ ppxlib 0.35.0 [required by js_of_ocaml]
∗ result 1.5 [required by ocamlformat-lib]
∗ sedlex 3.7 [required by js_of_ocaml-compiler]
∗ seq base [required by gen]
∗ stdio v0.16.0 [required by ocamlformat-lib]
∗ stdlib-shims 0.3.0 [required by ppxlib]
∗ uucp 17.0.0 [required by uuseg]
∗ uuseg 17.0.0 [required by ocamlformat-lib]
∗ yojson 3.0.0 [required by js_of_ocaml-compiler]
The following system packages will first need to be installed:
npm
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "npm"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (13) Old Version New Version Net Change Download Size
-
- extra/c-ares 1.34.6-1 0.51 MiB 0.22 MiB
- core/iana-etc 20260225-2 20260306-1 0.00 MiB 0.39 MiB
- core/libcap-ng 0.9-1 0.9.1-1 -0.01 MiB 0.04 MiB
- extra/libuv 1.52.1-1 0.64 MiB 0.26 MiB
- extra/lmdb 0.9.34-1 0.9.35-1 0.00 MiB 0.11 MiB
- extra/node-gyp 12.2.0-1 7.84 MiB 1.15 MiB
- extra/nodejs 25.7.0-1 69.38 MiB 17.12 MiB
- extra/nodejs-nopt 8.0.0-1 0.03 MiB 0.01 MiB
- extra/semver 7.7.4-1 0.09 MiB 0.03 MiB
- extra/simdjson 1:4.3.1-1 7.43 MiB 0.29 MiB
- core/sqlite 3.51.2-1 3.52.0-1 0.17 MiB 2.29 MiB
- core/zlib 1:1.3.2-2 1:1.3.2-3 0.00 MiB 0.08 MiB
- extra/npm 11.11.0-1 7.49 MiB 1.45 MiB
-
- Total Download Size: 23.44 MiB
- Total Installed Size: 115.73 MiB
- Net Upgrade Size: 93.58 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- nodejs-25.7.0-1-x86_64 downloading...
- sqlite-3.52.0-1-x86_64 downloading...
- npm-11.11.0-1-any downloading...
- node-gyp-12.2.0-1-any downloading...
- iana-etc-20260306-1-any downloading...
- simdjson-1:4.3.1-1-x86_64 downloading...
- libuv-1.52.1-1-x86_64 downloading...
- c-ares-1.34.6-1-x86_64 downloading...
- lmdb-0.9.35-1-x86_64 downloading...
- zlib-1:1.3.2-3-x86_64 downloading...
- libcap-ng-0.9.1-1-x86_64 downloading...
- semver-7.7.4-1-any downloading...
- nodejs-nopt-8.0.0-1-any downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading iana-etc...
- installing c-ares...
- upgrading lmdb...
- upgrading zlib...
- upgrading sqlite...
- installing libuv...
- installing simdjson...
- installing nodejs...
- Optional dependencies for nodejs
- npm: nodejs package manager [pending]
- installing nodejs-nopt...
- installing semver...
- installing node-gyp...
- Optional dependencies for node-gyp
- gcc: to build C++ modules [installed]
- make: to build C++ modules [installed]
- python: to build C++ modules
- installing npm...
- Optional dependencies for npm
- git: for dependencies using Git URL's [installed]
- upgrading libcap-ng...
- :: Running post-transaction hooks...
- (1/1) Arming ConditionNeedsUpdate...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
⬇ retrieved base.v0.16.4 (https://opam.ocaml.org/cache)
⬇ retrieved camlp-streams.5.0.1 (https://opam.ocaml.org/cache)
⬇ retrieved clap.0.3.0 (https://opam.ocaml.org/cache)
⬇ retrieved cmdliner.1.3.0 (https://opam.ocaml.org/cache)
⬇ retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
⬇ retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
∗ installed conf-npm.1
⬇ retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)
⬇ retrieved dune.3.18.2 (https://opam.ocaml.org/cache)
∗ installed astring.0.8.5
∗ installed cmdliner.1.3.0
⬇ retrieved dune-build-info.3.19.1, dune-configurator.3.19.1 (https://opam.ocaml.org/cache)
⬇ retrieved either.1.0.0 (https://opam.ocaml.org/cache)
⬇ retrieved ezjsonm.1.3.0 (https://opam.ocaml.org/cache)
⬇ retrieved fix.20250919 (https://opam.ocaml.org/cache)
⬇ retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
⬇ retrieved fpath.0.7.3 (https://opam.ocaml.org/cache)
⬇ retrieved gen.1.1 (https://opam.ocaml.org/cache)
⬇ retrieved hex.1.5.0 (https://opam.ocaml.org/cache)
⬇ retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1, js_of_ocaml-lwt.6.0.1, js_of_ocaml-ppx.6.0.1 (https://opam.ocaml.org/cache)
∗ installed fpath.0.7.3
⬇ retrieved jsonm.1.0.2 (https://opam.ocaml.org/cache)
⬇ retrieved lwt.5.9.2 (https://opam.ocaml.org/cache)
⬇ retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (https://opam.ocaml.org/cache)
⬇ retrieved ocaml-compiler-libs.v0.12.4 (https://opam.ocaml.org/cache)
⬇ retrieved ocaml-version.4.0.3 (https://opam.ocaml.org/cache)
⬇ retrieved ocamlformat.0.26.2, ocamlformat-lib.0.26.2 (https://opam.ocaml.org/cache)
⬇ retrieved ocp-indent.1.8.1 (https://opam.ocaml.org/cache)
⬇ retrieved ocplib-endian.1.2 (https://opam.ocaml.org/cache)
⬇ retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
⬇ retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
⬇ retrieved re.1.14.0 (https://opam.ocaml.org/cache)
⬇ retrieved result.1.5 (https://opam.ocaml.org/cache)
⬇ retrieved sedlex.3.7 (https://opam.ocaml.org/cache)
⬇ retrieved seq.base (2 extra sources)
⬇ retrieved seq.base (2 extra sources)
∗ installed seq.base
⬇ retrieved sexplib0.v0.16.0 (https://opam.ocaml.org/cache)
⬇ retrieved stdio.v0.16.0 (https://opam.ocaml.org/cache)
⬇ retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
⬇ retrieved tezt.4.2.0 (https://opam.ocaml.org/cache)
⬇ retrieved uucp.17.0.0 (https://opam.ocaml.org/cache)
⬇ retrieved uuseg.17.0.0 (https://opam.ocaml.org/cache)
⬇ retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
⬇ retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
⊘ removed tezt.4.2.0
⊘ removed clap.0.3.0
⊘ removed ezjsonm.1.3.0
⊘ removed hex.1.5.0
⊘ removed cstruct.6.2.0
⊘ removed fmt.0.11.0
⊘ removed jsonm.1.0.2
⊘ removed lwt.5.9.2
⊘ removed dune-configurator.3.21.1
⊘ removed csexp.1.5.2
⊘ removed ocplib-endian.1.2
⊘ removed cppo.1.8.0
⊘ removed re.1.14.0
⊘ removed sexplib0.v0.17.0
⊘ removed dune.3.21.1
⊘ removed uutf.1.0.4
∗ installed dune.3.18.2
∗ installed fmt.0.11.0
∗ installed uutf.1.0.4
∗ installed camlp-streams.5.0.1
∗ installed clap.0.3.0
∗ installed cppo.1.8.0
∗ installed csexp.1.5.2
∗ installed either.1.0.0
∗ installed fix.20250919
∗ installed gen.1.1
∗ installed menhirCST.20260209
∗ installed menhirGLR.20260209
∗ installed menhirLib.20260209
∗ installed menhirSdk.20260209
∗ installed ocaml-compiler-libs.v0.12.4
∗ installed ocaml-version.4.0.3
∗ installed ocp-indent.1.8.1
∗ installed ppx_derivers.1.2.1
∗ installed re.1.14.0
∗ installed result.1.5
∗ installed sexplib0.v0.16.0
∗ installed stdlib-shims.0.3.0
∗ installed yojson.3.0.0
∗ installed cstruct.6.2.0
∗ installed jsonm.1.0.2
∗ installed ocplib-endian.1.2
∗ installed hex.1.5.0
∗ installed ezjsonm.1.3.0
∗ installed dune-build-info.3.19.1
∗ installed dune-configurator.3.19.1
∗ installed lwt.5.9.2
∗ installed menhir.20260209
∗ installed base.v0.16.4
∗ installed stdio.v0.16.0
∗ installed ppxlib.0.35.0
∗ installed sedlex.3.7
∗ installed uucp.17.0.0
∗ installed uuseg.17.0.0
∗ installed ocamlformat-lib.0.26.2
∗ installed js_of_ocaml-compiler.6.0.1
∗ installed ocamlformat.0.26.2
∗ installed js_of_ocaml.6.0.1
∗ installed js_of_ocaml-ppx.6.0.1
∗ installed js_of_ocaml-lwt.6.0.1
[ERROR] The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".
#=== ERROR while compiling tezt.4.2.0 =========================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://gitlab.com/nomadic-labs/tezt/-/archive/4.2.0/tezt-4.2.0.tar.bz2)
# path ~/.opam/4.14/.opam-switch/build/tezt.4.2.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p tezt -j 255
# exit-code 1
# env-file ~/.opam/log/tezt-7-d3cad7.env
# output-file ~/.opam/log/tezt-7-d3cad7.out
### output ###
# (cd _build/default/lib_scheduler/test && ./main.exe)
# [0.000] Run no task.
# [0.000] Run one task.
# [0.002] Running task...
# [0.002] Task returned value 17 as expected
# [0.003] Run one task that fails.
# [0.003] Running failing task...
# [0.003] Task failed with "failed" as expected
# [0.004] Run two tasks in a single worker.
# [0.004] Running task 1...
# [0.004] Task returned value 18 as expected
# [0.004] Running task 2...
# [0.005] Task returned value 19 as expected
# [0.005] Run one task in two workers.
# [0.006] Running task...
# [0.006] Task returned value 20 as expected
# [0.007] Run two tasks in two workers.
# [0.007] Running task 1...
# [0.008] Task returned value 21 as expected
# [0.008] Running task 2...
# [0.008] Task returned value 22 as expected
# [0.008] Run three tasks in two workers.
# [0.010] Running task 1...
# [0.010] Task returned value 23 as expected
# [0.010] Running task 3...
# [0.010] Task returned value 25 as expected
# [0.010] Running task 2...
# [0.010] Task returned value 24 as expected
# [0.011] Run a scheduler inside a worker.
# [0.012] Running task 1...
# [0.012] Running task 2...
# [0.013] Task returned value 27 as expected
# [0.013] Running task 3...
# [0.013] Task returned value 28 as expected
# [0.014] Running task 1.1...
# [0.014] Running task 1.2...
# [0.014] Task returned value 100 as expected
# [0.014] Task returned value 101 as expected
# [0.014] Running task 1.3...
# [0.014] Task returned value 102 as expected
# [0.015] Exit the worker prematurely.
# [0.016] Running task 1...
# [0.016] Running task 2...
# [0.017] Task failed with "worker exited with code 17" as expected
# [0.017] Task failed with "worker exited with code 18" as expected
# [0.017] Running task 3...
# [0.018] Running task 4...
# [0.118] Task returned value 29 as expected
# [0.118] Running task 5...
# [0.118] Task returned value 30 as expected
# [0.218] Task returned value 31 as expected
# [0.218] Have a task reach its timeout (SIGTERM).
# [0.219] Running long task...
# [0.320] Task failed with "worker was killed by SIGTERM" as expected
# [0.320] Have a task reach its timeout (SIGTERM + SIGKILL).
# [0.320] Running long task...
# [0.421] Task failed with "worker was killed by SIGTERM" as expected
# [0.421] Have a task reach its timeout (SIGKILL).
# [0.422] Running long task...
# [0.522] Task failed with "worker was killed by SIGKILL" as expected
# [0.522] Have a task reach its timeout (SIGTERM, ignore).
# [0.523] Running long task...
# [1.023] Task failed with "I should have been killed by now" as expected
# [1.024] Have a task reach its timeout (SIGTERM + SIGKILL, ignore).
# [1.024] Running long task...
# [1.225] Task failed with "worker was killed by SIGKILL" as expected
# [1.225] Have a task reach its timeout (SIGKILL, ignore).
# [1.225] Running long task...
# [1.326] Task failed with "worker was killed by SIGKILL" as expected
# [1.326] Have the scheduler log for tasks.
# [1.327] [message] Log "This is task 1."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 3."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 2."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 5."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 4."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 6."
# [1.327] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 7."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 8."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 9."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 10."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] Have tasks ask the scheduler for resources.
# [1.330] Running task 1...
# [1.330] Running task 2...
# [1.330] Running task 3...
# [1.330] [message] Get_resource
# [1.330] [message] Get_resource
# [1.330] [message] Get_resource
# [1.330] Received resource: 0
# [1.330] Received resource: 1
# [1.330] Received resource: 2
# [1.330] Running task 5...
# [1.330] [message] Get_resource
# [1.330] Running task 6...
# [1.330] Running task 7...
# [1.330] [message] Get_resource
# [1.330] Received resource: 3
# [1.330] Running task 4...
# [1.330] [message] Get_resource
# [1.330] Received resource: 4
# [1.330] [message] Get_resource
# [1.330] Received resource: 5
# [1.330] Running task 8...
# [1.330] Running task 9...
# [1.330] [message] Get_resource
# [1.331] [message] Get_resource
# [1.331] Received resource: 6
# [1.331] Running task 10...
# [1.331] [message] Get_resource
# [1.331] Received resource: 7
# [1.431] ok_count = 8, timeout_count = 2
# [1.431] Stop the scheduler while it is running.
# [1.433] Running task 1...
# [1.433] Stop.
# [1.433] Task failed with "worker was killed by SIGTERM" as expected
# [1.433] Task failed with "worker was killed by SIGTERM" as expected
# [1.433] Re-filling the queue.
# [1.433] Refill.
# [1.434] Running task 1.1
# [1.434] Refill.
# [1.434] Running task 1.2
# [1.434] Running task 2.1
# [1.435] Refill.
# [1.435] Running task 3.1
# [1.435] Running task 3.2
# [1.435] Running task 2.2
# [1.435] A task that creates other tasks.
# [1.436] [message] Push 1.1
# [1.436] [message] Push 2.2
# [1.436] [message] Push 3.3
# [1.436] [message] Push 4.4
# [1.436] [message] Push 5.5
# [1.437] Running task 1.1
# [1.437] Running task 2.2
# [1.437] Running task 4.4
# [1.437] Running task 5.5
# [1.437] Running task 3.3
# [1.438] Create a timer and run with no task.
# [1.538] It's time!
# [1.538] Task that emits a message to create a timer that will trigger more tasks.
# [1.639] [message] Push 1
# [1.690] Running subtask 1
# [1.739] [message] Push 2
# [1.790] Running subtask 2
# [1.792] Create a timer and another that cancels the first.
# [1.892] Cancel timer.
# [1.892] Create a task and a timer that regularly logs until the task is finished.
# [1.952] Beep!
# [2.013] Beep!
# [2.073] Beep!
# (cd _build/default/test/unix && ./main.exe)
# [10:08:21.857] [SUCCESS] (1/26) demo
# [10:08:21.857] [SUCCESS] (2/26) fixed seed
# [10:08:21.857] [SUCCESS] (3/26) random seed
# [10:08:21.858] [SUCCESS] (4/26) string_tree: mem_prefix_of
# [10:08:21.858] [SUCCESS] (5/26) Test.current_test_tags
# [10:08:21.858] [SUCCESS] (6/26) TSL parser: positive cases
# [10:08:21.858] [SUCCESS] (7/26) TSL parser: negative cases
# [10:08:21.858] [SUCCESS] (8/26) TSL parser: pretty-printing
# [10:08:21.858] [SUCCESS] (9/26) TSL: evaluation
# [10:08:22.144] [SUCCESS] (10/26) TSL parser: random roundtrips
# [10:08:22.144] [SUCCESS] (11/26) TSL: conjunction helper
# [10:08:22.144] [SUCCESS] (12/26) TSL: is_valid_tag
# [10:08:22.144] [SUCCESS] (13/26) TSL: extract tags
# [10:08:22.144] [SUCCESS] (14/26) diff: simple cases
# [10:08:22.167] [SUCCESS] (15/26) diff: random cases
# [10:08:22.167] [SUCCESS] (16/26) diff: log
# [10:08:22.167] [SUCCESS] (17/26) Check.pp
# [10:08:22.167] [SUCCESS] (18/26) Check.(=)
# [10:08:22.167] [SUCCESS] (19/26) Check.(<>)
# [10:08:22.167] [SUCCESS] (20/26) Check.(<)
# [10:08:22.167] [SUCCESS] (21/26) Check.(<=)
# [10:08:22.167] [SUCCESS] (22/26) Check.(>)
# [10:08:22.167] [SUCCESS] (23/26) Check.(>=)
# [10:08:22.167] [SUCCESS] (24/26) Check.(=~)
# [10:08:22.167] [SUCCESS] (25/26) Check.(=~!)
# [10:08:24.171] [SUCCESS] (26/26) Process.terminate with timeout
# File "test/cram/test-signals.t", line 1, characters 0-0:
# /usr/sbin/git --no-pager diff --no-index --color=always -u _build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t _build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
# diff --git a/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t b/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
# index 3d17d45..8dbf1e7 100644
# --- a/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t
# +++ b/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
# @@ -32,14 +32,12 @@ Test various signal sequences.
# $ ./tezt-signal.sh INT INT INT
# Starting test: sleep one second without cooperating
# Received SIGINT.
# - ./tezt-signal.sh: 9: kill: No such process
# -
# + ./tezt-signal.sh: line 9: kill: (12605) - No such process
# [1]
# $ ./tezt-signal.sh INT INT TERM
# Starting test: sleep one second without cooperating
# Received SIGINT.
# - ./tezt-signal.sh: 9: kill: No such process
# -
# + ./tezt-signal.sh: line 9: kill: (12622) - No such process
# [1]
# $ ./tezt-signal.sh INT TERM INT
# Starting test: sleep one second without cooperating
# (cd _build/default/test/js && /usr/sbin/node main.bc.js)
# [10:08:24.257] [SUCCESS] (1/25) demo
# [10:08:24.262] [SUCCESS] (2/25) fixed seed
# [10:08:24.267] [SUCCESS] (3/25) random seed
# [10:08:24.269] [SUCCESS] (4/25) string_tree: mem_prefix_of
# [10:08:24.270] [SUCCESS] (5/25) Test.current_test_tags
# [10:08:24.276] [SUCCESS] (6/25) TSL parser: positive cases
# [10:08:24.279] [SUCCESS] (7/25) TSL parser: negative cases
# [10:08:24.282] [SUCCESS] (8/25) TSL parser: pretty-printing
# [10:08:24.296] [SUCCESS] (9/25) TSL: evaluation
# [10:08:26.096] [SUCCESS] (10/25) TSL parser: random roundtrips
# [10:08:26.098] [SUCCESS] (11/25) TSL: conjunction helper
# [10:08:26.099] [SUCCESS] (12/25) TSL: is_valid_tag
# [10:08:26.101] [SUCCESS] (13/25) TSL: extract tags
# [10:08:26.102] [SUCCESS] (14/25) diff: simple cases
# [10:08:26.306] [SUCCESS] (15/25) diff: random cases
# [10:08:26.312] [SUCCESS] (16/25) diff: log
# [10:08:26.315] [SUCCESS] (17/25) Check.pp
# [10:08:26.316] [SUCCESS] (18/25) Check.(=)
# [10:08:26.318] [SUCCESS] (19/25) Check.(<>)
# [10:08:26.319] [SUCCESS] (20/25) Check.(<)
# [10:08:26.321] [SUCCESS] (21/25) Check.(<=)
# [10:08:26.322] [SUCCESS] (22/25) Check.(>)
# [10:08:26.323] [SUCCESS] (23/25) Check.(>=)
# [10:08:26.325] [SUCCESS] (24/25) Check.(=~)
# [10:08:26.328] [SUCCESS] (25/25) Check.(=~!)
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ λ build tezt 4.2.0
└─
┌─ The following changes have been performed
│ ⊘ remove tezt 4.2.0
│ ↘ downgrade dune 3.21.1 to 3.18.2
│ ↘ downgrade dune-configurator 3.21.1 to 3.19.1
│ ↘ downgrade sexplib0 v0.17.0 to v0.16.0
│ ↻ recompile clap 0.3.0
│ ↻ recompile cppo 1.8.0
│ ↻ recompile csexp 1.5.2
│ ↻ recompile cstruct 6.2.0
│ ↻ recompile ezjsonm 1.3.0
│ ↻ recompile fmt 0.11.0
│ ↻ recompile hex 1.5.0
│ ↻ recompile jsonm 1.0.2
│ ↻ recompile lwt 5.9.2
│ ↻ recompile ocplib-endian 1.2
│ ↻ recompile re 1.14.0
│ ↻ recompile uutf 1.0.4
│ ∗ install astring 0.8.5
│ ∗ install base v0.16.4
│ ∗ install camlp-streams 5.0.1
│ ∗ install cmdliner 1.3.0
│ ∗ install conf-npm 1
│ ∗ install dune-build-info 3.19.1
│ ∗ install either 1.0.0
│ ∗ install fix 20250919
│ ∗ install fpath 0.7.3
│ ∗ install gen 1.1
│ ∗ install js_of_ocaml 6.0.1
│ ∗ install js_of_ocaml-compiler 6.0.1
│ ∗ install js_of_ocaml-lwt 6.0.1
│ ∗ install js_of_ocaml-ppx 6.0.1
│ ∗ install menhir 20260209
│ ∗ install menhirCST 20260209
│ ∗ install menhirGLR 20260209
│ ∗ install menhirLib 20260209
│ ∗ install menhirSdk 20260209
│ ∗ install ocaml-compiler-libs v0.12.4
│ ∗ install ocaml-version 4.0.3
│ ∗ install ocamlformat 0.26.2
│ ∗ install ocamlformat-lib 0.26.2
│ ∗ install ocp-indent 1.8.1
│ ∗ install ppx_derivers 1.2.1
│ ∗ install ppxlib 0.35.0
│ ∗ install result 1.5
│ ∗ install sedlex 3.7
│ ∗ install seq base
│ ∗ install stdio v0.16.0
│ ∗ install stdlib-shims 0.3.0
│ ∗ install uucp 17.0.0
│ ∗ install uuseg 17.0.0
│ ∗ install yojson 3.0.0
└─
<><> ocp-indent.1.8.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/4.14/share/emacs/site-lisp")
(require 'ocp-indent)
* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260310100651.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-03-10 10:08.46 ---> saved as "52088040054bb7ea714de0658aaf92430e773fa90f6f63005c8c5b36dfd3822c"
/home/opam: (run (shell "opam reinstall --with-test --verbose tezt.4.2.0;\
\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 \"\\\"archlinux\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'tezt.4.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
tezt.4.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
∗ tezt 4.2.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [tezt.4.2.0: extract]
⬇ retrieved tezt.4.2.0 (cached)
Processing 2/3: [tezt: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tezt" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tezt.4.2.0)
Processing 2/3: [tezt: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "tezt" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tezt.4.2.0)
- (cd _build/default/lib_scheduler/test && ./main.exe)
- [0.000] Run no task.
- [0.000] Run one task.
- [0.002] Running task...
- [0.002] Task returned value 17 as expected
- [0.002] Run one task that fails.
- [0.003] Running failing task...
- [0.003] Task failed with "failed" as expected
- [0.003] Run two tasks in a single worker.
- [0.004] Running task 1...
- [0.004] Task returned value 18 as expected
- [0.004] Running task 2...
- [0.004] Task returned value 19 as expected
- [0.004] Run one task in two workers.
- [0.005] Running task...
- [0.005] Task returned value 20 as expected
- [0.005] Run two tasks in two workers.
- [0.006] Running task 1...
- [0.006] Task returned value 21 as expected
- [0.006] Running task 2...
- [0.007] Task returned value 22 as expected
- [0.007] Run three tasks in two workers.
- [0.008] Running task 1...
- [0.008] Task returned value 23 as expected
- [0.008] Running task 2...
- [0.008] Running task 3...
- [0.008] Task returned value 25 as expected
- [0.008] Task returned value 24 as expected
- [0.009] Run a scheduler inside a worker.
- [0.010] Running task 1...
- [0.010] Running task 2...
- [0.010] Task returned value 27 as expected
- [0.010] Running task 3...
- [0.010] Task returned value 28 as expected
- [0.011] Running task 1.1...
- [0.011] Task returned value 100 as expected
- [0.011] Running task 1.2...
- [0.011] Task returned value 101 as expected
- [0.011] Running task 1.3...
- [0.011] Task returned value 102 as expected
- [0.012] Exit the worker prematurely.
- [0.014] Running task 1...
- [0.014] Running task 2...
- [0.014] Task failed with "worker exited with code 17" as expected
- [0.014] Task failed with "worker exited with code 18" as expected
- [0.015] Running task 4...
- [0.015] Running task 3...
- [0.116] Task returned value 29 as expected
- [0.116] Task returned value 30 as expected
- [0.116] Running task 5...
- [0.216] Task returned value 31 as expected
- [0.217] Have a task reach its timeout (SIGTERM).
- [0.217] Running long task...
- [0.317] Task failed with "worker was killed by SIGTERM" as expected
- [0.318] Have a task reach its timeout (SIGTERM + SIGKILL).
- [0.318] Running long task...
- [0.419] Task failed with "worker was killed by SIGTERM" as expected
- [0.419] Have a task reach its timeout (SIGKILL).
- [0.419] Running long task...
- [0.520] Task failed with "worker was killed by SIGKILL" as expected
- [0.520] Have a task reach its timeout (SIGTERM, ignore).
- [0.521] Running long task...
- [1.021] Task failed with "I should have been killed by now" as expected
- [1.021] Have a task reach its timeout (SIGTERM + SIGKILL, ignore).
- [1.022] Running long task...
- [1.223] Task failed with "worker was killed by SIGKILL" as expected
- [1.223] Have a task reach its timeout (SIGKILL, ignore).
- [1.224] Running long task...
- [1.324] Task failed with "worker was killed by SIGKILL" as expected
- [1.325] Have the scheduler log for tasks.
- [1.327] [message] Log "This is task 2."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 3."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 1."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 6."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 4."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 5."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 7."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 9."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 8."
- [1.327] [message] Log "I'm logging stuff."
- [1.327] [message] Log "This is task 10."
- [1.327] [message] Log "I'm logging stuff."
- [1.328] Have tasks ask the scheduler for resources.
- [1.330] Running task 2...
- [1.330] Running task 4...
- [1.330] [message] Get_resource
- [1.330] [message] Get_resource
- [1.330] Received resource: 0
- [1.330] Running task 3...
- [1.330] Running task 1...
- [1.330] Received resource: 1
- [1.330] [message] Get_resource
- [1.330] [message] Get_resource
- [1.330] Running task 5...
- [1.330] [message] Get_resource
- [1.330] Received resource: 2
- [1.330] Received resource: 3
- [1.330] Received resource: 4
- [1.330] Running task 6...
- [1.330] [message] Get_resource
- [1.330] Running task 8...
- [1.330] Running task 9...
- [1.330] Running task 7...
- [1.330] [message] Get_resource
- [1.330] [message] Get_resource
- [1.330] [message] Get_resource
- [1.330] Received resource: 5
- [1.331] Received resource: 6
- [1.331] Running task 10...
- [1.331] Received resource: 7
- [1.331] [message] Get_resource
- [1.432] ok_count = 8, timeout_count = 2
- [1.432] Stop the scheduler while it is running.
- [1.433] Running task 1...
- [1.434] Stop.
- [1.434] Task failed with "worker was killed by SIGTERM" as expected
- [1.434] Task failed with "worker was killed by SIGTERM" as expected
- [1.435] Re-filling the queue.
- [1.435] Refill.
- [1.436] Running task 1.1
- [1.436] Running task 1.2
- [1.436] Refill.
- [1.436] Running task 2.2
- [1.436] Running task 2.1
- [1.436] Refill.
- [1.436] Running task 3.1
- [1.436] Running task 3.2
- [1.437] A task that creates other tasks.
- [1.437] [message] Push 1.1
- [1.438] [message] Push 2.2
- [1.438] [message] Push 3.3
- [1.438] [message] Push 4.4
- [1.438] [message] Push 5.5
- [1.439] Running task 1.1
- [1.439] Running task 2.2
- [1.439] Running task 3.3
- [1.439] Running task 4.4
- [1.439] Running task 5.5
- [1.440] Create a timer and run with no task.
- [1.540] It's time!
- [1.540] Task that emits a message to create a timer that will trigger more tasks.
- [1.641] [message] Push 1
- [1.692] Running subtask 1
- [1.741] [message] Push 2
- [1.792] Running subtask 2
- [1.792] Create a timer and another that cancels the first.
- [1.892] Cancel timer.
- [1.893] Create a task and a timer that regularly logs until the task is finished.
- [1.953] Beep!
- [2.013] Beep!
- [2.073] Beep!
- (cd _build/default/test/unix && ./main.exe)
- [10:08:52.558] [SUCCESS] (1/26) demo
- [10:08:52.558] [SUCCESS] (2/26) fixed seed
- [10:08:52.558] [SUCCESS] (3/26) random seed
- [10:08:52.558] [SUCCESS] (4/26) string_tree: mem_prefix_of
- [10:08:52.558] [SUCCESS] (5/26) Test.current_test_tags
- [10:08:52.558] [SUCCESS] (6/26) TSL parser: positive cases
- [10:08:52.558] [SUCCESS] (7/26) TSL parser: negative cases
- [10:08:52.559] [SUCCESS] (8/26) TSL parser: pretty-printing
- [10:08:52.559] [SUCCESS] (9/26) TSL: evaluation
- [10:08:52.836] [SUCCESS] (10/26) TSL parser: random roundtrips
- [10:08:52.836] [SUCCESS] (11/26) TSL: conjunction helper
- [10:08:52.836] [SUCCESS] (12/26) TSL: is_valid_tag
- [10:08:52.836] [SUCCESS] (13/26) TSL: extract tags
- [10:08:52.836] [SUCCESS] (14/26) diff: simple cases
- [10:08:52.858] [SUCCESS] (15/26) diff: random cases
- [10:08:52.858] [SUCCESS] (16/26) diff: log
- [10:08:52.858] [SUCCESS] (17/26) Check.pp
- [10:08:52.858] [SUCCESS] (18/26) Check.(=)
- [10:08:52.858] [SUCCESS] (19/26) Check.(<>)
- [10:08:52.858] [SUCCESS] (20/26) Check.(<)
- [10:08:52.858] [SUCCESS] (21/26) Check.(<=)
- [10:08:52.858] [SUCCESS] (22/26) Check.(>)
- [10:08:52.858] [SUCCESS] (23/26) Check.(>=)
- [10:08:52.858] [SUCCESS] (24/26) Check.(=~)
- [10:08:52.859] [SUCCESS] (25/26) Check.(=~!)
- [10:08:54.863] [SUCCESS] (26/26) Process.terminate with timeout
- File "test/cram/test-signals.t", line 1, characters 0-0:
- /usr/sbin/git --no-pager diff --no-index --color=always -u _build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t _build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
- diff --git a/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t b/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
- index 3d17d45..287d3ae 100644
- --- a/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t
- +++ b/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
- @@ -32,14 +32,12 @@ Test various signal sequences.
- $ ./tezt-signal.sh INT INT INT
- Starting test: sleep one second without cooperating
- Received SIGINT.
- - ./tezt-signal.sh: 9: kill: No such process
- -
- + ./tezt-signal.sh: line 9: kill: (1243) - No such process
- [1]
- $ ./tezt-signal.sh INT INT TERM
- Starting test: sleep one second without cooperating
- Received SIGINT.
- - ./tezt-signal.sh: 9: kill: No such process
- -
- + ./tezt-signal.sh: line 9: kill: (1260) - No such process
- [1]
- $ ./tezt-signal.sh INT TERM INT
- Starting test: sleep one second without cooperating
- (cd _build/default/test/js && /usr/sbin/node main.bc.js)
- [10:08:54.586] [SUCCESS] (1/25) demo
- [10:08:54.589] [SUCCESS] (2/25) fixed seed
- [10:08:54.595] [SUCCESS] (3/25) random seed
- [10:08:54.596] [SUCCESS] (4/25) string_tree: mem_prefix_of
- [10:08:54.598] [SUCCESS] (5/25) Test.current_test_tags
- [10:08:54.602] [SUCCESS] (6/25) TSL parser: positive cases
- [10:08:54.605] [SUCCESS] (7/25) TSL parser: negative cases
- [10:08:54.607] [SUCCESS] (8/25) TSL parser: pretty-printing
- [10:08:54.618] [SUCCESS] (9/25) TSL: evaluation
- [10:08:56.252] [SUCCESS] (10/25) TSL parser: random roundtrips
- [10:08:56.253] [SUCCESS] (11/25) TSL: conjunction helper
- [10:08:56.253] [SUCCESS] (12/25) TSL: is_valid_tag
- [10:08:56.253] [SUCCESS] (13/25) TSL: extract tags
- [10:08:56.255] [SUCCESS] (14/25) diff: simple cases
- [10:08:56.371] [SUCCESS] (15/25) diff: random cases
- [10:08:56.374] [SUCCESS] (16/25) diff: log
- [10:08:56.375] [SUCCESS] (17/25) Check.pp
- [10:08:56.375] [SUCCESS] (18/25) Check.(=)
- [10:08:56.377] [SUCCESS] (19/25) Check.(<>)
- [10:08:56.377] [SUCCESS] (20/25) Check.(<)
- [10:08:56.378] [SUCCESS] (21/25) Check.(<=)
- [10:08:56.378] [SUCCESS] (22/25) Check.(>)
- [10:08:56.380] [SUCCESS] (23/25) Check.(>=)
- [10:08:56.381] [SUCCESS] (24/25) Check.(=~)
- [10:08:56.381] [SUCCESS] (25/25) Check.(=~!)
[ERROR] The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".
#=== ERROR while compiling tezt.4.2.0 =========================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | pinned(https://gitlab.com/nomadic-labs/tezt/-/archive/4.2.0/tezt-4.2.0.tar.bz2)
# path ~/.opam/4.14/.opam-switch/build/tezt.4.2.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p tezt -j 255
# exit-code 1
# env-file ~/.opam/log/tezt-7-ff5bc8.env
# output-file ~/.opam/log/tezt-7-ff5bc8.out
### output ###
# (cd _build/default/lib_scheduler/test && ./main.exe)
# [0.000] Run no task.
# [0.000] Run one task.
# [0.002] Running task...
# [0.002] Task returned value 17 as expected
# [0.002] Run one task that fails.
# [0.003] Running failing task...
# [0.003] Task failed with "failed" as expected
# [0.003] Run two tasks in a single worker.
# [0.004] Running task 1...
# [0.004] Task returned value 18 as expected
# [0.004] Running task 2...
# [0.004] Task returned value 19 as expected
# [0.004] Run one task in two workers.
# [0.005] Running task...
# [0.005] Task returned value 20 as expected
# [0.005] Run two tasks in two workers.
# [0.006] Running task 1...
# [0.006] Task returned value 21 as expected
# [0.006] Running task 2...
# [0.007] Task returned value 22 as expected
# [0.007] Run three tasks in two workers.
# [0.008] Running task 1...
# [0.008] Task returned value 23 as expected
# [0.008] Running task 2...
# [0.008] Running task 3...
# [0.008] Task returned value 25 as expected
# [0.008] Task returned value 24 as expected
# [0.009] Run a scheduler inside a worker.
# [0.010] Running task 1...
# [0.010] Running task 2...
# [0.010] Task returned value 27 as expected
# [0.010] Running task 3...
# [0.010] Task returned value 28 as expected
# [0.011] Running task 1.1...
# [0.011] Task returned value 100 as expected
# [0.011] Running task 1.2...
# [0.011] Task returned value 101 as expected
# [0.011] Running task 1.3...
# [0.011] Task returned value 102 as expected
# [0.012] Exit the worker prematurely.
# [0.014] Running task 1...
# [0.014] Running task 2...
# [0.014] Task failed with "worker exited with code 17" as expected
# [0.014] Task failed with "worker exited with code 18" as expected
# [0.015] Running task 4...
# [0.015] Running task 3...
# [0.116] Task returned value 29 as expected
# [0.116] Task returned value 30 as expected
# [0.116] Running task 5...
# [0.216] Task returned value 31 as expected
# [0.217] Have a task reach its timeout (SIGTERM).
# [0.217] Running long task...
# [0.317] Task failed with "worker was killed by SIGTERM" as expected
# [0.318] Have a task reach its timeout (SIGTERM + SIGKILL).
# [0.318] Running long task...
# [0.419] Task failed with "worker was killed by SIGTERM" as expected
# [0.419] Have a task reach its timeout (SIGKILL).
# [0.419] Running long task...
# [0.520] Task failed with "worker was killed by SIGKILL" as expected
# [0.520] Have a task reach its timeout (SIGTERM, ignore).
# [0.521] Running long task...
# [1.021] Task failed with "I should have been killed by now" as expected
# [1.021] Have a task reach its timeout (SIGTERM + SIGKILL, ignore).
# [1.022] Running long task...
# [1.223] Task failed with "worker was killed by SIGKILL" as expected
# [1.223] Have a task reach its timeout (SIGKILL, ignore).
# [1.224] Running long task...
# [1.324] Task failed with "worker was killed by SIGKILL" as expected
# [1.325] Have the scheduler log for tasks.
# [1.327] [message] Log "This is task 2."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 3."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 1."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 6."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 4."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 5."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 7."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 9."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 8."
# [1.327] [message] Log "I'm logging stuff."
# [1.327] [message] Log "This is task 10."
# [1.327] [message] Log "I'm logging stuff."
# [1.328] Have tasks ask the scheduler for resources.
# [1.330] Running task 2...
# [1.330] Running task 4...
# [1.330] [message] Get_resource
# [1.330] [message] Get_resource
# [1.330] Received resource: 0
# [1.330] Running task 3...
# [1.330] Running task 1...
# [1.330] Received resource: 1
# [1.330] [message] Get_resource
# [1.330] [message] Get_resource
# [1.330] Running task 5...
# [1.330] [message] Get_resource
# [1.330] Received resource: 2
# [1.330] Received resource: 3
# [1.330] Received resource: 4
# [1.330] Running task 6...
# [1.330] [message] Get_resource
# [1.330] Running task 8...
# [1.330] Running task 9...
# [1.330] Running task 7...
# [1.330] [message] Get_resource
# [1.330] [message] Get_resource
# [1.330] [message] Get_resource
# [1.330] Received resource: 5
# [1.331] Received resource: 6
# [1.331] Running task 10...
# [1.331] Received resource: 7
# [1.331] [message] Get_resource
# [1.432] ok_count = 8, timeout_count = 2
# [1.432] Stop the scheduler while it is running.
# [1.433] Running task 1...
# [1.434] Stop.
# [1.434] Task failed with "worker was killed by SIGTERM" as expected
# [1.434] Task failed with "worker was killed by SIGTERM" as expected
# [1.435] Re-filling the queue.
# [1.435] Refill.
# [1.436] Running task 1.1
# [1.436] Running task 1.2
# [1.436] Refill.
# [1.436] Running task 2.2
# [1.436] Running task 2.1
# [1.436] Refill.
# [1.436] Running task 3.1
# [1.436] Running task 3.2
# [1.437] A task that creates other tasks.
# [1.437] [message] Push 1.1
# [1.438] [message] Push 2.2
# [1.438] [message] Push 3.3
# [1.438] [message] Push 4.4
# [1.438] [message] Push 5.5
# [1.439] Running task 1.1
# [1.439] Running task 2.2
# [1.439] Running task 3.3
# [1.439] Running task 4.4
# [1.439] Running task 5.5
# [1.440] Create a timer and run with no task.
# [1.540] It's time!
# [1.540] Task that emits a message to create a timer that will trigger more tasks.
# [1.641] [message] Push 1
# [1.692] Running subtask 1
# [1.741] [message] Push 2
# [1.792] Running subtask 2
# [1.792] Create a timer and another that cancels the first.
# [1.892] Cancel timer.
# [1.893] Create a task and a timer that regularly logs until the task is finished.
# [1.953] Beep!
# [2.013] Beep!
# [2.073] Beep!
# (cd _build/default/test/unix && ./main.exe)
# [10:08:52.558] [SUCCESS] (1/26) demo
# [10:08:52.558] [SUCCESS] (2/26) fixed seed
# [10:08:52.558] [SUCCESS] (3/26) random seed
# [10:08:52.558] [SUCCESS] (4/26) string_tree: mem_prefix_of
# [10:08:52.558] [SUCCESS] (5/26) Test.current_test_tags
# [10:08:52.558] [SUCCESS] (6/26) TSL parser: positive cases
# [10:08:52.558] [SUCCESS] (7/26) TSL parser: negative cases
# [10:08:52.559] [SUCCESS] (8/26) TSL parser: pretty-printing
# [10:08:52.559] [SUCCESS] (9/26) TSL: evaluation
# [10:08:52.836] [SUCCESS] (10/26) TSL parser: random roundtrips
# [10:08:52.836] [SUCCESS] (11/26) TSL: conjunction helper
# [10:08:52.836] [SUCCESS] (12/26) TSL: is_valid_tag
# [10:08:52.836] [SUCCESS] (13/26) TSL: extract tags
# [10:08:52.836] [SUCCESS] (14/26) diff: simple cases
# [10:08:52.858] [SUCCESS] (15/26) diff: random cases
# [10:08:52.858] [SUCCESS] (16/26) diff: log
# [10:08:52.858] [SUCCESS] (17/26) Check.pp
# [10:08:52.858] [SUCCESS] (18/26) Check.(=)
# [10:08:52.858] [SUCCESS] (19/26) Check.(<>)
# [10:08:52.858] [SUCCESS] (20/26) Check.(<)
# [10:08:52.858] [SUCCESS] (21/26) Check.(<=)
# [10:08:52.858] [SUCCESS] (22/26) Check.(>)
# [10:08:52.858] [SUCCESS] (23/26) Check.(>=)
# [10:08:52.858] [SUCCESS] (24/26) Check.(=~)
# [10:08:52.859] [SUCCESS] (25/26) Check.(=~!)
# [10:08:54.863] [SUCCESS] (26/26) Process.terminate with timeout
# File "test/cram/test-signals.t", line 1, characters 0-0:
# /usr/sbin/git --no-pager diff --no-index --color=always -u _build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t _build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
# diff --git a/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t b/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
# index 3d17d45..287d3ae 100644
# --- a/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t
# +++ b/_build/.sandbox/99a494909e51f55691d91101afd26a36/default/test/cram/test-signals.t.corrected
# @@ -32,14 +32,12 @@ Test various signal sequences.
# $ ./tezt-signal.sh INT INT INT
# Starting test: sleep one second without cooperating
# Received SIGINT.
# - ./tezt-signal.sh: 9: kill: No such process
# -
# + ./tezt-signal.sh: line 9: kill: (1243) - No such process
# [1]
# $ ./tezt-signal.sh INT INT TERM
# Starting test: sleep one second without cooperating
# Received SIGINT.
# - ./tezt-signal.sh: 9: kill: No such process
# -
# + ./tezt-signal.sh: line 9: kill: (1260) - No such process
# [1]
# $ ./tezt-signal.sh INT TERM INT
# Starting test: sleep one second without cooperating
# (cd _build/default/test/js && /usr/sbin/node main.bc.js)
# [10:08:54.586] [SUCCESS] (1/25) demo
# [10:08:54.589] [SUCCESS] (2/25) fixed seed
# [10:08:54.595] [SUCCESS] (3/25) random seed
# [10:08:54.596] [SUCCESS] (4/25) string_tree: mem_prefix_of
# [10:08:54.598] [SUCCESS] (5/25) Test.current_test_tags
# [10:08:54.602] [SUCCESS] (6/25) TSL parser: positive cases
# [10:08:54.605] [SUCCESS] (7/25) TSL parser: negative cases
# [10:08:54.607] [SUCCESS] (8/25) TSL parser: pretty-printing
# [10:08:54.618] [SUCCESS] (9/25) TSL: evaluation
# [10:08:56.252] [SUCCESS] (10/25) TSL parser: random roundtrips
# [10:08:56.253] [SUCCESS] (11/25) TSL: conjunction helper
# [10:08:56.253] [SUCCESS] (12/25) TSL: is_valid_tag
# [10:08:56.253] [SUCCESS] (13/25) TSL: extract tags
# [10:08:56.255] [SUCCESS] (14/25) diff: simple cases
# [10:08:56.371] [SUCCESS] (15/25) diff: random cases
# [10:08:56.374] [SUCCESS] (16/25) diff: log
# [10:08:56.375] [SUCCESS] (17/25) Check.pp
# [10:08:56.375] [SUCCESS] (18/25) Check.(=)
# [10:08:56.377] [SUCCESS] (19/25) Check.(<>)
# [10:08:56.377] [SUCCESS] (20/25) Check.(<)
# [10:08:56.378] [SUCCESS] (21/25) Check.(<=)
# [10:08:56.378] [SUCCESS] (22/25) Check.(>)
# [10:08:56.380] [SUCCESS] (23/25) Check.(>=)
# [10:08:56.381] [SUCCESS] (24/25) Check.(=~)
# [10:08:56.381] [SUCCESS] (25/25) Check.(=~!)
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
┌─ The following actions failed
│ λ build tezt 4.2.0
└─
╶─ No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose tezt.4.2.0' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose tezt.4.2.0;
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 "\"archlinux\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'tezt.4.2.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-03-10 10:09.29: Job failed: Failed: Build failed
2026-03-10 10:09.29: Log analysis:
2026-03-10 10:09.29: >>>
[ERROR] The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".
(score = 20)
2026-03-10 10:09.29: >>>
[ERROR] The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".
(score = 20)
2026-03-10 10:09.29: The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".