- github
- ocaml
- opam-repository
- 3af7d0
- distributions,fedora-43-ocaml-4.14,tezt.4.2.0,tests
(not at the head of any monitored branch or PR)
2026-03-10 08:59.51: New job: test tezt.4.2.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
on fedora-43-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:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36
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 "\"fedora-43\""; 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 "\"fedora-43\""; 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.51: Using cache hint "ocaml/opam:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36-tezt.4.2.0-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.51: Using OBuilder spec:
((from ocaml/opam:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36)
(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 \"\\\"fedora-43\\\"\"; 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 \"\\\"fedora-43\\\"\"; 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.51: Waiting for resource in pool OCluster
2026-03-10 09:47.43: Waiting for worker…
2026-03-10 09:49.50: Got resource from pool OCluster
Building on doris.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:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36)
Unable to find image 'ocaml/opam:fedora-43-ocaml-4.14@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36' locally
docker.io/ocaml/opam@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36: Pulling from ocaml/opam
5bc90b3315da: Pulling fs layer
132ed1c875b9: Pulling fs layer
709f19a93d7b: Pulling fs layer
600672ca084e: Pulling fs layer
e14c24140cbe: Pulling fs layer
2db09da454e1: Pulling fs layer
5bc90b3315da: Waiting
132ed1c875b9: Waiting
0e05a03dbf5c: Pulling fs layer
e14c24140cbe: Waiting
709f19a93d7b: Waiting
d9bf0b27ee73: Pulling fs layer
600672ca084e: Waiting
2db09da454e1: Waiting
d22999d561d9: Pulling fs layer
9748e0447729: Pulling fs layer
b221b944dee6: Pulling fs layer
d9bf0b27ee73: Waiting
9103b02722d1: Pulling fs layer
d22999d561d9: Waiting
4ad003f04196: Pulling fs layer
b221b944dee6: Waiting
9748e0447729: Waiting
530b789336ee: Pulling fs layer
9103b02722d1: Waiting
4ad003f04196: Waiting
7dc6ed995942: Pulling fs layer
26e0665eb0ef: Pulling fs layer
ec3e95305314: Pulling fs layer
530b789336ee: Waiting
7dc6ed995942: Waiting
e3efd041cf4c: Pulling fs layer
26e0665eb0ef: Waiting
ec3e95305314: Waiting
93818fe36d44: Pulling fs layer
ddeea98533ac: Pulling fs layer
d782acfda9e2: Pulling fs layer
4f4fb700ef54: Pulling fs layer
4ac33b5f01d6: Pulling fs layer
e3efd041cf4c: Waiting
ddeea98533ac: Waiting
93818fe36d44: Waiting
d4dbe3c6c8b2: Pulling fs layer
4f4fb700ef54: Waiting
d782acfda9e2: Waiting
81507c45bdf3: Pulling fs layer
2a6e58484e29: Pulling fs layer
dc9846762449: Pulling fs layer
c73cd3a4d77c: Pulling fs layer
2a6e58484e29: Waiting
4655acdcba9f: Pulling fs layer
dc9846762449: Waiting
ea076df8754b: Pulling fs layer
2ea208952bef: Pulling fs layer
ea076df8754b: Waiting
c73cd3a4d77c: Waiting
4655acdcba9f: Waiting
2ea825907a64: Pulling fs layer
61247173b8a6: Pulling fs layer
09632a095133: Pulling fs layer
724c34c015ab: Pulling fs layer
135cb0ab9a1d: Pulling fs layer
b9e130e952db: Pulling fs layer
2ea208952bef: Waiting
2ea825907a64: Waiting
09632a095133: Waiting
d30c115b82bd: Pulling fs layer
f46f55c5b90c: Pulling fs layer
61247173b8a6: Waiting
c8ed89f90e3f: Pulling fs layer
b9e130e952db: Waiting
db717e7985ca: Pulling fs layer
724c34c015ab: Waiting
e01a46ea7428: Pulling fs layer
d30c115b82bd: Waiting
72da6401e35e: Pulling fs layer
e01a46ea7428: Waiting
78ec2f95f570: Pulling fs layer
db717e7985ca: Waiting
f46f55c5b90c: Waiting
78ec2f95f570: Waiting
5bc90b3315da: Download complete
132ed1c875b9: Download complete
709f19a93d7b: Verifying Checksum
709f19a93d7b: Download complete
5bc90b3315da: Pull complete
132ed1c875b9: Pull complete
709f19a93d7b: Pull complete
600672ca084e: Verifying Checksum
600672ca084e: Download complete
e14c24140cbe: Verifying Checksum
e14c24140cbe: Download complete
2db09da454e1: Verifying Checksum
2db09da454e1: Download complete
d9bf0b27ee73: Verifying Checksum
d9bf0b27ee73: Download complete
d22999d561d9: Verifying Checksum
d22999d561d9: Download complete
9748e0447729: Verifying Checksum
9748e0447729: Download complete
b221b944dee6: Download complete
600672ca084e: Pull complete
9103b02722d1: Verifying Checksum
9103b02722d1: Download complete
4ad003f04196: Verifying Checksum
4ad003f04196: Download complete
530b789336ee: Verifying Checksum
530b789336ee: Download complete
e14c24140cbe: Pull complete
7dc6ed995942: Verifying Checksum
7dc6ed995942: Download complete
2db09da454e1: Pull complete
26e0665eb0ef: Verifying Checksum
26e0665eb0ef: Download complete
0e05a03dbf5c: Verifying Checksum
0e05a03dbf5c: Download complete
ec3e95305314: Verifying Checksum
ec3e95305314: Download complete
e3efd041cf4c: Verifying Checksum
e3efd041cf4c: Download complete
0e05a03dbf5c: Pull complete
93818fe36d44: Verifying Checksum
93818fe36d44: Download complete
ddeea98533ac: Verifying Checksum
ddeea98533ac: Download complete
d9bf0b27ee73: Pull complete
d782acfda9e2: Download complete
d22999d561d9: Pull complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
4ac33b5f01d6: Verifying Checksum
4ac33b5f01d6: Download complete
d4dbe3c6c8b2: Verifying Checksum
d4dbe3c6c8b2: Download complete
9748e0447729: Pull complete
81507c45bdf3: Verifying Checksum
81507c45bdf3: Download complete
2a6e58484e29: Verifying Checksum
2a6e58484e29: Download complete
b221b944dee6: Pull complete
c73cd3a4d77c: Verifying Checksum
c73cd3a4d77c: Download complete
dc9846762449: Verifying Checksum
dc9846762449: Download complete
9103b02722d1: Pull complete
4655acdcba9f: Verifying Checksum
4655acdcba9f: Download complete
4ad003f04196: Pull complete
530b789336ee: Pull complete
7dc6ed995942: Pull complete
26e0665eb0ef: Pull complete
ec3e95305314: Pull complete
e3efd041cf4c: Pull complete
93818fe36d44: Pull complete
ddeea98533ac: Pull complete
d782acfda9e2: Pull complete
4f4fb700ef54: Pull complete
4ac33b5f01d6: Pull complete
d4dbe3c6c8b2: Pull complete
81507c45bdf3: Pull complete
2a6e58484e29: Pull complete
2ea208952bef: Verifying Checksum
2ea208952bef: Download complete
dc9846762449: Pull complete
c73cd3a4d77c: Pull complete
ea076df8754b: Verifying Checksum
ea076df8754b: Download complete
4655acdcba9f: Pull complete
ea076df8754b: Pull complete
2ea208952bef: Pull complete
61247173b8a6: Verifying Checksum
2ea825907a64: Verifying Checksum
2ea825907a64: Download complete
2ea825907a64: Pull complete
61247173b8a6: Pull complete
09632a095133: Verifying Checksum
09632a095133: Download complete
09632a095133: Pull complete
135cb0ab9a1d: Verifying Checksum
135cb0ab9a1d: Download complete
b9e130e952db: Verifying Checksum
b9e130e952db: Download complete
d30c115b82bd: Download complete
724c34c015ab: Verifying Checksum
724c34c015ab: Download complete
c8ed89f90e3f: Verifying Checksum
c8ed89f90e3f: Download complete
f46f55c5b90c: Download complete
72da6401e35e: Verifying Checksum
72da6401e35e: Download complete
78ec2f95f570: Verifying Checksum
78ec2f95f570: Download complete
db717e7985ca: Verifying Checksum
db717e7985ca: Download complete
724c34c015ab: Pull complete
135cb0ab9a1d: Pull complete
b9e130e952db: Pull complete
d30c115b82bd: Pull complete
f46f55c5b90c: Pull complete
c8ed89f90e3f: Pull complete
db717e7985ca: Pull complete
e01a46ea7428: Pull complete
72da6401e35e: Pull complete
78ec2f95f570: Pull complete
Digest: sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36
Status: Downloaded newer image for ocaml/opam@sha256:5e41a553cdc17cdaf8d41504e7f5e3f9984c4e8286912b61d655a7b1021f4e36
2026-03-10 09:52.22 ---> using "3884e3e896ded403567ac77f2e5e2905f6d6bf57a6c589d816e8485067db09fa" 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 09:52.22 ---> using "676c1c4d1f08290abc7fb12e5f3c58677a8aad6ed78d454b4de6e95157ef1128" 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
[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
2026-03-10 09:52.22 ---> using "b0613f11496eaa4360b32b2c46db38e24a87c5b22684b3d612963528ae2e897f" 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=fedora os-version=43
# 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 09:52.22 ---> using "83426772abcb03b6c3bfca5325d56a14da150be2813933d74fc3cfea38c17caa" 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 09:52.22 ---> using "a02d89194f551b938d741567656ed4dc20ff35ad80167ba821ac061ca989a676" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 09:52.22 ---> using "1547693c7eadfb7e0dbadc1a019df20459a108e41b4d5856c7ab44d7b488d129" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 09:52.40 ---> saved as "397b9f5fd7f2f67ea935c5c634c24f52ab1cd1dbff29a70bdeca9b98da0bfe87"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 43 - x86_64 100% | 43.8 KiB/s | 22.8 KiB | 00m01s
- Fedora 43 - x86_64 - Updates 100% | 18.3 KiB/s | 6.3 KiB | 00m00s
- Fedora 43 openh264 (From Cisco) - x86_ 100% | 5.0 KiB/s | 986.0 B | 00m00s
- Repositories loaded.
- Metadata cache created.
2026-03-10 09:52.46 ---> saved as "c55fe93b7eb2499df9eab0cb0dee66179da341f272e27ff937eb0a94aa510af7"
/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 09:52.46 ---> saved as "9d3b62919dca7b44f7bc9b2332747413d41d7e6f8ec779d629876807983656d2"
/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 \"\\\"fedora-43\\\"\"; 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
- install base-bytes base [required by ocplib-endian]
- install clap 0.3.0 [required by tezt]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by hex]
- install dune 3.21.1 [required by tezt]
- install dune-configurator 3.21.1 [required by lwt]
- install ezjsonm 1.3.0 [required by tezt]
- install fmt 0.11.0 [required by cstruct]
- install hex 1.5.0 [required by ezjsonm]
- install jsonm 1.0.2 [required by ezjsonm]
- install lwt 5.9.2 [required by tezt]
- install ocamlbuild 0.16.1 [required by jsonm]
- install ocamlfind 1.9.8 [required by jsonm]
- install ocplib-endian 1.2 [required by lwt]
- install re 1.14.0 [required by tezt]
- install sexplib0 v0.17.0 [required by ezjsonm]
- install tezt 4.2.0 (pinned)
- install topkg 1.1.1 [required by jsonm]
- install 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 09:53.22 ---> saved as "4a2cfc90003698d80c4d9ce29d8ae73a22e48f875fd291643982f76be98a9f14"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test tezt.4.2.0) || true"))
The following actions will be performed:
=== downgrade 3 packages
- downgrade dune 3.21.1 to 3.18.2 [required by tezt]
- downgrade dune-configurator 3.21.1 to 3.19.1 [uses dune]
- downgrade sexplib0 v0.17.0 to v0.16.0 [uses dune]
=== recompile 13 packages
- recompile clap 0.3.0 [uses dune]
- recompile cppo 1.8.0 [uses dune]
- recompile csexp 1.5.2 [uses dune]
- recompile cstruct 6.2.0 [uses dune]
- recompile ezjsonm 1.3.0 [uses dune]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile hex 1.5.0 [uses dune]
- recompile jsonm 1.0.2 [uses uutf]
- recompile lwt 5.9.2 [uses dune]
- recompile ocplib-endian 1.2 [uses dune]
- recompile re 1.14.0 [uses dune]
- recompile tezt 4.2.0 (pinned)
- recompile uutf 1.0.4 [uses cmdliner]
=== install 34 packages
- install astring 0.8.5 [required by ocamlformat-lib]
- install base v0.16.4 [required by ocamlformat-lib]
- install camlp-streams 5.0.1 [required by ocamlformat-lib]
- install cmdliner 1.3.0 [required by ocamlformat]
- install conf-npm 1 [required by tezt]
- install dune-build-info 3.19.1 [required by ocamlformat-lib]
- install either 1.0.0 [required by ocamlformat-lib]
- install fix 20250919 [required by ocamlformat-lib]
- install fpath 0.7.3 [required by ocamlformat-lib]
- install gen 1.1 [required by sedlex]
- install js_of_ocaml 6.0.1 [required by tezt]
- install js_of_ocaml-compiler 6.0.1 [required by js_of_ocaml]
- install js_of_ocaml-lwt 6.0.1 [required by tezt]
- install js_of_ocaml-ppx 6.0.1 [required by js_of_ocaml-lwt]
- install menhir 20260209 [required by js_of_ocaml-compiler, ocamlformat-lib]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by js_of_ocaml-compiler, ocamlformat-lib]
- install menhirSdk 20260209 [required by js_of_ocaml-compiler, ocamlformat-lib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-version 4.0.3 [required by ocamlformat-lib]
- install ocamlformat 0.26.2 [required by tezt]
- install ocamlformat-lib 0.26.2 [required by ocamlformat]
- install ocp-indent 1.8.1 [required by ocamlformat-lib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by js_of_ocaml]
- install result 1.5 [required by ocamlformat-lib]
- install sedlex 3.7 [required by js_of_ocaml-compiler]
- install seq base [required by gen]
- install stdio v0.16.0 [required by ocamlformat-lib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install uucp 17.0.0 [required by uuseg]
- install uuseg 17.0.0 [required by ocamlformat-lib]
- install 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 yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- nodejs-npm x86_64 1:10.9.4-1.22.22.0.2.fc43 updates 9.2 MiB
- Installing dependencies:
- c-ares x86_64 1.34.5-2.fc43 fedora 269.1 KiB
- libuv x86_64 1:1.51.0-2.fc43 fedora 570.2 KiB
- nodejs x86_64 1:22.22.0-2.fc43 updates 161.6 KiB
- nodejs-libs x86_64 1:22.22.0-2.fc43 updates 78.1 MiB
- Installing weak dependencies:
- nodejs-docs noarch 1:22.22.0-2.fc43 updates 97.5 MiB
- nodejs-full-i18n x86_64 1:22.22.0-2.fc43 updates 30.4 MiB
-
- Transaction Summary:
- Installing: 7 packages
-
- Total size of inbound packages is 40 MiB. Need to download 40 MiB.
- After this operation, 216 MiB extra will be used (install 216 MiB, remove 0 B).
- [1/7] nodejs-1:22.22.0-2.fc43.x86_64 100% | 378.1 KiB/s | 51.4 KiB | 00m00s
- [2/7] c-ares-0:1.34.5-2.fc43.x86_64 100% | 3.3 MiB/s | 117.0 KiB | 00m00s
- [3/7] libuv-1:1.51.0-2.fc43.x86_64 100% | 16.2 MiB/s | 266.1 KiB | 00m00s
- [4/7] nodejs-npm-1:10.9.4-1.22.22.0.2.f 100% | 3.4 MiB/s | 2.3 MiB | 00m01s
- [5/7] nodejs-docs-1:22.22.0-2.fc43.noar 100% | 2.2 MiB/s | 9.1 MiB | 00m04s
- [6/7] nodejs-libs-1:22.22.0-2.fc43.x86_ 100% | 3.7 MiB/s | 19.6 MiB | 00m05s
- [7/7] nodejs-full-i18n-1:22.22.0-2.fc43 100% | 1.2 MiB/s | 8.5 MiB | 00m07s
- --------------------------------------------------------------------------------
- [7/7] Total 100% | 4.9 MiB/s | 40.1 MiB | 00m08s
- Running transaction
- [1/9] Verify package files 100% | 46.0 B/s | 7.0 B | 00m00s
- [2/9] Prepare transaction 100% | 104.0 B/s | 7.0 B | 00m00s
- [3/9] Installing libuv-1:1.51.0-2.fc43. 100% | 186.5 MiB/s | 573.0 KiB | 00m00s
- [4/9] Installing c-ares-0:1.34.5-2.fc43 100% | 132.1 MiB/s | 270.6 KiB | 00m00s
- [5/9] Installing nodejs-libs-1:22.22.0- 100% | 342.7 MiB/s | 78.1 MiB | 00m00s
- [6/9] Installing nodejs-1:22.22.0-2.fc4 100% | 7.6 MiB/s | 163.7 KiB | 00m00s
- [7/9] Installing nodejs-npm-1:10.9.4-1. 100% | 35.6 MiB/s | 9.6 MiB | 00m00s
- [8/9] Installing nodejs-full-i18n-1:22. 100% | 307.3 MiB/s | 30.4 MiB | 00m00s
- [9/9] Installing nodejs-docs-1:22.22.0- 100% | 827.3 MiB/s | 97.6 MiB | 00m00s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.4-1.22.22.0.2.fc43.x86_64
<><> 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)
-> installed fpath.0.7.3
-> 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)
-> 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-302e77.env
# output-file ~/.opam/log/tezt-7-302e77.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.004] Running failing task...
# [0.004] Task failed with "failed" as expected
# [0.004] Run two tasks in a single worker.
# [0.005] Running task 1...
# [0.005] Task returned value 18 as expected
# [0.005] Running task 2...
# [0.005] Task returned value 19 as expected
# [0.006] Run one task in two workers.
# [0.006] Running task...
# [0.007] Task returned value 20 as expected
# [0.007] Run two tasks in two workers.
# [0.008] Running task 2...
# [0.008] Running task 1...
# [0.008] Task returned value 22 as expected
# [0.008] Task returned value 21 as expected
# [0.009] Run three tasks in two workers.
# [0.010] Running task 2...
# [0.010] Running task 1...
# [0.010] Task returned value 24 as expected
# [0.010] Task returned value 23 as expected
# [0.010] Running task 3...
# [0.010] Task returned value 25 as expected
# [0.011] Run a scheduler inside a worker.
# [0.012] Running task 2...
# [0.012] Running task 1...
# [0.012] Task returned value 27 as expected
# [0.012] Running task 3...
# [0.012] Task returned value 28 as expected
# [0.013] Running task 1.2...
# [0.013] Running task 1.1...
# [0.013] Task returned value 100 as expected
# [0.013] Task returned value 101 as expected
# [0.013] Running task 1.3...
# [0.013] Task returned value 102 as expected
# [0.015] Exit the worker prematurely.
# [0.016] Running task 2...
# [0.016] Running task 1...
# [0.016] Task failed with "worker exited with code 18" as expected
# [0.016] Task failed with "worker exited with code 17" as expected
# [0.017] Running task 3...
# [0.017] Running task 4...
# [0.117] Task returned value 29 as expected
# [0.117] Running task 5...
# [0.117] Task returned value 30 as expected
# [0.217] Task returned value 31 as expected
# [0.218] Have a task reach its timeout (SIGTERM).
# [0.218] Running long task...
# [0.319] Task failed with "worker was killed by SIGTERM" as expected
# [0.319] Have a task reach its timeout (SIGTERM + SIGKILL).
# [0.320] Running long task...
# [0.420] Task failed with "worker was killed by SIGTERM" as expected
# [0.420] Have a task reach its timeout (SIGKILL).
# [0.421] 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.522] Running long task...
# [1.023] Task failed with "I should have been killed by now" as expected
# [1.023] Have a task reach its timeout (SIGTERM + SIGKILL, ignore).
# [1.024] Running long task...
# [1.224] Task failed with "worker was killed by SIGKILL" as expected
# [1.224] 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.328] [message] Log "This is task 2."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 3."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 1."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 4."
# [1.328] [message] Log "I'm logging stuff."
# [1.328] [message] Log "This is task 6."
# [1.328] [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 5."
# [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.329] [message] Log "This is task 10."
# [1.329] [message] Log "I'm logging stuff."
# [1.329] Have tasks ask the scheduler for resources.
# [1.331] Running task 2...
# [1.331] Running task 1...
# [1.331] [message] Get_resource
# [1.331] Running task 3...
# [1.331] [message] Get_resource
# [1.331] Received resource: 0
# [1.332] [message] Get_resource
# [1.331] Running task 4...
# [1.332] Received resource: 1
# [1.332] [message] Get_resource
# [1.332] Running task 5...
# [1.332] Received resource: 2
# [1.332] [message] Get_resource
# [1.332] Running task 6...
# [1.332] Received resource: 3
# [1.332] Received resource: 4
# [1.332] Running task 7...
# [1.332] [message] Get_resource
# [1.332] [message] Get_resource
# [1.332] Running task 8...
# [1.332] Received resource: 5
# [1.332] [message] Get_resource
# [1.332] Running task 9...
# [1.332] Received resource: 6
# [1.332] [message] Get_resource
# [1.332] Received resource: 7
# [1.332] Running task 10...
# [1.332] [message] Get_resource
# [1.433] ok_count = 8, timeout_count = 2
# [1.433] Stop the scheduler while it is running.
# [1.435] Running task 1...
# [1.435] Stop.
# [1.435] Task failed with "worker was killed by SIGTERM" as expected
# [1.435] Task failed with "worker was killed by SIGTERM" as expected
# [1.436] Re-filling the queue.
# [1.436] Refill.
# [1.437] Running task 1.1
# [1.437] Refill.
# [1.437] Running task 1.2
# [1.437] Running task 2.1
# [1.437] Refill.
# [1.437] Running task 2.2
# [1.437] Running task 3.1
# [1.437] Running task 3.2
# [1.438] A task that creates other tasks.
# [1.439] [message] Push 1.1
# [1.439] [message] Push 2.2
# [1.439] [message] Push 3.3
# [1.439] [message] Push 4.4
# [1.439] [message] Push 5.5
# [1.440] Running task 1.1
# [1.440] Running task 3.3
# [1.441] Running task 2.2
# [1.441] Running task 4.4
# [1.441] Running task 5.5
# [1.442] Create a timer and run with no task.
# [1.542] It's time!
# [1.542] Task that emits a message to create a timer that will trigger more tasks.
# [1.643] [message] Push 1
# [1.693] Running subtask 1
# [1.743] [message] Push 2
# [1.793] Running subtask 2
# [1.794] Create a timer and another that cancels the first.
# [1.894] Cancel timer.
# [1.894] Create a task and a timer that regularly logs until the task is finished.
# [1.954] Beep!
# [2.015] Beep!
# [2.075] Beep!
# (cd _build/default/test/unix && ./main.exe)
# [09:54:58.682] [SUCCESS] (1/26) demo
# [09:54:58.682] [SUCCESS] (2/26) fixed seed
# [09:54:58.682] [SUCCESS] (3/26) random seed
# [09:54:58.682] [SUCCESS] (4/26) string_tree: mem_prefix_of
# [09:54:58.682] [SUCCESS] (5/26) Test.current_test_tags
# [09:54:58.682] [SUCCESS] (6/26) TSL parser: positive cases
# [09:54:58.682] [SUCCESS] (7/26) TSL parser: negative cases
# [09:54:58.682] [SUCCESS] (8/26) TSL parser: pretty-printing
# [09:54:58.683] [SUCCESS] (9/26) TSL: evaluation
# [09:54:58.964] [SUCCESS] (10/26) TSL parser: random roundtrips
# [09:54:58.964] [SUCCESS] (11/26) TSL: conjunction helper
# [09:54:58.964] [SUCCESS] (12/26) TSL: is_valid_tag
# [09:54:58.964] [SUCCESS] (13/26) TSL: extract tags
# [09:54:58.964] [SUCCESS] (14/26) diff: simple cases
# [09:54:58.986] [SUCCESS] (15/26) diff: random cases
# [09:54:58.986] [SUCCESS] (16/26) diff: log
# [09:54:58.986] [SUCCESS] (17/26) Check.pp
# [09:54:58.986] [SUCCESS] (18/26) Check.(=)
# [09:54:58.986] [SUCCESS] (19/26) Check.(<>)
# [09:54:58.986] [SUCCESS] (20/26) Check.(<)
# [09:54:58.986] [SUCCESS] (21/26) Check.(<=)
# [09:54:58.986] [SUCCESS] (22/26) Check.(>)
# [09:54:58.986] [SUCCESS] (23/26) Check.(>=)
# [09:54:58.986] [SUCCESS] (24/26) Check.(=~)
# [09:54:58.986] [SUCCESS] (25/26) Check.(=~!)
# [09:55:00.989] [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/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t _build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t.corrected
# diff --git a/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t b/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t.corrected
# index 3d17d45..bd0488c 100644
# --- a/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t
# +++ b/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/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: (12789) - 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: (12806) - 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)
# [09:55:00.815] [SUCCESS] (1/25) demo
# [09:55:00.819] [SUCCESS] (2/25) fixed seed
# [09:55:00.831] [SUCCESS] (3/25) random seed
# [09:55:00.834] [SUCCESS] (4/25) string_tree: mem_prefix_of
# [09:55:00.835] [SUCCESS] (5/25) Test.current_test_tags
# [09:55:00.842] [SUCCESS] (6/25) TSL parser: positive cases
# [09:55:00.845] [SUCCESS] (7/25) TSL parser: negative cases
# [09:55:00.848] [SUCCESS] (8/25) TSL parser: pretty-printing
# [09:55:00.862] [SUCCESS] (9/25) TSL: evaluation
# [09:55:02.940] [SUCCESS] (10/25) TSL parser: random roundtrips
# [09:55:02.941] [SUCCESS] (11/25) TSL: conjunction helper
# [09:55:02.943] [SUCCESS] (12/25) TSL: is_valid_tag
# [09:55:02.944] [SUCCESS] (13/25) TSL: extract tags
# [09:55:02.946] [SUCCESS] (14/25) diff: simple cases
# [09:55:03.118] [SUCCESS] (15/25) diff: random cases
# [09:55:03.122] [SUCCESS] (16/25) diff: log
# [09:55:03.125] [SUCCESS] (17/25) Check.pp
# [09:55:03.125] [SUCCESS] (18/25) Check.(=)
# [09:55:03.127] [SUCCESS] (19/25) Check.(<>)
# [09:55:03.128] [SUCCESS] (20/25) Check.(<)
# [09:55:03.130] [SUCCESS] (21/25) Check.(<=)
# [09:55:03.131] [SUCCESS] (22/25) Check.(>)
# [09:55:03.131] [SUCCESS] (23/25) Check.(>=)
# [09:55:03.134] [SUCCESS] (24/25) Check.(=~)
# [09:55:03.134] [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-20260310095323.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2026-03-10 09:55.12 ---> saved as "5436aa82bb6a1b3416817871000cc6cbd6cfcf9bf588e7432665e69e1451ebb0"
/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 \"\\\"fedora-43\\\"\"; 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
[WARNING] Opam package conf-npm.1 depends on the following system package that can no longer be found: npm
The following actions will be performed:
=== recompile 1 package
- recompile conf-npm 1 [upstream or system changes]
=== install 1 package
- install tezt 4.2.0 (pinned)
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 yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package "nodejs-npm-1:10.9.4-1.22.22.0.2.fc43.x86_64" is already installed.
-
- Nothing to do.
+ /usr/sbin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.4-1.22.22.0.2.fc43.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/7: [tezt.4.2.0: extract]
Processing 3/7: [tezt.4.2.0: extract] [conf-npm: npm]
-> retrieved tezt.4.2.0 (cached)
Processing 3/7: [conf-npm: npm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "npm" "--version" (CWD=/home/opam/.opam/4.14/.opam-switch/build/conf-npm.1)
- 10.9.4
-> compiled conf-npm.1
-> removed conf-npm.1
-> installed conf-npm.1
Processing 6/7: [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 6/7: [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.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.005] Running task 1...
- [0.005] Task returned value 18 as expected
- [0.005] 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.006] Run two tasks in two workers.
- [0.007] Running task 1...
- [0.007] Task returned value 21 as expected
- [0.007] Running task 2...
- [0.007] Task returned value 22 as expected
- [0.008] Run three tasks in two workers.
- [0.009] Running task 1...
- [0.009] Task returned value 23 as expected
- [0.009] Running task 3...
- [0.009] Task returned value 25 as expected
- [0.009] Running task 2...
- [0.009] Task returned value 24 as expected
- [0.010] Run a scheduler inside a worker.
- [0.011] Running task 1...
- [0.011] Running task 2...
- [0.012] Task returned value 27 as expected
- [0.012] Running task 3...
- [0.012] Task returned value 28 as expected
- [0.012] Running task 1.1...
- [0.012] Running task 1.2...
- [0.013] Task returned value 100 as expected
- [0.013] Task returned value 101 as expected
- [0.013] Running task 1.3...
- [0.013] Task returned value 102 as expected
- [0.014] Exit the worker prematurely.
- [0.015] Running task 1...
- [0.015] Running task 2...
- [0.015] Task failed with "worker exited with code 17" as expected
- [0.016] Task failed with "worker exited with code 18" as expected
- [0.016] Running task 3...
- [0.016] Running task 4...
- [0.116] Task returned value 29 as expected
- [0.116] Running task 5...
- [0.117] Task returned value 30 as expected
- [0.217] Task returned value 31 as expected
- [0.217] Have a task reach its timeout (SIGTERM).
- [0.218] Running long task...
- [0.318] Task failed with "worker was killed by SIGTERM" as expected
- [0.318] Have a task reach its timeout (SIGTERM + SIGKILL).
- [0.319] Running long task...
- [0.420] Task failed with "worker was killed by SIGTERM" as expected
- [0.420] Have a task reach its timeout (SIGKILL).
- [0.420] 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.022] Task failed with "I should have been killed by now" as expected
- [1.022] Have a task reach its timeout (SIGTERM + SIGKILL, ignore).
- [1.023] Running long task...
- [1.224] Task failed with "worker was killed by SIGKILL" as expected
- [1.224] Have a task reach its timeout (SIGKILL, ignore).
- [1.225] Running long task...
- [1.325] 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 1."
- [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 3."
- [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 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 7."
- [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 9."
- [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.329] Running task 2...
- [1.329] Running task 1...
- [1.329] Running task 3...
- [1.329] [message] Get_resource
- [1.329] [message] Get_resource
- [1.329] [message] Get_resource
- [1.329] Received resource: 0
- [1.329] Received resource: 1
- [1.329] Received resource: 2
- [1.329] Running task 7...
- [1.329] Running task 5...
- [1.329] Running task 6...
- [1.329] [message] Get_resource
- [1.329] [message] Get_resource
- [1.329] [message] Get_resource
- [1.329] Received resource: 3
- [1.329] Received resource: 4
- [1.329] Received resource: 5
- [1.329] Running task 4...
- [1.329] Running task 8...
- [1.329] [message] Get_resource
- [1.329] [message] Get_resource
- [1.329] Running task 9...
- [1.329] Running task 10...
- [1.329] [message] Get_resource
- [1.329] [message] Get_resource
- [1.329] Received resource: 6
- [1.329] 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.434] Re-filling the queue.
- [1.434] Refill.
- [1.435] Running task 1.1
- [1.435] Running task 1.2
- [1.435] Refill.
- [1.435] Running task 2.2
- [1.435] Refill.
- [1.435] Running task 2.1
- [1.435] Running task 3.1
- [1.435] Running task 3.2
- [1.436] A task that creates other tasks.
- [1.437] [message] Push 1.1
- [1.437] [message] Push 2.2
- [1.437] [message] Push 3.3
- [1.437] [message] Push 4.4
- [1.437] [message] Push 5.5
- [1.438] Running task 1.1
- [1.438] Running task 2.2
- [1.438] Running task 4.4
- [1.438] Running task 5.5
- [1.438] Running task 3.3
- [1.441] Create a timer and run with no task.
- [1.541] It's time!
- [1.542] Task that emits a message to create a timer that will trigger more tasks.
- [1.643] [message] Push 1
- [1.694] Running subtask 1
- [1.743] [message] Push 2
- [1.794] Running subtask 2
- [1.795] Create a timer and another that cancels the first.
- [1.895] Cancel timer.
- [1.895] Create a task and a timer that regularly logs until the task is finished.
- [1.956] Beep!
- [2.016] Beep!
- [2.076] Beep!
- (cd _build/default/test/unix && ./main.exe)
- [09:55:18.319] [SUCCESS] (1/26) demo
- [09:55:18.319] [SUCCESS] (2/26) fixed seed
- [09:55:18.319] [SUCCESS] (3/26) random seed
- [09:55:18.319] [SUCCESS] (4/26) string_tree: mem_prefix_of
- [09:55:18.319] [SUCCESS] (5/26) Test.current_test_tags
- [09:55:18.319] [SUCCESS] (6/26) TSL parser: positive cases
- [09:55:18.320] [SUCCESS] (7/26) TSL parser: negative cases
- [09:55:18.320] [SUCCESS] (8/26) TSL parser: pretty-printing
- [09:55:18.320] [SUCCESS] (9/26) TSL: evaluation
- [09:55:18.601] [SUCCESS] (10/26) TSL parser: random roundtrips
- [09:55:18.601] [SUCCESS] (11/26) TSL: conjunction helper
- [09:55:18.601] [SUCCESS] (12/26) TSL: is_valid_tag
- [09:55:18.601] [SUCCESS] (13/26) TSL: extract tags
- [09:55:18.601] [SUCCESS] (14/26) diff: simple cases
- [09:55:18.622] [SUCCESS] (15/26) diff: random cases
- [09:55:18.622] [SUCCESS] (16/26) diff: log
- [09:55:18.622] [SUCCESS] (17/26) Check.pp
- [09:55:18.623] [SUCCESS] (18/26) Check.(=)
- [09:55:18.623] [SUCCESS] (19/26) Check.(<>)
- [09:55:18.623] [SUCCESS] (20/26) Check.(<)
- [09:55:18.623] [SUCCESS] (21/26) Check.(<=)
- [09:55:18.623] [SUCCESS] (22/26) Check.(>)
- [09:55:18.623] [SUCCESS] (23/26) Check.(>=)
- [09:55:18.623] [SUCCESS] (24/26) Check.(=~)
- [09:55:18.623] [SUCCESS] (25/26) Check.(=~!)
- [09:55:20.627] [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/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t _build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t.corrected
- diff --git a/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t b/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t.corrected
- index 3d17d45..d826d80 100644
- --- a/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t
- +++ b/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/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: (1271) - 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: (1288) - 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)
- [09:55:20.447] [SUCCESS] (1/25) demo
- [09:55:20.450] [SUCCESS] (2/25) fixed seed
- [09:55:20.463] [SUCCESS] (3/25) random seed
- [09:55:20.466] [SUCCESS] (4/25) string_tree: mem_prefix_of
- [09:55:20.467] [SUCCESS] (5/25) Test.current_test_tags
- [09:55:20.474] [SUCCESS] (6/25) TSL parser: positive cases
- [09:55:20.476] [SUCCESS] (7/25) TSL parser: negative cases
- [09:55:20.480] [SUCCESS] (8/25) TSL parser: pretty-printing
- [09:55:20.496] [SUCCESS] (9/25) TSL: evaluation
- [09:55:22.565] [SUCCESS] (10/25) TSL parser: random roundtrips
- [09:55:22.566] [SUCCESS] (11/25) TSL: conjunction helper
- [09:55:22.568] [SUCCESS] (12/25) TSL: is_valid_tag
- [09:55:22.568] [SUCCESS] (13/25) TSL: extract tags
- [09:55:22.571] [SUCCESS] (14/25) diff: simple cases
- [09:55:22.740] [SUCCESS] (15/25) diff: random cases
- [09:55:22.743] [SUCCESS] (16/25) diff: log
- [09:55:22.746] [SUCCESS] (17/25) Check.pp
- [09:55:22.746] [SUCCESS] (18/25) Check.(=)
- [09:55:22.747] [SUCCESS] (19/25) Check.(<>)
- [09:55:22.749] [SUCCESS] (20/25) Check.(<)
- [09:55:22.750] [SUCCESS] (21/25) Check.(<=)
- [09:55:22.752] [SUCCESS] (22/25) Check.(>)
- [09:55:22.753] [SUCCESS] (23/25) Check.(>=)
- [09:55:22.755] [SUCCESS] (24/25) Check.(=~)
- [09:55:22.755] [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-66fb36.env
# output-file ~/.opam/log/tezt-7-66fb36.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.005] Running task 1...
# [0.005] Task returned value 18 as expected
# [0.005] 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.006] Run two tasks in two workers.
# [0.007] Running task 1...
# [0.007] Task returned value 21 as expected
# [0.007] Running task 2...
# [0.007] Task returned value 22 as expected
# [0.008] Run three tasks in two workers.
# [0.009] Running task 1...
# [0.009] Task returned value 23 as expected
# [0.009] Running task 3...
# [0.009] Task returned value 25 as expected
# [0.009] Running task 2...
# [0.009] Task returned value 24 as expected
# [0.010] Run a scheduler inside a worker.
# [0.011] Running task 1...
# [0.011] Running task 2...
# [0.012] Task returned value 27 as expected
# [0.012] Running task 3...
# [0.012] Task returned value 28 as expected
# [0.012] Running task 1.1...
# [0.012] Running task 1.2...
# [0.013] Task returned value 100 as expected
# [0.013] Task returned value 101 as expected
# [0.013] Running task 1.3...
# [0.013] Task returned value 102 as expected
# [0.014] Exit the worker prematurely.
# [0.015] Running task 1...
# [0.015] Running task 2...
# [0.015] Task failed with "worker exited with code 17" as expected
# [0.016] Task failed with "worker exited with code 18" as expected
# [0.016] Running task 3...
# [0.016] Running task 4...
# [0.116] Task returned value 29 as expected
# [0.116] Running task 5...
# [0.117] Task returned value 30 as expected
# [0.217] Task returned value 31 as expected
# [0.217] Have a task reach its timeout (SIGTERM).
# [0.218] Running long task...
# [0.318] Task failed with "worker was killed by SIGTERM" as expected
# [0.318] Have a task reach its timeout (SIGTERM + SIGKILL).
# [0.319] Running long task...
# [0.420] Task failed with "worker was killed by SIGTERM" as expected
# [0.420] Have a task reach its timeout (SIGKILL).
# [0.420] 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.022] Task failed with "I should have been killed by now" as expected
# [1.022] Have a task reach its timeout (SIGTERM + SIGKILL, ignore).
# [1.023] Running long task...
# [1.224] Task failed with "worker was killed by SIGKILL" as expected
# [1.224] Have a task reach its timeout (SIGKILL, ignore).
# [1.225] Running long task...
# [1.325] 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 1."
# [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 3."
# [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 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 7."
# [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 9."
# [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.329] Running task 2...
# [1.329] Running task 1...
# [1.329] Running task 3...
# [1.329] [message] Get_resource
# [1.329] [message] Get_resource
# [1.329] [message] Get_resource
# [1.329] Received resource: 0
# [1.329] Received resource: 1
# [1.329] Received resource: 2
# [1.329] Running task 7...
# [1.329] Running task 5...
# [1.329] Running task 6...
# [1.329] [message] Get_resource
# [1.329] [message] Get_resource
# [1.329] [message] Get_resource
# [1.329] Received resource: 3
# [1.329] Received resource: 4
# [1.329] Received resource: 5
# [1.329] Running task 4...
# [1.329] Running task 8...
# [1.329] [message] Get_resource
# [1.329] [message] Get_resource
# [1.329] Running task 9...
# [1.329] Running task 10...
# [1.329] [message] Get_resource
# [1.329] [message] Get_resource
# [1.329] Received resource: 6
# [1.329] 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.434] Re-filling the queue.
# [1.434] Refill.
# [1.435] Running task 1.1
# [1.435] Running task 1.2
# [1.435] Refill.
# [1.435] Running task 2.2
# [1.435] Refill.
# [1.435] Running task 2.1
# [1.435] Running task 3.1
# [1.435] Running task 3.2
# [1.436] A task that creates other tasks.
# [1.437] [message] Push 1.1
# [1.437] [message] Push 2.2
# [1.437] [message] Push 3.3
# [1.437] [message] Push 4.4
# [1.437] [message] Push 5.5
# [1.438] Running task 1.1
# [1.438] Running task 2.2
# [1.438] Running task 4.4
# [1.438] Running task 5.5
# [1.438] Running task 3.3
# [1.441] Create a timer and run with no task.
# [1.541] It's time!
# [1.542] Task that emits a message to create a timer that will trigger more tasks.
# [1.643] [message] Push 1
# [1.694] Running subtask 1
# [1.743] [message] Push 2
# [1.794] Running subtask 2
# [1.795] Create a timer and another that cancels the first.
# [1.895] Cancel timer.
# [1.895] Create a task and a timer that regularly logs until the task is finished.
# [1.956] Beep!
# [2.016] Beep!
# [2.076] Beep!
# (cd _build/default/test/unix && ./main.exe)
# [09:55:18.319] [SUCCESS] (1/26) demo
# [09:55:18.319] [SUCCESS] (2/26) fixed seed
# [09:55:18.319] [SUCCESS] (3/26) random seed
# [09:55:18.319] [SUCCESS] (4/26) string_tree: mem_prefix_of
# [09:55:18.319] [SUCCESS] (5/26) Test.current_test_tags
# [09:55:18.319] [SUCCESS] (6/26) TSL parser: positive cases
# [09:55:18.320] [SUCCESS] (7/26) TSL parser: negative cases
# [09:55:18.320] [SUCCESS] (8/26) TSL parser: pretty-printing
# [09:55:18.320] [SUCCESS] (9/26) TSL: evaluation
# [09:55:18.601] [SUCCESS] (10/26) TSL parser: random roundtrips
# [09:55:18.601] [SUCCESS] (11/26) TSL: conjunction helper
# [09:55:18.601] [SUCCESS] (12/26) TSL: is_valid_tag
# [09:55:18.601] [SUCCESS] (13/26) TSL: extract tags
# [09:55:18.601] [SUCCESS] (14/26) diff: simple cases
# [09:55:18.622] [SUCCESS] (15/26) diff: random cases
# [09:55:18.622] [SUCCESS] (16/26) diff: log
# [09:55:18.622] [SUCCESS] (17/26) Check.pp
# [09:55:18.623] [SUCCESS] (18/26) Check.(=)
# [09:55:18.623] [SUCCESS] (19/26) Check.(<>)
# [09:55:18.623] [SUCCESS] (20/26) Check.(<)
# [09:55:18.623] [SUCCESS] (21/26) Check.(<=)
# [09:55:18.623] [SUCCESS] (22/26) Check.(>)
# [09:55:18.623] [SUCCESS] (23/26) Check.(>=)
# [09:55:18.623] [SUCCESS] (24/26) Check.(=~)
# [09:55:18.623] [SUCCESS] (25/26) Check.(=~!)
# [09:55:20.627] [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/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t _build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t.corrected
# diff --git a/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t b/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t.corrected
# index 3d17d45..d826d80 100644
# --- a/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/default/test/cram/test-signals.t
# +++ b/_build/.sandbox/21e2073fd603871053d0a8e2a19a244e/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: (1271) - 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: (1288) - 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)
# [09:55:20.447] [SUCCESS] (1/25) demo
# [09:55:20.450] [SUCCESS] (2/25) fixed seed
# [09:55:20.463] [SUCCESS] (3/25) random seed
# [09:55:20.466] [SUCCESS] (4/25) string_tree: mem_prefix_of
# [09:55:20.467] [SUCCESS] (5/25) Test.current_test_tags
# [09:55:20.474] [SUCCESS] (6/25) TSL parser: positive cases
# [09:55:20.476] [SUCCESS] (7/25) TSL parser: negative cases
# [09:55:20.480] [SUCCESS] (8/25) TSL parser: pretty-printing
# [09:55:20.496] [SUCCESS] (9/25) TSL: evaluation
# [09:55:22.565] [SUCCESS] (10/25) TSL parser: random roundtrips
# [09:55:22.566] [SUCCESS] (11/25) TSL: conjunction helper
# [09:55:22.568] [SUCCESS] (12/25) TSL: is_valid_tag
# [09:55:22.568] [SUCCESS] (13/25) TSL: extract tags
# [09:55:22.571] [SUCCESS] (14/25) diff: simple cases
# [09:55:22.740] [SUCCESS] (15/25) diff: random cases
# [09:55:22.743] [SUCCESS] (16/25) diff: log
# [09:55:22.746] [SUCCESS] (17/25) Check.pp
# [09:55:22.746] [SUCCESS] (18/25) Check.(=)
# [09:55:22.747] [SUCCESS] (19/25) Check.(<>)
# [09:55:22.749] [SUCCESS] (20/25) Check.(<)
# [09:55:22.750] [SUCCESS] (21/25) Check.(<=)
# [09:55:22.752] [SUCCESS] (22/25) Check.(>)
# [09:55:22.753] [SUCCESS] (23/25) Check.(>=)
# [09:55:22.755] [SUCCESS] (24/25) Check.(=~)
# [09:55:22.755] [SUCCESS] (25/25) Check.(=~!)
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build tezt 4.2.0
+-
+- The following changes have been performed
| - recompile conf-npm 1
+-
# 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 "\"fedora-43\""; 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 09:55.36: Job failed: Failed: Build failed
2026-03-10 09:55.36: Log analysis:
2026-03-10 09:55.36: >>>
[ERROR] The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".
(score = 20)
2026-03-10 09:55.36: >>>
[ERROR] The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".
(score = 20)
2026-03-10 09:55.36: The compilation of tezt.4.2.0 failed at "dune runtest -p tezt -j 255".