- github
- ocaml
- opam-repository
- 3e0c39
- compilers,5.4,dune.3.22.2,revdeps,seqes.0.4
(not at the head of any monitored branch or PR)
2026-04-10 17:47.49: New job: test seqes.0.4 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall seqes.0.4; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'seqes.0.4' && 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 seqes.0.4) || true
RUN opam reinstall --with-test --verbose seqes.0.4; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'seqes.0.4' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-10 17:47.49: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03-dune.3.22.2-seqes.0.4-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.49: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall seqes.0.4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'seqes.0.4' && 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 seqes.0.4) || true"))
(run (shell "opam reinstall --with-test --verbose seqes.0.4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'seqes.0.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-10 17:47.49: Waiting for resource in pool OCluster
2026-04-11 00:47.00: Waiting for worker…
2026-04-11 00:48.46: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 62% (11747/18686)
Updating files: 63% (11773/18686)
Updating files: 64% (11960/18686)
Updating files: 65% (12146/18686)
Updating files: 66% (12333/18686)
Updating files: 67% (12520/18686)
Updating files: 68% (12707/18686)
Updating files: 69% (12894/18686)
Updating files: 70% (13081/18686)
Updating files: 71% (13268/18686)
Updating files: 72% (13454/18686)
Updating files: 73% (13641/18686)
Updating files: 74% (13828/18686)
Updating files: 75% (14015/18686)
Updating files: 76% (14202/18686)
Updating files: 77% (14389/18686)
Updating files: 78% (14576/18686)
Updating files: 79% (14762/18686)
Updating files: 80% (14949/18686)
Updating files: 81% (15136/18686)
Updating files: 82% (15323/18686)
Updating files: 83% (15510/18686)
Updating files: 84% (15697/18686)
Updating files: 85% (15884/18686)
Updating files: 86% (16070/18686)
Updating files: 87% (16257/18686)
Updating files: 88% (16444/18686)
Updating files: 89% (16631/18686)
Updating files: 90% (16818/18686)
Updating files: 91% (17005/18686)
Updating files: 92% (17192/18686)
Updating files: 93% (17378/18686)
Updating files: 94% (17565/18686)
Updating files: 95% (17752/18686)
Updating files: 96% (17939/18686)
Updating files: 97% (18126/18686)
Updating files: 98% (18313/18686)
Updating files: 99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
2026-04-11 00:48.49 ---> using "4e852d2e6c9ac39a43c0cb8d1ef92ecff46d16da630bff560bb4811e0bb278c3" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 00:48.49 ---> using "c82a131037ae9ff29ac79f02306f126bd36264ccb683d2324f553289b0d4a496" 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.
Continue? [Y/n] y
Format upgrade done.
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.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 00:48.49 ---> using "983e4dc58d26f7046c0fe6fbe642bc66995d2abecd6409a14b0c538d3f1a7bd2" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-11 00:48.49 ---> using "8b346866360ce3a934df95a88d3a1520ccbf589f659a7e26aa97be0b96b1083a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 00:48.49 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 00:48.51 ---> using "c0553ba1781e82471f38f012874b6b7341f662c325cc75285bfd7972f7a6ff87" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 00:48.51 ---> using "e05b19873f9cb2918bf114246a81e8bf23cb51c80d627ed2b044915e44a942dd" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (861 kB/s)
- Reading package lists...
-
2026-04-11 00:48.51 ---> using "dc69cd977951bdc4dffcc68622bf3ea65b4d02db568ca1f8bd5ab395f414a24f" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 00:48.51 ---> using "d2dbab2e673d61aa25772ad855c91b371a83246b8bcc8859d8fc280f9fcf9826" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 00:48.51 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall seqes.0.4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'seqes.0.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
seqes.0.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install seqes 0.4
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved seqes.0.4 (https://opam.ocaml.org/cache)
-> installed seqes.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 00:49.03 ---> saved as "9cbb9314ab64c7946df90fe1ffc3668b5c165af6ba8686db29537b58d380cd5f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test seqes.0.4) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile seqes 0.4
=== install 17 packages
- install alcotest 1.9.1 [required by seqes]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install ounit2 2.2.7 [required by qcheck-ounit]
- install qcheck 0.91 [required by seqes]
- install qcheck-alcotest 0.91 [required by seqes]
- install qcheck-core 0.91 [required by qcheck, qcheck-alcotest]
- install qcheck-ounit 0.91 [required by qcheck]
- install re 1.14.0 [required by alcotest]
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-alcotest.0.91, qcheck-core.0.91, qcheck-ounit.0.91 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved seqes.0.4 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed seqes.0.4
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
-> installed seqes.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 00:49.48 ---> saved as "9b8b4aa96c1a20ea640a1ae91517d00e5ea2c9bde4da0b0368cd4a4cadb68c8c"
/home/opam: (run (shell "opam reinstall --with-test --verbose seqes.0.4;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'seqes.0.4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile seqes 0.4
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [seqes.0.4: extract]
-> retrieved seqes.0.4 (cached)
Processing 2/4: [seqes: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "seqes" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/seqes.0.4)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/pbt/.test_standard1.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/qcheck -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/qcheck-ounit -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I lib/.seqes.objs/byte -no-alias-deps -open Dune__exe -o test/pbt/.test_standard1.eobjs/byte/dune__exe__TestHelpers.cmo -c -impl test/pbt/testHelpers.ml)
- File "test/pbt/testHelpers.ml", line 101, characters 15-37:
- 101 | QCheck2.Gen.small_list g;
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
-
- File "test/pbt/testHelpers.ml", line 320, characters 9-31:
- 320 | QCheck2.Observable.map List.of_seq (QCheck2.Observable.list o)
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Observable.map
- Use [contramap] instead
-
- File "test/pbt/testHelpers.ml", line 1062, characters 15-37:
- 1062 | QCheck2.Gen.small_list g;
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
-
- File "test/pbt/testHelpers.ml", line 1281, characters 9-31:
- 1281 | QCheck2.Observable.map List.of_seq (QCheck2.Observable.list o)
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Observable.map
- Use [contramap] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/pbt/.test_standard1.eobjs/byte -I test/pbt/.test_standard1.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/qcheck -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/qcheck-ounit -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I lib/.seqes.objs/byte -I lib/.seqes.objs/native -cmi-file test/pbt/.test_standard1.eobjs/byte/dune__exe__TestHelpers.cmi -no-alias-deps -open Dune__exe -o test/pbt/.test_standard1.eobjs/native/dune__exe__TestHelpers.cmx -c -impl test/pbt/testHelpers.ml)
- File "test/pbt/testHelpers.ml", line 101, characters 15-37:
- 101 | QCheck2.Gen.small_list g;
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
-
- File "test/pbt/testHelpers.ml", line 320, characters 9-31:
- 320 | QCheck2.Observable.map List.of_seq (QCheck2.Observable.list o)
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Observable.map
- Use [contramap] instead
-
- File "test/pbt/testHelpers.ml", line 1062, characters 15-37:
- 1062 | QCheck2.Gen.small_list g;
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
-
- File "test/pbt/testHelpers.ml", line 1281, characters 9-31:
- 1281 | QCheck2.Observable.map List.of_seq (QCheck2.Observable.list o)
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Observable.map
- Use [contramap] instead
- (cd _build/default/test/pbt && ./test_standard2.exe)
- qcheck random seed: 219773812
- Testing `Seqes.Standard.Make2'.
- This run has ID `CI7LH44F'.
-
- [OK] OpaqueId 0 equal.
- [OK] OpaqueId 1 compare.
- [OK] OpaqueId 2 iter.
- [OK] OpaqueId 3 fold_left.
- [OK] OpaqueId 4 iteri.
- [OK] OpaqueId 5 fold_lefti.
- [OK] OpaqueId 6 for_all.
- [OK] OpaqueId 7 exists.
- [OK] OpaqueId 8 find.
- [OK] OpaqueId 9 find_map.
- [OK] OpaqueId 10 iter2.
- [OK] OpaqueId 11 fold_left2.
- [OK] OpaqueId 12 for_all2.
- [OK] OpaqueId 13 exists2.
- [OK] Result 0 equal.
- [OK] Result 1 compare.
- [OK] Result 2 iter.
- [OK] Result 3 fold_left.
- [OK] Result 4 iteri.
- [OK] Result 5 fold_lefti.
- [OK] Result 6 for_all.
- [OK] Result 7 exists.
- [OK] Result 8 find.
- [OK] Result 9 find_map.
- [OK] Result 10 iter2.
- [OK] Result 11 fold_left2.
- [OK] Result 12 for_all2.
- [OK] Result 13 exists2.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/seqes.0.4/_build/default/test/pbt/_build/_tests/Seqes.Standard.Make2'.
- Test Successful in 0.043s. 28 tests run.
- (cd _build/default/test/pbt && ./test_standard1.exe)
- qcheck random seed: 210225474
- Testing `Seqes.Standard.Make1'.
- This run has ID `RAXY2VJK'.
-
- [OK] OpaqueId 0 equal.
- [OK] OpaqueId 1 compare.
- [OK] OpaqueId 2 iter.
- [OK] OpaqueId 3 fold_left.
- [OK] OpaqueId 4 iteri.
- [OK] OpaqueId 5 fold_lefti.
- [OK] OpaqueId 6 for_all.
- [OK] OpaqueId 7 exists.
- [OK] OpaqueId 8 find.
- [OK] OpaqueId 9 find_map.
- [OK] OpaqueId 10 iter2.
- [OK] OpaqueId 11 fold_left2.
- [OK] OpaqueId 12 for_all2.
- [OK] OpaqueId 13 exists2.
- [OK] Option 0 equal.
- [OK] Option 1 compare.
- [OK] Option 2 iter.
- [OK] Option 3 fold_left.
- [OK] Option 4 iteri.
- [OK] Option 5 fold_lefti.
- [OK] Option 6 for_all.
- [OK] Option 7 exists.
- [OK] Option 8 find.
- [OK] Option 9 find_map.
- [OK] Option 10 iter2.
- [OK] Option 11 fold_left2.
- [OK] Option 12 for_all2.
- [OK] Option 13 exists2.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/seqes.0.4/_build/default/test/pbt/_build/_tests/Seqes.Standard.Make1'.
- Test Successful in 0.054s. 28 tests run.
- (cd _build/default/test/pbt && ./test_monadic2.exe)
- qcheck random seed: 375137985
- Testing `Seqes.Monadic.Make2'.
- This run has ID `427TSXCV'.
-
- [OK] IdsIds 0 equal.
- [OK] IdsIds 1 compare.
- [OK] IdsIds 2 iter.
- [OK] IdsIds 3 fold_left.
- [OK] IdsIds 4 iteri.
- [OK] IdsIds 5 fold_lefti.
- [OK] IdsIds 6 for_all.
- [OK] IdsIds 7 exists.
- [OK] IdsIds 8 find.
- [OK] IdsIds 9 find_map.
- [OK] IdsIds 10 iter2.
- [OK] IdsIds 11 fold_left2.
- [OK] IdsIds 12 for_all2.
- [OK] IdsIds 13 exists2.
- [OK] IdsIds 14 init.
- [OK] IdsIds 15 unfold.
- [OK] IdsIds 16 forever.
- [OK] IdsIds 17 iterate.
- [OK] IdsIds 18 map.
- [OK] IdsIds 19 mapi.
- [OK] IdsIds 20 filter.
- [OK] IdsIds 21 filter_map.
- [OK] IdsIds 22 flat_map.
- [OK] IdsIds 23 scan.
- [OK] IdsIds 24 sorted_merge.
- [OK] IdsIds 25 take_while.
- [OK] IdsIds 26 drop_while.
- [OK] IdsIds 27 group.
- [OK] IdsIds 28 map2.
- [OK] IdsIds 29 map_product.
- [OK] IdsIds 30 partition_map.
- [OK] IdsIds 31 partition.
- [OK] IdsIds 32 of_dispenser.
- [OK] IdsIds 33 is_empty.
- [OK] IdsIds 34 uncons.
- [OK] IdsIds 35 length.
- [OK] IdsIds 36 empty.
- [OK] IdsIds 37 return.
- [OK] IdsIds 38 cons.
- [OK] IdsIds 39 repeat.
- [OK] IdsIds 40 cycle.
- [OK] IdsIds 41 take.
- [OK] IdsIds 42 drop.
- [OK] IdsIds 43 transpose.
- [OK] IdsIds 44 append.
- [OK] IdsIds 45 concat.
- [OK] IdsIds 46 zip.
- [OK] IdsIds 47 interleave.
- [OK] IdsIds 48 product.
- [OK] IdsIds 49 unzip (split).
- [OK] IdsIds 50 to_dispenser.
- [OK] IdsIds 51 ints.
- [OK] IdsIds.M 0 equal.
- [OK] IdsIds.M 1 compare.
- [OK] IdsIds.M 2 iter.
- [OK] IdsIds.M 3 fold_left.
- [OK] IdsIds.M 4 iteri.
- [OK] IdsIds.M 5 fold_lefti.
- [OK] IdsIds.M 6 for_all.
- [OK] IdsIds.M 7 exists.
- [OK] IdsIds.M 8 find.
- [OK] IdsIds.M 9 find_map.
- [OK] IdsIds.M 10 iter2.
- [OK] IdsIds.M 11 fold_left2.
- [OK] IdsIds.M 12 for_all2.
- [OK] IdsIds.M 13 exists2.
- [OK] IdsIds.M 14 init.
- [OK] IdsIds.M 15 unfold.
- [OK] IdsIds.M 16 forever.
- [OK] IdsIds.M 17 iterate.
- [OK] IdsIds.M 18 map.
- [OK] IdsIds.M 19 mapi.
- [OK] IdsIds.M 20 filter.
- [OK] IdsIds.M 21 filter_map.
- [OK] IdsIds.M 22 flat_map.
- [OK] IdsIds.M 23 scan.
- [OK] IdsIds.M 24 sorted_merge.
- [OK] IdsIds.M 25 take_while.
- [OK] IdsIds.M 26 drop_while.
- [OK] IdsIds.M 27 group.
- [OK] IdsIds.M 28 map2.
- [OK] IdsIds.M 29 map_product.
- [OK] IdsIds.M 30 partition_map.
- [OK] IdsIds.M 31 partition.
- [OK] IdsIds.M 32 of_dispenser.
- [OK] IdsIds.Make 0 equal.
- [OK] IdsIds.Make 1 compare.
- [OK] IdsIds.Make 2 iter.
- [OK] IdsIds.Make 3 fold_left.
- [OK] IdsIds.Make 4 iteri.
- [OK] IdsIds.Make 5 fold_lefti.
- [OK] IdsIds.Make 6 for_all.
- [OK] IdsIds.Make 7 exists.
- [OK] IdsIds.Make 8 find.
- [OK] IdsIds.Make 9 find_map.
- [OK] IdsIds.Make 10 iter2.
- [OK] IdsIds.Make 11 fold_left2.
- [OK] IdsIds.Make 12 for_all2.
- [OK] IdsIds.Make 13 exists2.
- [OK] IdsIds.Make 14 init.
- [OK] IdsIds.Make 15 unfold.
- [OK] IdsIds.Make 16 forever.
- [OK] IdsIds.Make 17 iterate.
- [OK] IdsIds.Make 18 map.
- [OK] IdsIds.Make 19 mapi.
- [OK] IdsIds.Make 20 filter.
- [OK] IdsIds.Make 21 filter_map.
- [OK] IdsIds.Make 22 flat_map.
- [OK] IdsIds.Make 23 scan.
- [OK] IdsIds.Make 24 sorted_merge.
- [OK] IdsIds.Make 25 take_while.
- [OK] IdsIds.Make 26 drop_while.
- [OK] IdsIds.Make 27 group.
- [OK] IdsIds.Make 28 map2.
- [OK] IdsIds.Make 29 map_product.
- [OK] IdsIds.Make 30 partition_map.
- [OK] IdsIds.Make 31 partition.
- [OK] IdsIds.Make 32 of_dispenser.
- [OK] IdsIds.MakeTraversors 0 equal.
- [OK] IdsIds.MakeTraversors 1 compare.
- [OK] IdsIds.MakeTraversors 2 iter.
- [OK] IdsIds.MakeTraversors 3 fold_left.
- [OK] IdsIds.MakeTraversors 4 iteri.
- [OK] IdsIds.MakeTraversors 5 fold_lefti.
- [OK] IdsIds.MakeTraversors 6 for_all.
- [OK] IdsIds.MakeTraversors 7 exists.
- [OK] IdsIds.MakeTraversors 8 find.
- [OK] IdsIds.MakeTraversors 9 find_map.
- [OK] IdsIds.MakeTraversors 10 iter2.
- [OK] IdsIds.MakeTraversors 11 fold_left2.
- [OK] IdsIds.MakeTraversors 12 for_all2.
- [OK] IdsIds.MakeTraversors 13 exists2.
- [OK] IdsRes 0 equal.
- [OK] IdsRes 1 compare.
- [OK] IdsRes 2 iter.
- [OK] IdsRes 3 fold_left.
- [OK] IdsRes 4 iteri.
- [OK] IdsRes 5 fold_lefti.
- [OK] IdsRes 6 for_all.
- [OK] IdsRes 7 exists.
- [OK] IdsRes 8 find.
- [OK] IdsRes 9 find_map.
- [OK] IdsRes 10 iter2.
- [OK] IdsRes 11 fold_left2.
- [OK] IdsRes 12 for_all2.
- [OK] IdsRes 13 exists2.
- [OK] IdsRes 14 init.
- [OK] IdsRes 15 unfold.
- [OK] IdsRes 16 forever.
- [OK] IdsRes 17 iterate.
- [OK] IdsRes 18 map.
- [OK] IdsRes 19 mapi.
- [OK] IdsRes 20 filter.
- [OK] IdsRes 21 filter_map.
- [OK] IdsRes 22 flat_map.
- [OK] IdsRes 23 scan.
- [OK] IdsRes 24 sorted_merge.
- [OK] IdsRes 25 take_while.
- [OK] IdsRes 26 drop_while.
- [OK] IdsRes 27 group.
- [OK] IdsRes 28 map2.
- [OK] IdsRes 29 map_product.
- [OK] IdsRes 30 partition_map.
- [OK] IdsRes 31 partition.
- [OK] IdsRes 32 of_dispenser.
- [OK] IdsRes 33 is_empty.
- [OK] IdsRes 34 uncons.
- [OK] IdsRes 35 length.
- [OK] IdsRes 36 empty.
- [OK] IdsRes 37 return.
- [OK] IdsRes 38 cons.
- [OK] IdsRes 39 repeat.
- [OK] IdsRes 40 cycle.
- [OK] IdsRes 41 take.
- [OK] IdsRes 42 drop.
- [OK] IdsRes 43 transpose.
- [OK] IdsRes 44 append.
- [OK] IdsRes 45 concat.
- [OK] IdsRes 46 zip.
- [OK] IdsRes 47 interleave.
- [OK] IdsRes 48 product.
- [OK] IdsRes 49 unzip (split).
- [OK] IdsRes 50 to_dispenser.
- [OK] IdsRes 51 ints.
- [OK] IdsRes.M 0 equal.
- [OK] IdsRes.M 1 compare.
- [OK] IdsRes.M 2 iter.
- [OK] IdsRes.M 3 fold_left.
- [OK] IdsRes.M 4 iteri.
- [OK] IdsRes.M 5 fold_lefti.
- [OK] IdsRes.M 6 for_all.
- [OK] IdsRes.M 7 exists.
- [OK] IdsRes.M 8 find.
- [OK] IdsRes.M 9 find_map.
- [OK] IdsRes.M 10 iter2.
- [OK] IdsRes.M 11 fold_left2.
- [OK] IdsRes.M 12 for_all2.
- [OK] IdsRes.M 13 exists2.
- [OK] IdsRes.M 14 init.
- [OK] IdsRes.M 15 unfold.
- [OK] IdsRes.M 16 forever.
- [OK] IdsRes.M 17 iterate.
- [OK] IdsRes.M 18 map.
- [OK] IdsRes.M 19 mapi.
- [OK] IdsRes.M 20 filter.
- [OK] IdsRes.M 21 filter_map.
- [OK] IdsRes.M 22 flat_map.
- [OK] IdsRes.M 23 scan.
- [OK] IdsRes.M 24 sorted_merge.
- [OK] IdsRes.M 25 take_while.
- [OK] IdsRes.M 26 drop_while.
- [OK] IdsRes.M 27 group.
- [OK] IdsRes.M 28 map2.
- [OK] IdsRes.M 29 map_product.
- [OK] IdsRes.M 30 partition_map.
- [OK] IdsRes.M 31 partition.
- [OK] IdsRes.M 32 of_dispenser.
- [OK] IdsRes.Make 0 equal.
- [OK] IdsRes.Make 1 compare.
- [OK] IdsRes.Make 2 iter.
- [OK] IdsRes.Make 3 fold_left.
- [OK] IdsRes.Make 4 iteri.
- [OK] IdsRes.Make 5 fold_lefti.
- [OK] IdsRes.Make 6 for_all.
- [OK] IdsRes.Make 7 exists.
- [OK] IdsRes.Make 8 find.
- [OK] IdsRes.Make 9 find_map.
- [OK] IdsRes.Make 10 iter2.
- [OK] IdsRes.Make 11 fold_left2.
- [OK] IdsRes.Make 12 for_all2.
- [OK] IdsRes.Make 13 exists2.
- [OK] IdsRes.Make 14 init.
- [OK] IdsRes.Make 15 unfold.
- [OK] IdsRes.Make 16 forever.
- [OK] IdsRes.Make 17 iterate.
- [OK] IdsRes.Make 18 map.
- [OK] IdsRes.Make 19 mapi.
- [OK] IdsRes.Make 20 filter.
- [OK] IdsRes.Make 21 filter_map.
- [OK] IdsRes.Make 22 flat_map.
- [OK] IdsRes.Make 23 scan.
- [OK] IdsRes.Make 24 sorted_merge.
- [OK] IdsRes.Make 25 take_while.
- [OK] IdsRes.Make 26 drop_while.
- [OK] IdsRes.Make 27 group.
- [OK] IdsRes.Make 28 map2.
- [OK] IdsRes.Make 29 map_product.
- [OK] IdsRes.Make 30 partition_map.
- [OK] IdsRes.Make 31 partition.
- [OK] IdsRes.Make 32 of_dispenser.
- [OK] IdsRes.MakeTraversors 0 equal.
- [OK] IdsRes.MakeTraversors 1 compare.
- [OK] IdsRes.MakeTraversors 2 iter.
- [OK] IdsRes.MakeTraversors 3 fold_left.
- [OK] IdsRes.MakeTraversors 4 iteri.
- [OK] IdsRes.MakeTraversors 5 fold_lefti.
- [OK] IdsRes.MakeTraversors 6 for_all.
- [OK] IdsRes.MakeTraversors 7 exists.
- [OK] IdsRes.MakeTraversors 8 find.
- [OK] IdsRes.MakeTraversors 9 find_map.
- [OK] IdsRes.MakeTraversors 10 iter2.
- [OK] IdsRes.MakeTraversors 11 fold_left2.
- [OK] IdsRes.MakeTraversors 12 for_all2.
- [OK] IdsRes.MakeTraversors 13 exists2.
- [OK] ResRes 0 equal.
- [OK] ResRes 1 compare.
- [OK] ResRes 2 iter.
- [OK] ResRes 3 fold_left.
- [OK] ResRes 4 iteri.
- [OK] ResRes 5 fold_lefti.
- [OK] ResRes 6 for_all.
- [OK] ResRes 7 exists.
- [OK] ResRes 8 find.
- [OK] ResRes 9 find_map.
- [OK] ResRes 10 iter2.
- [OK] ResRes 11 fold_left2.
- [OK] ResRes 12 for_all2.
- [OK] ResRes 13 exists2.
- [OK] ResRes 14 init.
- [OK] ResRes 15 unfold.
- [OK] ResRes 16 forever.
- [OK] ResRes 17 iterate.
- [OK] ResRes 18 map.
- [OK] ResRes 19 mapi.
- [OK] ResRes 20 filter.
- [OK] ResRes 21 filter_map.
- [OK] ResRes 22 flat_map.
- [OK] ResRes 23 scan.
- [OK] ResRes 24 sorted_merge.
- [OK] ResRes 25 take_while.
- [OK] ResRes 26 drop_while.
- [OK] ResRes 27 group.
- [OK] ResRes 28 map2.
- [OK] ResRes 29 map_product.
- [OK] ResRes 30 partition_map.
- [OK] ResRes 31 partition.
- [OK] ResRes 32 of_dispenser.
- [OK] ResRes 33 is_empty.
- [OK] ResRes 34 uncons.
- [OK] ResRes 35 length.
- [OK] ResRes 36 empty.
- [OK] ResRes 37 return.
- [OK] ResRes 38 cons.
- [OK] ResRes 39 repeat.
- [OK] ResRes 40 cycle.
- [OK] ResRes 41 take.
- [OK] ResRes 42 drop.
- [OK] ResRes 43 transpose.
- [OK] ResRes 44 append.
- [OK] ResRes 45 concat.
- [OK] ResRes 46 zip.
- [OK] ResRes 47 interleave.
- [OK] ResRes 48 product.
- [OK] ResRes 49 unzip (split).
- [OK] ResRes 50 to_dispenser.
- [OK] ResRes 51 ints.
- [OK] ResRes.M 0 equal.
- [OK] ResRes.M 1 compare.
- [OK] ResRes.M 2 iter.
- [OK] ResRes.M 3 fold_left.
- [OK] ResRes.M 4 iteri.
- [OK] ResRes.M 5 fold_lefti.
- [OK] ResRes.M 6 for_all.
- [OK] ResRes.M 7 exists.
- [OK] ResRes.M 8 find.
- [OK] ResRes.M 9 find_map.
- [OK] ResRes.M 10 iter2.
- [OK] ResRes.M 11 fold_left2.
- [OK] ResRes.M 12 for_all2.
- [OK] ResRes.M 13 exists2.
- [OK] ResRes.M 14 init.
- [OK] ResRes.M 15 unfold.
- [OK] ResRes.M 16 forever.
- [OK] ResRes.M 17 iterate.
- [OK] ResRes.M 18 map.
- [OK] ResRes.M 19 mapi.
- [OK] ResRes.M 20 filter.
- [OK] ResRes.M 21 filter_map.
- [OK] ResRes.M 22 flat_map.
- [OK] ResRes.M 23 scan.
- [OK] ResRes.M 24 sorted_merge.
- [OK] ResRes.M 25 take_while.
- [OK] ResRes.M 26 drop_while.
- [OK] ResRes.M 27 group.
- [OK] ResRes.M 28 map2.
- [OK] ResRes.M 29 map_product.
- [OK] ResRes.M 30 partition_map.
- [OK] ResRes.M 31 partition.
- [OK] ResRes.M 32 of_dispenser.
- [OK] ResRes.Make 0 equal.
- [OK] ResRes.Make 1 compare.
- [OK] ResRes.Make 2 iter.
- [OK] ResRes.Make 3 fold_left.
- [OK] ResRes.Make 4 iteri.
- [OK] ResRes.Make 5 fold_lefti.
- [OK] ResRes.Make 6 for_all.
- [OK] ResRes.Make 7 exists.
- [OK] ResRes.Make 8 find.
- [OK] ResRes.Make 9 find_map.
- [OK] ResRes.Make 10 iter2.
- [OK] ResRes.Make 11 fold_left2.
- [OK] ResRes.Make 12 for_all2.
- [OK] ResRes.Make 13 exists2.
- [OK] ResRes.Make 14 init.
- [OK] ResRes.Make 15 unfold.
- [OK] ResRes.Make 16 forever.
- [OK] ResRes.Make 17 iterate.
- [OK] ResRes.Make 18 map.
- [OK] ResRes.Make 19 mapi.
- [OK] ResRes.Make 20 filter.
- [OK] ResRes.Make 21 filter_map.
- [OK] ResRes.Make 22 flat_map.
- [OK] ResRes.Make 23 scan.
- [OK] ResRes.Make 24 sorted_merge.
- [OK] ResRes.Make 25 take_while.
- [OK] ResRes.Make 26 drop_while.
- [OK] ResRes.Make 27 group.
- [OK] ResRes.Make 28 map2.
- [OK] ResRes.Make 29 map_product.
- [OK] ResRes.Make 30 partition_map.
- [OK] ResRes.Make 31 partition.
- [OK] ResRes.Make 32 of_dispenser.
- [OK] ResRes.MakeTraversors 0 equal.
- [OK] ResRes.MakeTraversors 1 compare.
- [OK] ResRes.MakeTraversors 2 iter.
- [OK] ResRes.MakeTraversors 3 fold_left.
- [OK] ResRes.MakeTraversors 4 iteri.
- [OK] ResRes.MakeTraversors 5 fold_lefti.
- [OK] ResRes.MakeTraversors 6 for_all.
- [OK] ResRes.MakeTraversors 7 exists.
- [OK] ResRes.MakeTraversors 8 find.
- [OK] ResRes.MakeTraversors 9 find_map.
- [OK] ResRes.MakeTraversors 10 iter2.
- [OK] ResRes.MakeTraversors 11 fold_left2.
- [OK] ResRes.MakeTraversors 12 for_all2.
- [OK] ResRes.MakeTraversors 13 exists2.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/seqes.0.4/_build/default/test/pbt/_build/_tests/Seqes.Monadic.Make2'.
- Test Successful in 0.926s. 396 tests run.
- (cd _build/default/test/pbt && ./test_monadic1.exe)
- qcheck random seed: 368739614
- Testing `Seqes.Monadic.Make1'.
- This run has ID `11743AM2'.
-
- [OK] Ids 0 equal.
- [OK] Ids 1 compare.
- [OK] Ids 2 iter.
- [OK] Ids 3 fold_left.
- [OK] Ids 4 iteri.
- [OK] Ids 5 fold_lefti.
- [OK] Ids 6 for_all.
- [OK] Ids 7 exists.
- [OK] Ids 8 find.
- [OK] Ids 9 find_map.
- [OK] Ids 10 iter2.
- [OK] Ids 11 fold_left2.
- [OK] Ids 12 for_all2.
- [OK] Ids 13 exists2.
- [OK] Ids 14 init.
- [OK] Ids 15 unfold.
- [OK] Ids 16 forever.
- [OK] Ids 17 iterate.
- [OK] Ids 18 map.
- [OK] Ids 19 mapi.
- [OK] Ids 20 filter.
- [OK] Ids 21 filter_map.
- [OK] Ids 22 scan.
- [OK] Ids 23 sorted_merge.
- [OK] Ids 24 flat_map.
- [OK] Ids 25 take_while.
- [OK] Ids 26 drop_while.
- [OK] Ids 27 group.
- [OK] Ids 28 map2.
- [OK] Ids 29 map_product.
- [OK] Ids 30 partition_map.
- [OK] Ids 31 partition.
- [OK] Ids 32 of_dispenser.
- [OK] Ids 33 is_empty.
- [OK] Ids 34 uncons.
- [OK] Ids 35 length.
- [OK] Ids 36 empty.
- [OK] Ids 37 return.
- [OK] Ids 38 cons.
- [OK] Ids 39 repeat.
- [OK] Ids 40 cycle.
- [OK] Ids 41 take.
- [OK] Ids 42 drop.
- [OK] Ids 43 transpose.
- [OK] Ids 44 append.
- [OK] Ids 45 concat.
- [OK] Ids 46 zip.
- [OK] Ids 47 interleave.
- [OK] Ids 48 product.
- [OK] Ids 49 unzip (split).
- [OK] Ids 50 to_dispenser.
- [OK] Ids 51 ints.
- [OK] Ids.M 0 equal.
- [OK] Ids.M 1 compare.
- [OK] Ids.M 2 iter.
- [OK] Ids.M 3 fold_left.
- [OK] Ids.M 4 iteri.
- [OK] Ids.M 5 fold_lefti.
- [OK] Ids.M 6 for_all.
- [OK] Ids.M 7 exists.
- [OK] Ids.M 8 find.
- [OK] Ids.M 9 find_map.
- [OK] Ids.M 10 iter2.
- [OK] Ids.M 11 fold_left2.
- [OK] Ids.M 12 for_all2.
- [OK] Ids.M 13 exists2.
- [OK] Ids.M 14 init.
- [OK] Ids.M 15 unfold.
- [OK] Ids.M 16 forever.
- [OK] Ids.M 17 iterate.
- [OK] Ids.M 18 map.
- [OK] Ids.M 19 mapi.
- [OK] Ids.M 20 filter.
- [OK] Ids.M 21 filter_map.
- [OK] Ids.M 22 scan.
- [OK] Ids.M 23 sorted_merge.
- [OK] Ids.M 24 flat_map.
- [OK] Ids.M 25 take_while.
- [OK] Ids.M 26 drop_while.
- [OK] Ids.M 27 group.
- [OK] Ids.M 28 map2.
- [OK] Ids.M 29 map_product.
- [OK] Ids.M 30 partition_map.
- [OK] Ids.M 31 partition.
- [OK] Ids.M 32 of_dispenser.
- [OK] Ids.Make 0 equal.
- [OK] Ids.Make 1 compare.
- [OK] Ids.Make 2 iter.
- [OK] Ids.Make 3 fold_left.
- [OK] Ids.Make 4 iteri.
- [OK] Ids.Make 5 fold_lefti.
- [OK] Ids.Make 6 for_all.
- [OK] Ids.Make 7 exists.
- [OK] Ids.Make 8 find.
- [OK] Ids.Make 9 find_map.
- [OK] Ids.Make 10 iter2.
- [OK] Ids.Make 11 fold_left2.
- [OK] Ids.Make 12 for_all2.
- [OK] Ids.Make 13 exists2.
- [OK] Ids.Make 14 init.
- [OK] Ids.Make 15 unfold.
- [OK] Ids.Make 16 forever.
- [OK] Ids.Make 17 iterate.
- [OK] Ids.Make 18 map.
- [OK] Ids.Make 19 mapi.
- [OK] Ids.Make 20 filter.
- [OK] Ids.Make 21 filter_map.
- [OK] Ids.Make 22 scan.
- [OK] Ids.Make 23 sorted_merge.
- [OK] Ids.Make 24 flat_map.
- [OK] Ids.Make 25 take_while.
- [OK] Ids.Make 26 drop_while.
- [OK] Ids.Make 27 group.
- [OK] Ids.Make 28 map2.
- [OK] Ids.Make 29 map_product.
- [OK] Ids.Make 30 partition_map.
- [OK] Ids.Make 31 partition.
- [OK] Ids.Make 32 of_dispenser.
- [OK] Ids.MakeTraversors 0 equal.
- [OK] Ids.MakeTraversors 1 compare.
- [OK] Ids.MakeTraversors 2 iter.
- [OK] Ids.MakeTraversors 3 fold_left.
- [OK] Ids.MakeTraversors 4 iteri.
- [OK] Ids.MakeTraversors 5 fold_lefti.
- [OK] Ids.MakeTraversors 6 for_all.
- [OK] Ids.MakeTraversors 7 exists.
- [OK] Ids.MakeTraversors 8 find.
- [OK] Ids.MakeTraversors 9 find_map.
- [OK] Ids.MakeTraversors 10 iter2.
- [OK] Ids.MakeTraversors 11 fold_left2.
- [OK] Ids.MakeTraversors 12 for_all2.
- [OK] Ids.MakeTraversors 13 exists2.
- [OK] Ids.MakeTraversors2 0 equal.
- [OK] Ids.MakeTraversors2 1 compare.
- [OK] Ids.MakeTraversors2 2 iter.
- [OK] Ids.MakeTraversors2 3 fold_left.
- [OK] Ids.MakeTraversors2 4 iteri.
- [OK] Ids.MakeTraversors2 5 fold_lefti.
- [OK] Ids.MakeTraversors2 6 for_all.
- [OK] Ids.MakeTraversors2 7 exists.
- [OK] Ids.MakeTraversors2 8 find.
- [OK] Ids.MakeTraversors2 9 find_map.
- [OK] Ids.MakeTraversors2 10 iter2.
- [OK] Ids.MakeTraversors2 11 fold_left2.
- [OK] Ids.MakeTraversors2 12 for_all2.
- [OK] Ids.MakeTraversors2 13 exists2.
- [OK] IdsOptRes 0 equal.
- [OK] IdsOptRes 1 compare.
- [OK] IdsOptRes 2 iter.
- [OK] IdsOptRes 3 fold_left.
- [OK] IdsOptRes 4 iteri.
- [OK] IdsOptRes 5 fold_lefti.
- [OK] IdsOptRes 6 for_all.
- [OK] IdsOptRes 7 exists.
- [OK] IdsOptRes 8 find.
- [OK] IdsOptRes 9 find_map.
- [OK] IdsOptRes 10 iter2.
- [OK] IdsOptRes 11 fold_left2.
- [OK] IdsOptRes 12 for_all2.
- [OK] IdsOptRes 13 exists2.
- [OK] IdsOptRes 14 init.
- [OK] IdsOptRes 15 unfold.
- [OK] IdsOptRes 16 forever.
- [OK] IdsOptRes 17 iterate.
- [OK] IdsOptRes 18 map.
- [OK] IdsOptRes 19 mapi.
- [OK] IdsOptRes 20 filter.
- [OK] IdsOptRes 21 filter_map.
- [OK] IdsOptRes 22 scan.
- [OK] IdsOptRes 23 sorted_merge.
- [OK] IdsOptRes 24 flat_map.
- [OK] IdsOptRes 25 take_while.
- [OK] IdsOptRes 26 drop_while.
- [OK] IdsOptRes 27 group.
- [OK] IdsOptRes 28 map2.
- [OK] IdsOptRes 29 map_product.
- [OK] IdsOptRes 30 partition_map.
- [OK] IdsOptRes 31 partition.
- [OK] IdsOptRes 32 of_dispenser.
- [OK] IdsOptRes 33 is_empty.
- [OK] IdsOptRes 34 uncons.
- [OK] IdsOptRes 35 length.
- [OK] IdsOptRes 36 empty.
- [OK] IdsOptRes 37 return.
- [OK] IdsOptRes 38 cons.
- [OK] IdsOptRes 39 repeat.
- [OK] IdsOptRes 40 cycle.
- [OK] IdsOptRes 41 take.
- [OK] IdsOptRes 42 drop.
- [OK] IdsOptRes 43 transpose.
- [OK] IdsOptRes 44 append.
- [OK] IdsOptRes 45 concat.
- [OK] IdsOptRes 46 zip.
- [OK] IdsOptRes 47 interleave.
- [OK] IdsOptRes 48 product.
- [OK] IdsOptRes 49 unzip (split).
- [OK] IdsOptRes 50 to_dispenser.
- [OK] IdsOptRes 51 ints.
- [OK] IdsOptRes.M 0 equal.
- [OK] IdsOptRes.M 1 compare.
- [OK] IdsOptRes.M 2 iter.
- [OK] IdsOptRes.M 3 fold_left.
- [OK] IdsOptRes.M 4 iteri.
- [OK] IdsOptRes.M 5 fold_lefti.
- [OK] IdsOptRes.M 6 for_all.
- [OK] IdsOptRes.M 7 exists.
- [OK] IdsOptRes.M 8 find.
- [OK] IdsOptRes.M 9 find_map.
- [OK] IdsOptRes.M 10 iter2.
- [OK] IdsOptRes.M 11 fold_left2.
- [OK] IdsOptRes.M 12 for_all2.
- [OK] IdsOptRes.M 13 exists2.
- [OK] IdsOptRes.M 14 init.
- [OK] IdsOptRes.M 15 unfold.
- [OK] IdsOptRes.M 16 forever.
- [OK] IdsOptRes.M 17 iterate.
- [OK] IdsOptRes.M 18 map.
- [OK] IdsOptRes.M 19 mapi.
- [OK] IdsOptRes.M 20 filter.
- [OK] IdsOptRes.M 21 filter_map.
- [OK] IdsOptRes.M 22 scan.
- [OK] IdsOptRes.M 23 sorted_merge.
- [OK] IdsOptRes.M 24 flat_map.
- [OK] IdsOptRes.M 25 take_while.
- [OK] IdsOptRes.M 26 drop_while.
- [OK] IdsOptRes.M 27 group.
- [OK] IdsOptRes.M 28 map2.
- [OK] IdsOptRes.M 29 map_product.
- [OK] IdsOptRes.M 30 partition_map.
- [OK] IdsOptRes.M 31 partition.
- [OK] IdsOptRes.M 32 of_dispenser.
- [OK] IdsOptRes.Make 0 equal.
- [OK] IdsOptRes.Make 1 compare.
- [OK] IdsOptRes.Make 2 iter.
- [OK] IdsOptRes.Make 3 fold_left.
- [OK] IdsOptRes.Make 4 iteri.
- [OK] IdsOptRes.Make 5 fold_lefti.
- [OK] IdsOptRes.Make 6 for_all.
- [OK] IdsOptRes.Make 7 exists.
- [OK] IdsOptRes.Make 8 find.
- [OK] IdsOptRes.Make 9 find_map.
- [OK] IdsOptRes.Make 10 iter2.
- [OK] IdsOptRes.Make 11 fold_left2.
- [OK] IdsOptRes.Make 12 for_all2.
- [OK] IdsOptRes.Make 13 exists2.
- [OK] IdsOptRes.Make 14 init.
- [OK] IdsOptRes.Make 15 unfold.
- [OK] IdsOptRes.Make 16 forever.
- [OK] IdsOptRes.Make 17 iterate.
- [OK] IdsOptRes.Make 18 map.
- [OK] IdsOptRes.Make 19 mapi.
- [OK] IdsOptRes.Make 20 filter.
- [OK] IdsOptRes.Make 21 filter_map.
- [OK] IdsOptRes.Make 22 scan.
- [OK] IdsOptRes.Make 23 sorted_merge.
- [OK] IdsOptRes.Make 24 flat_map.
- [OK] IdsOptRes.Make 25 take_while.
- [OK] IdsOptRes.Make 26 drop_while.
- [OK] IdsOptRes.Make 27 group.
- [OK] IdsOptRes.Make 28 map2.
- [OK] IdsOptRes.Make 29 map_product.
- [OK] IdsOptRes.Make 30 partition_map.
- [OK] IdsOptRes.Make 31 partition.
- [OK] IdsOptRes.Make 32 of_dispenser.
- [OK] IdsOptRes.MakeTraversors 0 equal.
- [OK] IdsOptRes.MakeTraversors 1 compare.
- [OK] IdsOptRes.MakeTraversors 2 iter.
- [OK] IdsOptRes.MakeTraversors 3 fold_left.
- [OK] IdsOptRes.MakeTraversors 4 iteri.
- [OK] IdsOptRes.MakeTraversors 5 fold_lefti.
- [OK] IdsOptRes.MakeTraversors 6 for_all.
- [OK] IdsOptRes.MakeTraversors 7 exists.
- [OK] IdsOptRes.MakeTraversors 8 find.
- [OK] IdsOptRes.MakeTraversors 9 find_map.
- [OK] IdsOptRes.MakeTraversors 10 iter2.
- [OK] IdsOptRes.MakeTraversors 11 fold_left2.
- [OK] IdsOptRes.MakeTraversors 12 for_all2.
- [OK] IdsOptRes.MakeTraversors 13 exists2.
- [OK] IdsOptRes.MakeTraversors2 0 equal.
- [OK] IdsOptRes.MakeTraversors2 1 compare.
- [OK] IdsOptRes.MakeTraversors2 2 iter.
- [OK] IdsOptRes.MakeTraversors2 3 fold_left.
- [OK] IdsOptRes.MakeTraversors2 4 iteri.
- [OK] IdsOptRes.MakeTraversors2 5 fold_lefti.
- [OK] IdsOptRes.MakeTraversors2 6 for_all.
- [OK] IdsOptRes.MakeTraversors2 7 exists.
- [OK] IdsOptRes.MakeTraversors2 8 find.
- [OK] IdsOptRes.MakeTraversors2 9 find_map.
- [OK] IdsOptRes.MakeTraversors2 10 iter2.
- [OK] IdsOptRes.MakeTraversors2 11 fold_left2.
- [OK] IdsOptRes.MakeTraversors2 12 for_all2.
- [OK] IdsOptRes.MakeTraversors2 13 exists2.
- [OK] OptOptRes 0 equal.
- [OK] OptOptRes 1 compare.
- [OK] OptOptRes 2 iter.
- [OK] OptOptRes 3 fold_left.
- [OK] OptOptRes 4 iteri.
- [OK] OptOptRes 5 fold_lefti.
- [OK] OptOptRes 6 for_all.
- [OK] OptOptRes 7 exists.
- [OK] OptOptRes 8 find.
- [OK] OptOptRes 9 find_map.
- [OK] OptOptRes 10 iter2.
- [OK] OptOptRes 11 fold_left2.
- [OK] OptOptRes 12 for_all2.
- [OK] OptOptRes 13 exists2.
- [OK] OptOptRes 14 init.
- [OK] OptOptRes 15 unfold.
- [OK] OptOptRes 16 forever.
- [OK] OptOptRes 17 iterate.
- [OK] OptOptRes 18 map.
- [OK] OptOptRes 19 mapi.
- [OK] OptOptRes 20 filter.
- [OK] OptOptRes 21 filter_map.
- [OK] OptOptRes 22 scan.
- [OK] OptOptRes 23 sorted_merge.
- [OK] OptOptRes 24 flat_map.
- [OK] OptOptRes 25 take_while.
- [OK] OptOptRes 26 drop_while.
- [OK] OptOptRes 27 group.
- [OK] OptOptRes 28 map2.
- [OK] OptOptRes 29 map_product.
- [OK] OptOptRes 30 partition_map.
- [OK] OptOptRes 31 partition.
- [OK] OptOptRes 32 of_dispenser.
- [OK] OptOptRes 33 is_empty.
- [OK] OptOptRes 34 uncons.
- [OK] OptOptRes 35 length.
- [OK] OptOptRes 36 empty.
- [OK] OptOptRes 37 return.
- [OK] OptOptRes 38 cons.
- [OK] OptOptRes 39 repeat.
- [OK] OptOptRes 40 cycle.
- [OK] OptOptRes 41 take.
- [OK] OptOptRes 42 drop.
- [OK] OptOptRes 43 transpose.
- [OK] OptOptRes 44 append.
- [OK] OptOptRes 45 concat.
- [OK] OptOptRes 46 zip.
- [OK] OptOptRes 47 interleave.
- [OK] OptOptRes 48 product.
- [OK] OptOptRes 49 unzip (split).
- [OK] OptOptRes 50 to_dispenser.
- [OK] OptOptRes 51 ints.
- [OK] OptOptRes.M 0 equal.
- [OK] OptOptRes.M 1 compare.
- [OK] OptOptRes.M 2 iter.
- [OK] OptOptRes.M 3 fold_left.
- [OK] OptOptRes.M 4 iteri.
- [OK] OptOptRes.M 5 fold_lefti.
- [OK] OptOptRes.M 6 for_all.
- [OK] OptOptRes.M 7 exists.
- [OK] OptOptRes.M 8 find.
- [OK] OptOptRes.M 9 find_map.
- [OK] OptOptRes.M 10 iter2.
- [OK] OptOptRes.M 11 fold_left2.
- [OK] OptOptRes.M 12 for_all2.
- [OK] OptOptRes.M 13 exists2.
- [OK] OptOptRes.M 14 init.
- [OK] OptOptRes.M 15 unfold.
- [OK] OptOptRes.M 16 forever.
- [OK] OptOptRes.M 17 iterate.
- [OK] OptOptRes.M 18 map.
- [OK] OptOptRes.M 19 mapi.
- [OK] OptOptRes.M 20 filter.
- [OK] OptOptRes.M 21 filter_map.
- [OK] OptOptRes.M 22 scan.
- [OK] OptOptRes.M 23 sorted_merge.
- [OK] OptOptRes.M 24 flat_map.
- [OK] OptOptRes.M 25 take_while.
- [OK] OptOptRes.M 26 drop_while.
- [OK] OptOptRes.M 27 group.
- [OK] OptOptRes.M 28 map2.
- [OK] OptOptRes.M 29 map_product.
- [OK] OptOptRes.M 30 partition_map.
- [OK] OptOptRes.M 31 partition.
- [OK] OptOptRes.M 32 of_dispenser.
- [OK] OptOptRes.Make 0 equal.
- [OK] OptOptRes.Make 1 compare.
- [OK] OptOptRes.Make 2 iter.
- [OK] OptOptRes.Make 3 fold_left.
- [OK] OptOptRes.Make 4 iteri.
- [OK] OptOptRes.Make 5 fold_lefti.
- [OK] OptOptRes.Make 6 for_all.
- [OK] OptOptRes.Make 7 exists.
- [OK] OptOptRes.Make 8 find.
- [OK] OptOptRes.Make 9 find_map.
- [OK] OptOptRes.Make 10 iter2.
- [OK] OptOptRes.Make 11 fold_left2.
- [OK] OptOptRes.Make 12 for_all2.
- [OK] OptOptRes.Make 13 exists2.
- [OK] OptOptRes.Make 14 init.
- [OK] OptOptRes.Make 15 unfold.
- [OK] OptOptRes.Make 16 forever.
- [OK] OptOptRes.Make 17 iterate.
- [OK] OptOptRes.Make 18 map.
- [OK] OptOptRes.Make 19 mapi.
- [OK] OptOptRes.Make 20 filter.
- [OK] OptOptRes.Make 21 filter_map.
- [OK] OptOptRes.Make 22 scan.
- [OK] OptOptRes.Make 23 sorted_merge.
- [OK] OptOptRes.Make 24 flat_map.
- [OK] OptOptRes.Make 25 take_while.
- [OK] OptOptRes.Make 26 drop_while.
- [OK] OptOptRes.Make 27 group.
- [OK] OptOptRes.Make 28 map2.
- [OK] OptOptRes.Make 29 map_product.
- [OK] OptOptRes.Make 30 partition_map.
- [OK] OptOptRes.Make 31 partition.
- [OK] OptOptRes.Make 32 of_dispenser.
- [OK] OptOptRes.MakeTraversors 0 equal.
- [OK] OptOptRes.MakeTraversors 1 compare.
- [OK] OptOptRes.MakeTraversors 2 iter.
- [OK] OptOptRes.MakeTraversors 3 fold_left.
- [OK] OptOptRes.MakeTraversors 4 iteri.
- [OK] OptOptRes.MakeTraversors 5 fold_lefti.
- [OK] OptOptRes.MakeTraversors 6 for_all.
- [OK] OptOptRes.MakeTraversors 7 exists.
- [OK] OptOptRes.MakeTraversors 8 find.
- [OK] OptOptRes.MakeTraversors 9 find_map.
- [OK] OptOptRes.MakeTraversors 10 iter2.
- [OK] OptOptRes.MakeTraversors 11 fold_left2.
- [OK] OptOptRes.MakeTraversors 12 for_all2.
- [OK] OptOptRes.MakeTraversors 13 exists2.
- [OK] OptOptRes.MakeTraversors2 0 equal.
- [OK] OptOptRes.MakeTraversors2 1 compare.
- [OK] OptOptRes.MakeTraversors2 2 iter.
- [OK] OptOptRes.MakeTraversors2 3 fold_left.
- [OK] OptOptRes.MakeTraversors2 4 iteri.
- [OK] OptOptRes.MakeTraversors2 5 fold_lefti.
- [OK] OptOptRes.MakeTraversors2 6 for_all.
- [OK] OptOptRes.MakeTraversors2 7 exists.
- [OK] OptOptRes.MakeTraversors2 8 find.
- [OK] OptOptRes.MakeTraversors2 9 find_map.
- [OK] OptOptRes.MakeTraversors2 10 iter2.
- [OK] OptOptRes.MakeTraversors2 11 fold_left2.
- [OK] OptOptRes.MakeTraversors2 12 for_all2.
- [OK] OptOptRes.MakeTraversors2 13 exists2.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/seqes.0.4/_build/default/test/pbt/_build/_tests/Seqes.Monadic.Make1'.
- Test Successful in 1.111s. 438 tests run.
-> compiled seqes.0.4
-> removed seqes.0.4
-> installed seqes.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 00:50.00 ---> saved as "0f8ad55435add7012aa34bd927838fdbd1dc5f626db0a435e4809838cc697175"
Job succeeded
2026-04-11 00:50.34: Job succeeded