- github
- ocaml
- opam-repository
- 618587
- compilers,4.14,ppxlib.0.38.0,revdeps,yocaml_yaml.1.0.0
(not at the head of any monitored branch or PR)
2026-03-20 10:16.49: New job: test yocaml_yaml.1.0.0 with ppxlib.0.38.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (6185871ccd68c72dd8f6902c863f0554508a6764)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29563/head" && git reset --hard 6185871c
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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 ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall yocaml_yaml.1.0.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml_yaml.1.0.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 yocaml_yaml.1.0.0) || true
RUN opam reinstall --with-test --verbose yocaml_yaml.1.0.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 "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'yocaml_yaml.1.0.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-20 10:16.49: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-ppxlib.0.38.0-yocaml_yaml.1.0.0-6185871ccd68c72dd8f6902c863f0554508a6764"
2026-03-20 10:16.49: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(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 ppxlib.0.38.0 0.38.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.38.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 \"\\\"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\" != 'ppxlib.0.38.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_yaml.1.0.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 \"\\\"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\" != 'yocaml_yaml.1.0.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 yocaml_yaml.1.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose yocaml_yaml.1.0.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 \"\\\"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\" != 'yocaml_yaml.1.0.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-20 10:16.49: Waiting for resource in pool OCluster
2026-03-20 10:55.01: Waiting for worker…
2026-03-20 10:58.27: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..6185871ccd
Fast-forward
packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 47 +++++++++++++++++++
packages/ppxlib/ppxlib.0.38.0/opam | 64 ++++++++++++++++++++++++++
2 files changed, 111 insertions(+)
create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-20 10:58.49 ---> saved as "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-20 10:58.49 ---> saved as "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8"
/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-20 10:59.08 ---> saved as "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350"
/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 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-20 10:59.08 ---> saved as "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd"
/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-20 10:59.17 ---> saved as "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-20 10:59.28 ---> saved as "65f3cde022195404236e2872f9138421a9d94b4fb83edf4557bf50f839b1a1cb"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-20 10:59.43 ---> saved as "4801a3cf903575d080a6fd0f2f9aa5180f424ea419b0e4449a3402d8e3e9c6b2"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [116 kB]
- Fetched 10.0 MB in 1s (10.1 MB/s)
- Reading package lists...
2026-03-20 10:59.45 ---> saved as "3d6b7cfa95d93f91065e93aad5a6767610a7e6104ce449c1f9febbf3da6436c3"
/home/opam: (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
ppxlib is now pinned to version 0.38.0
2026-03-20 10:59.46 ---> saved as "0210aae052ea6c63ed6e00734da52a1f07423ab074b840b70199e267e5040b28"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ppxlib.0.38.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 \"\\\"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\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ppxlib.0.38.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install dune 3.22.0 [required by ppxlib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.38.0 (pinned)
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:00.18 ---> saved as "3a2d0f81da018540a62601cd929eaf6ce021a5b4614452bcb57dddabe5cbf957"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yocaml_yaml.1.0.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 \"\\\"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\" != 'yocaml_yaml.1.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
yocaml_yaml.1.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 18 packages
- install astring 0.8.5 [required by bos]
- install bos 0.2.1 [required by yaml]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by yaml]
- install dune-configurator 3.22.0 [required by yaml]
- install either 1.0.0 [required by preface]
- install fmt 0.11.0 [required by bos]
- install fpath 0.7.3 [required by bos]
- install integers 0.7.0 [required by ctypes]
- install logs 0.10.0 [required by bos]
- install ocamlbuild 0.16.1 [required by bos]
- install ocamlfind 1.9.8 [required by bos]
- install preface 1.0.0 [required by yocaml_yaml]
- install rresult 0.7.0 [required by bos]
- install topkg 1.1.1 [required by bos]
- install yaml 3.2.0 [required by yocaml_yaml]
- install yocaml 1.0.0 [required by yocaml_yaml]
- install yocaml_yaml 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed either.1.0.0
-> retrieved preface.1.0.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved yaml.3.2.0 (cached)
-> retrieved yocaml.1.0.0, yocaml_yaml.1.0.0 (cached)
-> installed integers.0.7.0
-> installed dune-configurator.3.22.0
-> installed preface.1.0.0
-> installed ocamlfind.1.9.8
-> installed yocaml.1.0.0
-> installed ocamlbuild.0.16.1
-> installed ctypes.0.24.0
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed yaml.3.2.0
-> installed yocaml_yaml.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:00.41 ---> saved as "62e0ce7deb02baff9dacfbc92599488cca88521e0087dfba58f810a2f79a8e30"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test yocaml_yaml.1.0.0) || true"))
The following actions will be performed:
=== recompile 5 packages
- recompile bos 0.2.1 [uses fmt]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile logs 0.10.0 [uses cmdliner]
- recompile yaml 3.2.0 [uses bos]
- recompile yocaml_yaml 1.0.0
=== install 5 packages
- install alcotest 1.9.1 [required by yocaml_yaml]
- install cmdliner 2.1.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1 (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 logs.0.10.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved yaml.3.2.0 (https://opam.ocaml.org/cache)
-> retrieved yocaml_yaml.1.0.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> removed yocaml_yaml.1.0.0
-> removed yaml.3.2.0
-> removed bos.0.2.1
-> removed logs.0.10.0
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed yaml.3.2.0
-> installed yocaml_yaml.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:00.56 ---> saved as "2133874be922061d027d829d0eae2c61fdba9676969fe37cd9eea958e43f2a2d"
/home/opam: (run (shell "opam reinstall --with-test --verbose yocaml_yaml.1.0.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 \"\\\"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\" != 'yocaml_yaml.1.0.0' && 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 yocaml_yaml 1.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [yocaml_yaml.1.0.0: extract]
-> retrieved yocaml_yaml.1.0.0 (cached)
Processing 2/4: [yocaml_yaml: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yocaml_yaml" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yocaml_yaml.1.0.0)
Processing 2/4: [yocaml_yaml: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "yocaml_yaml" (CWD=/home/opam/.opam/4.14/.opam-switch/build/yocaml_yaml.1.0.0)
- (cd _build/default/tests && ./yocaml_test.exe)
- Testing `YOCaml test'.
- This run has ID `JTSI84SA'.
-
- [OK] Build 0 Simple copying using [read_file] when ...
- [OK] Build 1 Simple copying using [read_file] with ...
- [OK] Deps 0 When the file has no dependencies but ...
- [OK] Deps 1 When the file has no dependencies but ...
- [OK] Deps 2 When the file has dependencies but the...
- [OK] Deps 3 When the file has dependencies and the...
- [OK] Util 0 split_metadate - no metadata 1.
- [OK] Util 1 split_metadate - no metadata 2.
- [OK] Util 2 split_metadate - no metadata 3.
- [OK] Util 3 split_metadate - no metadata 4.
- [OK] Util 4 split_metadate - no metadata 5.
- [OK] Util 5 split_metadate - no metadata 6.
- [OK] Util 6 split_metadate - with metadata 1.
- [OK] Util 7 split_metadate - with metadata 2.
- [OK] Util 8 split_metadate - with metadata 3.
- [OK] Util 9 split_metadate - with metadata 4.
- [OK] Key_value 0 string | when a string is valid it sho...
- [OK] Key_value 1 string_and | when a string is valid it...
- [OK] Key_value 2 string | when a string is valid it sho...
- [OK] Key_value 3 validate partial user using field desc...
- [OK] Key_value 4 validate filled user using field descr...
- [OK] Key_value 5 validate partial invalid user using fi...
- [OK] Key_value 6 validate partial user using assoc desc...
- [OK] Key_value 7 validate filled user using assoc descr...
- [OK] Key_value 8 validate partial invalid user using fi...
- [OK] Key_value 9 validate partial user using field desc...
- [OK] Metadata 0 capture base metadata 1 without values.
- [OK] Metadata 1 capture base metadata 2 without values.
- [OK] Metadata 2 capture base metadata 3 without values.
- [OK] Metadata 3 capture base metadata 4 with only a ti...
- [OK] Metadata 4 capture base metadata 5 with an indexe...
- [OK] Metadata 5 capture article metadata 1 invalid.
- [OK] Metadata 6 capture article metadata 2 invalid.
- [OK] Metadata 7 capture article metadata 3 invalid.
- [OK] Metadata 8 capture article metadata 4 invalid.
- [OK] Metadata 9 capture article metadata 5 invalid.
- [OK] Metadata 10 capture article metadata 1 valid.
- [OK] Metadata 11 capture article metadata 2 valid.
- [OK] Date 0 Date.make 1.
- [OK] Date 1 Date.make 2.
- [OK] Date 2 Date.from_string 1.
- [OK] Date 3 Date.from_string 2.
- [OK] Date 4 Date.make invalid 1.
- [OK] Date 5 dow: Valid (2021-07-14).
- [OK] Date 6 dow: Valid (1789-07-14).
- [OK] Date 7 dow: Valid (2021-08-11).
- [OK] Date 8 dow: Valid (2021-08-12).
- [OK] Date 9 dow: Valid (2021-08-13).
- [OK] Date 10 dow: Valid (2021-08-14).
- [OK] Date 11 dow: Valid (2021-08-15).
- [OK] Date 12 dow: Valid (2021-08-16).
- [OK] Date 13 dow: Valid (2021-08-17).
- [OK] Date 14 dow: Valid (2021-08-18).
- [OK] Date 15 dow: Valid (2021-08-19).
- [OK] Date 16 dow: Valid (2021-08-20).
- [OK] Date 17 dow: Valid (2021-08-21).
- [OK] Date 18 dow: Valid (2021-08-22).
- [OK] Date 19 dow: Valid (2021-08-23).
- [OK] Date 20 dow: Valid (2021-08-24).
- [OK] Date 21 dow: Valid (2021-08-25).
- [OK] Date 22 dow: Valid (2021-08-26).
- [OK] Date 23 dow: Valid (2021-08-27).
- [OK] Date 24 dow: Valid (2021-08-28).
- [OK] Date 25 dow: Valid (2021-08-29).
- [OK] Date 26 dow: Valid (2021-08-30).
- [OK] Date 27 dow: Valid (2021-08-31).
- [OK] Date 28 dow: Valid (2021-09-01).
- [OK] Date 29 dow: Valid (2021-09-02).
- [OK] Date 30 dow: Valid (2021-09-03).
- [OK] Date 31 dow: Valid (2021-09-04).
- [OK] Date 32 dow: Valid (2021-09-05).
- [OK] Date 33 dow: Valid (2021-09-06).
- [OK] Date 34 dow: Valid (2021-09-07).
- [OK] Date 35 dow: Valid (2021-09-08).
- [OK] Date 36 dow: Valid (2021-09-09).
- [OK] Date 37 dow: Valid (2021-09-10).
- [OK] Date 38 dow: Valid (2021-09-11).
- [OK] Date 39 dow: Valid (2021-09-12).
- [OK] Date 40 dow: Valid (2021-09-13).
- [OK] Date 41 dow: Valid (2021-09-14).
- [OK] Date 42 dow: Valid (2021-09-15).
- [OK] Date 43 dow: Valid (2021-09-16).
- [OK] Date 44 dow: Valid (2021-09-17).
- [OK] Date 45 dow: Valid (2021-09-18).
- [OK] Date 46 dow: Valid (2021-09-19).
- [OK] Date 47 dow: Valid (2021-09-20).
- [OK] Date 48 dow: Valid (2021-09-21).
- [OK] Date 49 dow: Valid (2021-09-22).
- [OK] Date 50 dow: Valid (1600-01-10).
- [OK] Date 51 dow: Valid (1600-01-11).
- [OK] Date 52 dow: Valid (1600-01-12).
- [OK] Date 53 dow: Valid (1600-01-13).
- [OK] Date 54 dow: Valid (1600-01-14).
- [OK] Date 55 dow: Valid (1600-01-15).
- [OK] Date 56 dow: Valid (1600-01-16).
- [OK] Date 57 dow: Valid (1600-01-17).
- [OK] Date 58 dow: Valid (1600-01-18).
- [OK] Date 59 dow: Valid (1600-01-19).
- [OK] Date 60 dow: Valid (1600-01-20).
- [OK] Date 61 dow: Valid (1600-01-21).
- [OK] Date 62 dow: Valid (1600-01-22).
- [OK] Date 63 dow: Valid (1600-01-23).
- [OK] Date 64 dow: Valid (1600-01-24).
- [OK] Date 65 dow: Valid (1600-01-25).
- [OK] Date 66 dow: Valid (1600-01-26).
- [OK] Date 67 dow: Valid (1600-01-27).
- [OK] Date 68 dow: Valid (1600-01-28).
- [OK] Date 69 dow: Valid (1600-01-29).
- [OK] Date 70 dow: Valid (1600-01-30).
- [OK] Date 71 dow: Valid (1600-01-31).
- [OK] Date 72 dow: Valid (1600-02-01).
- [OK] Date 73 dow: Valid (1600-02-02).
- [OK] Date 74 dow: Valid (1600-02-03).
- [OK] Date 75 dow: Valid (1600-02-04).
- [OK] Date 76 dow: Valid (1600-02-05).
- [OK] Date 77 dow: Valid (1600-02-06).
- [OK] Date 78 dow: Valid (1600-02-07).
- [OK] Date 79 dow: Valid (1600-02-08).
- [OK] Date 80 dow: Valid (1600-02-09).
- [OK] Date 81 dow: Valid (1600-02-10).
- [OK] Date 82 dow: Valid (1600-02-11).
- [OK] Date 83 dow: Valid (1600-02-12).
- [OK] Date 84 dow: Valid (1600-02-13).
- [OK] Date 85 dow: Valid (1600-02-14).
- [OK] Date 86 dow: Valid (1600-02-15).
- [OK] Date 87 dow: Valid (1600-02-16).
- [OK] Date 88 dow: Valid (1600-02-17).
- [OK] Date 89 dow: Valid (1600-02-18).
- [OK] Date 90 dow: Valid (1600-02-19).
- [OK] Date 91 dow: Valid (1600-02-20).
- [OK] Date 92 dow: Valid (1600-02-21).
- [OK] Date 93 dow: Valid (1600-02-22).
- [OK] Date 94 dow: Valid (1600-02-23).
- [OK] Date 95 dow: Valid (1600-02-24).
- [OK] Date 96 dow: Valid (1600-02-25).
- [OK] Date 97 dow: Valid (1600-02-26).
- [OK] Date 98 dow: Valid (1600-02-27).
- [OK] Date 99 dow: Valid (1600-02-28).
- [OK] Date 100 dow: Valid (1600-02-29).
- [OK] Date 101 dow: Valid (1600-03-01).
- [OK] Date 102 dow: Valid (1600-03-02).
- [OK] Date 103 dow: Valid (1600-03-03).
- [OK] Date 104 dow: Valid (1600-03-04).
- [OK] Date 105 dow: Valid (1600-03-05).
- [OK] Date 106 dow: Valid (1600-03-06).
- [OK] Date 107 dow: Valid (1600-03-07).
- [OK] Date 108 dow: Valid (1600-03-08).
- [OK] Date 109 dow: Valid (1600-03-09).
- [OK] Date 110 dow: Valid (1600-03-10).
- [OK] Date 111 dow: Valid (1600-03-11).
- [OK] Date 112 dow: Valid (1600-03-12).
- [OK] Date 113 dow: Valid (1600-03-13).
- [OK] Date 114 dow: Valid (1600-03-14).
- [OK] Date 115 dow: Valid (1600-03-15).
- [OK] Date 116 dow: Valid (1600-03-16).
- [OK] Date 117 dow: Valid (1600-03-17).
- [OK] Date 118 dow: Valid (1600-03-18).
- [OK] Date 119 dow: Valid (1600-03-19).
- [OK] Date 120 dow: Valid (1600-03-20).
- [OK] Date 121 dow: Valid (1600-03-21).
- [OK] Date 122 dow: Valid (1600-03-22).
- [OK] Date 123 dow: Valid (1600-03-23).
- [OK] Date 124 dow: Valid (1600-03-24).
- [OK] Date 125 dow: Valid (1600-03-25).
- [OK] Date 126 dow: Valid (1600-03-26).
- [OK] Date 127 dow: Valid (1600-03-27).
- [OK] Date 128 dow: Valid (1600-03-28).
- [OK] Date 129 dow: Valid (1600-03-29).
- [OK] Date 130 dow: Valid (1600-03-30).
- [OK] Date 131 dow: Valid (1600-03-31).
- [OK] Date 132 dow: Valid (1600-04-01).
- [OK] Date 133 dow: Valid (1600-04-02).
- [OK] Date 134 dow: Valid (1600-04-03).
- [OK] Date 135 dow: Valid (1600-04-04).
- [OK] Date 136 dow: Valid (1600-04-05).
- [OK] Date 137 dow: Valid (1600-04-06).
- [OK] Date 138 dow: Valid (1600-04-07).
- [OK] Date 139 dow: Valid (1999-10-13).
- [OK] Date 140 dow: Valid (1999-10-14).
- [OK] Date 141 dow: Valid (1999-10-15).
- [OK] Date 142 dow: Valid (1999-10-16).
- [OK] Date 143 dow: Valid (1999-10-17).
- [OK] Date 144 dow: Valid (1999-10-18).
- [OK] Date 145 dow: Valid (1999-10-19).
- [OK] Date 146 dow: Valid (1999-10-20).
- [OK] Date 147 dow: Valid (1999-10-21).
- [OK] Date 148 dow: Valid (1999-10-22).
- [OK] Date 149 dow: Valid (1999-10-23).
- [OK] Date 150 dow: Valid (1999-10-24).
- [OK] Date 151 dow: Valid (1999-10-25).
- [OK] Date 152 dow: Valid (1999-10-26).
- [OK] Date 153 dow: Valid (1999-10-27).
- [OK] Date 154 dow: Valid (1999-10-28).
- [OK] Date 155 dow: Valid (1999-10-29).
- [OK] Date 156 dow: Valid (1999-10-30).
- [OK] Date 157 dow: Valid (1999-10-31).
- [OK] Date 158 dow: Valid (1999-11-01).
- [OK] Date 159 dow: Valid (1999-11-02).
- [OK] Date 160 dow: Valid (1999-11-03).
- [OK] Date 161 dow: Valid (1999-11-04).
- [OK] Date 162 dow: Valid (1999-11-05).
- [OK] Date 163 dow: Valid (1999-11-06).
- [OK] Date 164 dow: Valid (1999-11-07).
- [OK] Date 165 dow: Valid (1999-11-08).
- [OK] Date 166 dow: Valid (1999-11-09).
- [OK] Date 167 dow: Valid (1999-11-10).
- [OK] Date 168 dow: Valid (1999-11-11).
- [OK] Date 169 dow: Valid (1999-11-12).
- [OK] Date 170 dow: Valid (1999-11-13).
- [OK] Date 171 dow: Valid (1999-11-14).
- [OK] Date 172 dow: Valid (1999-11-15).
- [OK] Date 173 dow: Valid (1999-11-16).
- [OK] Date 174 dow: Valid (1999-11-17).
- [OK] Date 175 dow: Valid (1999-11-18).
- [OK] Date 176 dow: Valid (1999-11-19).
- [OK] Date 177 dow: Valid (1999-11-20).
- [OK] Date 178 dow: Valid (1999-11-21).
- [OK] Date 179 dow: Valid (1999-11-22).
- [OK] Date 180 dow: Valid (1999-11-23).
- [OK] Date 181 dow: Valid (1999-11-24).
- [OK] Date 182 dow: Valid (1999-11-25).
- [OK] Date 183 dow: Valid (1999-11-26).
- [OK] Date 184 dow: Valid (1999-11-27).
- [OK] Date 185 dow: Valid (1999-11-28).
- [OK] Date 186 dow: Valid (1999-11-29).
- [OK] Date 187 dow: Valid (1999-11-30).
- [OK] Date 188 dow: Valid (1999-12-01).
- [OK] Date 189 dow: Valid (1999-12-02).
- [OK] Date 190 dow: Valid (1999-12-03).
- [OK] Date 191 dow: Valid (1999-12-04).
- [OK] Date 192 dow: Valid (1999-12-05).
- [OK] Date 193 dow: Valid (1999-12-06).
- [OK] Date 194 dow: Valid (1999-12-07).
- [OK] Date 195 dow: Valid (1999-12-08).
- [OK] Date 196 dow: Valid (1999-12-09).
- [OK] Date 197 dow: Valid (1999-12-10).
- [OK] Date 198 dow: Valid (1999-12-11).
- [OK] Date 199 dow: Valid (1999-12-12).
- [OK] Date 200 dow: Valid (1999-12-13).
- [OK] Date 201 dow: Valid (1999-12-14).
- [OK] Date 202 dow: Valid (1999-12-15).
- [OK] Date 203 dow: Valid (1999-12-16).
- [OK] Date 204 dow: Valid (1999-12-17).
- [OK] Date 205 dow: Valid (1999-12-18).
- [OK] Date 206 dow: Valid (1999-12-19).
- [OK] Date 207 dow: Valid (1999-12-20).
- [OK] Date 208 dow: Valid (1999-12-21).
- [OK] Date 209 dow: Valid (1999-12-22).
- [OK] Date 210 dow: Valid (1999-12-23).
- [OK] Date 211 dow: Valid (1999-12-24).
- [OK] Date 212 dow: Valid (1999-12-25).
- [OK] Date 213 dow: Valid (1999-12-26).
- [OK] Date 214 dow: Valid (1999-12-27).
- [OK] Date 215 dow: Valid (1999-12-28).
- [OK] Date 216 dow: Valid (1999-12-29).
- [OK] Date 217 dow: Valid (1999-12-30).
- [OK] Date 218 dow: Valid (1999-12-31).
- [OK] Date 219 dow: Valid (2000-01-01).
- [OK] Date 220 dow: Valid (2000-01-02).
- [OK] Date 221 dow: Valid (2000-01-03).
- [OK] Date 222 dow: Valid (2000-01-04).
- [OK] Date 223 dow: Valid (2000-01-05).
- [OK] Date 224 dow: Valid (2000-01-06).
- [OK] Date 225 dow: Valid (2000-01-07).
- [OK] Date 226 dow: Valid (2000-01-08).
- [OK] Date 227 dow: Valid (2000-01-09).
- [OK] Date 228 dow: Valid (2000-01-10).
- [OK] Date 229 dow: Valid (2000-01-11).
- [OK] Date 230 dow: Valid (2000-01-12).
- [OK] Date 231 dow: Valid (2000-01-13).
- [OK] Date 232 dow: Valid (2000-01-14).
- [OK] Date 233 dow: Valid (2000-01-15).
- [OK] Date 234 dow: Valid (2000-01-16).
- [OK] Date 235 dow: Valid (2000-01-17).
- [OK] Date 236 dow: Valid (2000-01-18).
- [OK] Date 237 dow: Valid (2000-01-19).
- [OK] Date 238 dow: Valid (2000-01-20).
- [OK] Date 239 dow: Valid (2000-01-21).
- [OK] Date 240 dow: Valid (2000-01-22).
- [OK] Date 241 dow: Valid (3000-01-01).
- [OK] Date 242 dow: Valid (3000-01-02).
- [OK] Date 243 dow: Valid (3000-01-03).
- [OK] Date 244 dow: Valid (3000-01-04).
- [OK] Date 245 dow: Valid (3000-01-05).
- [OK] Date 246 dow: Valid (3000-01-06).
- [OK] Date 247 dow: Valid (3000-01-07).
- [OK] Date 248 dow: Valid (3000-01-08).
- [OK] Date 249 dow: Valid (3000-01-09).
- [OK] Date 250 dow: Valid (3000-01-10).
- [OK] Date 251 dow: Valid (3000-01-11).
- [OK] Date 252 dow: Valid (3000-01-12).
- [OK] Date 253 dow: Valid (3000-01-13).
- [OK] Date 254 dow: Valid (3000-01-14).
- [OK] Date 255 dow: Valid (3000-01-15).
- [OK] Date 256 dow: Valid (3000-01-16).
- [OK] Date 257 dow: Valid (3000-01-17).
- [OK] Date 258 dow: Valid (3000-01-18).
- [OK] Date 259 dow: Valid (3000-01-19).
- [OK] Date 260 dow: Valid (3000-01-20).
- [OK] Date 261 dow: Valid (3000-01-21).
- [OK] Date 262 dow: Valid (3000-01-22).
- [OK] Date 263 dow: Valid (3000-01-23).
- [OK] Date 264 dow: Valid (3000-01-24).
- [OK] Date 265 dow: Valid (3000-01-25).
- [OK] Date 266 dow: Valid (3000-01-26).
- [OK] Date 267 dow: Valid (3000-01-27).
- [OK] Date 268 dow: Valid (3000-01-28).
- [OK] Date 269 dow: Valid (3000-01-29).
- [OK] Date 270 dow: Valid (3000-01-30).
- [OK] Date 271 dow: Valid (3000-01-31).
- [OK] Date 272 dow: Valid (3000-02-01).
- [OK] Date 273 dow: Valid (3000-02-02).
- [OK] Date 274 dow: Valid (3000-02-03).
- [OK] Date 275 dow: Valid (3000-02-04).
- [OK] Date 276 dow: Valid (3000-02-05).
- [OK] Date 277 dow: Valid (3000-02-06).
- [OK] Date 278 dow: Valid (3000-02-07).
- [OK] Date 279 dow: Valid (3000-02-08).
- [OK] Date 280 dow: Valid (3000-02-09).
- [OK] Date 281 dow: Valid (3000-02-10).
- [OK] Date 282 dow: Valid (3000-02-11).
- [OK] Date 283 dow: Valid (3000-02-12).
- [OK] Date 284 dow: Valid (3000-02-13).
- [OK] Date 285 dow: Valid (3000-02-14).
- [OK] Date 286 dow: Valid (3000-02-15).
- [OK] Date 287 dow: Valid (3000-02-16).
- [OK] Date 288 dow: Valid (3000-02-17).
- [OK] Date 289 dow: Valid (3000-02-18).
- [OK] Date 290 dow: Valid (3000-02-19).
- [OK] Date 291 dow: Valid (3000-02-20).
- [OK] Date 292 dow: Valid (3000-02-21).
- [OK] Date 293 dow: Valid (3000-02-22).
- [OK] Date 294 dow: Valid (3000-02-23).
- [OK] Date 295 dow: Valid (3000-02-24).
- [OK] Date 296 dow: Valid (3000-02-25).
- [OK] Date 297 dow: Valid (3000-02-26).
- [OK] Date 298 dow: Valid (3000-02-27).
- [OK] Date 299 dow: Valid (3000-02-28).
- [OK] Date 300 dow: Valid (3000-03-01).
- [OK] Date 301 dow: Valid (3000-03-02).
- [OK] Date 302 dow: Valid (3000-03-03).
- [OK] Date 303 dow: Valid (3000-03-04).
- [OK] Date 304 dow: Valid (3000-03-05).
- [OK] Date 305 dow: Valid (3000-03-06).
- [OK] Date 306 dow: Valid (3000-03-07).
- [OK] Date 307 dow: Valid (3000-03-08).
- [OK] Date 308 dow: Valid (3000-03-09).
- [OK] Date 309 dow: Valid (3000-03-10).
- [OK] Date 310 dow: Valid (3000-03-11).
- [OK] Date 311 dow: Valid (3000-03-12).
- [OK] Date 312 dow: Valid (3000-03-13).
- [OK] Date 313 dow: Valid (3000-03-14).
- [OK] Date 314 dow: Valid (3000-03-15).
- [OK] Date 315 dow: Valid (3000-03-16).
- [OK] Date 316 dow: Valid (3000-03-17).
- [OK] Date 317 dow: Valid (3000-03-18).
- [OK] Date 318 dow: Valid (3000-03-19).
- [OK] Date 319 dow: Valid (3000-03-20).
- [OK] Date 320 dow: Valid (3000-03-21).
- [OK] Date 321 dow: Valid (3000-03-22).
- [OK] Date 322 dow: Valid (3000-03-23).
- [OK] Date 323 dow: Valid (3000-03-24).
- [OK] Date 324 dow: Valid (3000-03-25).
- [OK] Date 325 dow: Valid (3000-03-26).
- [OK] Date 326 dow: Valid (3000-03-27).
- [OK] Date 327 dow: Valid (3000-03-28).
- [OK] Date 328 dow: Valid (3000-03-29).
- [OK] Date 329 dow: Valid (3000-03-30).
- [OK] Date 330 dow: Valid (3000-03-31).
- [OK] Date 331 dow: Valid (3000-04-01).
- [OK] Date 332 dow: Valid (3000-04-02).
- [OK] Date 333 dow: Valid (3000-04-03).
- [OK] Date 334 dow: Valid (3000-04-04).
- [OK] Date 335 dow: Valid (3000-04-05).
- [OK] Date 336 dow: Valid (3000-04-06).
- [OK] Date 337 dow: Valid (3000-04-07).
- [OK] Date 338 dow: Valid (3000-04-08).
- [OK] Date 339 dow: Valid (3000-04-09).
- [OK] Date 340 dow: Valid (3000-04-10).
- [OK] Date 341 dow: Valid (3000-04-11).
- [OK] Date 342 dow: Valid (3000-04-12).
- [OK] Date 343 dow: Valid (3000-04-13).
- [OK] Date 344 dow: Valid (3000-04-14).
- [OK] Date 345 dow: Valid (3000-04-15).
- [OK] Date 346 dow: Valid (3000-04-16).
- [OK] Date 347 dow: Valid (3000-04-17).
- [OK] Date 348 dow: Valid (3000-04-18).
- [OK] Date 349 dow: Valid (3000-04-19).
- [OK] Date 350 dow: Valid (3000-04-20).
- [OK] Date 351 dow: Valid (3000-04-21).
- [OK] Date 352 dow: Valid (3000-04-22).
- [OK] Date 353 dow: Valid (3000-04-23).
- [OK] Date 354 dow: Valid (3000-04-24).
- [OK] Date 355 dow: Valid (3000-04-25).
- [OK] Date 356 dow: Valid (3000-04-26).
- [OK] Date 357 dow: Valid (3000-04-27).
- [OK] Date 358 dow: Valid (3000-04-28).
- [OK] Date 359 dow: Valid (3000-04-29).
- [OK] Date 360 dow: Valid (3000-04-30).
- [OK] Date 361 dow: Valid (3000-05-01).
- [OK] Date 362 dow: Valid (3000-05-02).
- [OK] Date 363 dow: Valid (3000-05-03).
- [OK] Date 364 dow: Valid (3000-05-04).
- [OK] Date 365 dow: Valid (3000-05-05).
- [OK] Date 366 dow: Valid (3000-05-06).
- [OK] Date 367 dow: Valid (3000-05-07).
- [OK] Date 368 dow: Valid (3000-05-08).
- [OK] Date 369 dow: Valid (3000-05-09).
- [OK] Date 370 dow: Valid (3000-05-10).
- [OK] Date 371 dow: Valid (3000-05-11).
- [OK] Date 372 dow: Valid (3000-05-12).
- [OK] Date 373 dow: Valid (3000-05-13).
- [OK] Date 374 dow: Valid (3000-05-14).
- [OK] Date 375 dow: Valid (3000-05-15).
- [OK] Date 376 dow: Valid (3000-05-16).
- [OK] Date 377 dow: Valid (3000-05-17).
- [OK] Date 378 dow: Valid (3000-05-18).
- [OK] Date 379 dow: Valid (3000-05-19).
- [OK] Date 380 dow: Valid (3000-05-20).
- [OK] Date 381 dow: Valid (3000-05-21).
- [OK] Date 382 dow: Valid (3000-05-22).
- [OK] Date 383 dow: Valid (3000-05-23).
- [OK] Date 384 dow: Valid (3000-05-24).
- [OK] Date 385 dow: Valid (3000-05-25).
- [OK] Date 386 dow: Valid (3000-05-26).
- [OK] Date 387 dow: Valid (3000-05-27).
- [OK] Date 388 dow: Valid (3000-05-28).
- [OK] Date 389 dow: Valid (3000-05-29).
- [OK] Date 390 dow: Valid (3000-05-30).
- [OK] Date 391 dow: Valid (3000-05-31).
- [OK] Date 392 dow: Valid (3000-06-01).
- [OK] Date 393 dow: Valid (3000-06-02).
- [OK] Date 394 dow: Valid (3000-06-03).
- [OK] Date 395 dow: Valid (3000-06-04).
- [OK] Date 396 dow: Valid (3000-06-05).
- [OK] Date 397 dow: Valid (3000-06-06).
- [OK] Date 398 dow: Valid (3000-06-07).
- [OK] Date 399 dow: Valid (3000-06-08).
- [OK] Date 400 dow: Valid (3000-06-09).
- [OK] Date 401 dow: Valid (3000-06-10).
- [OK] Date 402 dow: Valid (3000-06-11).
- [OK] Date 403 dow: Valid (3000-06-12).
- [OK] Date 404 dow: Valid (3000-06-13).
- [OK] Date 405 dow: Valid (3000-06-14).
- [OK] Date 406 dow: Valid (3000-06-15).
- [OK] Date 407 dow: Valid (3000-06-16).
- [OK] Date 408 dow: Valid (3000-06-17).
- [OK] Date 409 dow: Valid (3000-06-18).
- [OK] Date 410 dow: Valid (3000-06-19).
- [OK] Date 411 dow: Valid (3000-06-20).
- [OK] Date 412 dow: Valid (3000-06-21).
- [OK] Date 413 dow: Valid (3000-06-22).
- [OK] Date 414 dow: Valid (3000-06-23).
- [OK] Date 415 dow: Valid (3000-06-24).
- [OK] Date 416 dow: Valid (3000-06-25).
- [OK] Date 417 dow: Valid (3000-06-26).
- [OK] Date 418 dow: Valid (3000-06-27).
- [OK] Date 419 dow: Valid (3000-06-28).
- [OK] Date 420 dow: Valid (3000-06-29).
- [OK] Date 421 dow: Valid (3000-06-30).
- [OK] Date 422 dow: Valid (3000-07-01).
- [OK] Date 423 dow: Valid (3000-07-02).
- [OK] Date 424 dow: Valid (3000-07-03).
- [OK] Date 425 dow: Valid (3000-07-04).
- [OK] Date 426 dow: Valid (3000-07-05).
- [OK] Date 427 dow: Valid (3000-07-06).
- [OK] Date 428 dow: Valid (3000-07-07).
- [OK] Date 429 dow: Valid (3000-07-08).
- [OK] Date 430 dow: Valid (3000-07-09).
- [OK] Date 431 dow: Valid (3000-07-10).
- [OK] Date 432 dow: Valid (3000-07-11).
- [OK] Date 433 dow: Valid (3000-07-12).
- [OK] Date 434 dow: Valid (3000-07-13).
- [OK] Date 435 dow: Valid (3000-07-14).
- [OK] Date 436 dow: Valid (3000-07-15).
- [OK] Date 437 dow: Valid (3000-07-16).
- [OK] Date 438 dow: Valid (3000-07-17).
- [OK] Date 439 dow: Valid (3000-07-18).
- [OK] Date 440 dow: Valid (3000-07-19).
- [OK] Date 441 dow: Valid (3000-07-20).
- [OK] Date 442 dow: Valid (3000-07-21).
-
- Full test results in `~/.opam/4.14/.opam-switch/build/yocaml_yaml.1.0.0/_build/default/tests/_build/_tests/YOCaml test'.
- Test Successful in 0.030s. 481 tests run.
-> compiled yocaml_yaml.1.0.0
-> removed yocaml_yaml.1.0.0
-> installed yocaml_yaml.1.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 11:01.00 ---> saved as "4bc5a6d195708c53a41ce4c07c455d392eaea147f4f692a17edce92bf9f88992"
Job succeeded
2026-03-20 11:01.08: Job succeeded