- github
- ocaml
- opam-repository
- 3e0c39
- compilers,5.4,dune.3.22.2,revdeps,yamlx.0.1.0
(not at the head of any monitored branch or PR)
2026-04-10 17:47.47: New job: test yamlx.0.1.0 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 yamlx.0.1.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" != 'yamlx.0.1.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 yamlx.0.1.0) || true
RUN opam reinstall --with-test --verbose yamlx.0.1.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" != 'yamlx.0.1.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-04-10 17:47.47: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03-dune.3.22.2-yamlx.0.1.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.47: 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 yamlx.0.1.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\" != 'yamlx.0.1.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 yamlx.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose yamlx.0.1.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\" != 'yamlx.0.1.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-04-10 17:47.47: Waiting for resource in pool OCluster
2026-04-11 00:36.19: Waiting for worker…
2026-04-11 00:38.59: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
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:39.03 ---> 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:39.03 ---> 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.
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-04-11 00:39.03 ---> 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 255
# 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:39.03 ---> 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:39.03 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 00:39.04 ---> using "c0553ba1781e82471f38f012874b6b7341f662c325cc75285bfd7972f7a6ff87" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 00:39.04 ---> 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 (999 kB/s)
- Reading package lists...
-
2026-04-11 00:39.04 ---> 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:39.04 ---> 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:39.04 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall yamlx.0.1.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\" != 'yamlx.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
yamlx.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
- install cppo 1.8.0 [required by ppx_deriving]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlfind 1.9.8 [required by ppx_deriving]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by yamlx]
- install ppxlib 0.38.0 [required by ppx_deriving]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install yamlx 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> retrieved ppxlib.0.38.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved yamlx.0.1.0 (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocamlfind.1.9.8
-> installed ppxlib.0.38.0
-> installed ppx_deriving.6.1.1
-> installed yamlx.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 00:39.31 ---> saved as "350e28dbd2a82ed172349b5d6a9ec51b8d1d499a2bf5811e4e76e3c4e6fd5263"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test yamlx.0.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile yamlx 0.1.0
=== install 9 packages
- install astring 0.8.5 [required by fpath]
- install cmdliner 2.1.0 [required by testo]
- install fpath 0.7.3 [required by testo]
- install ocamlbuild 0.16.1 [required by fpath]
- install re 1.14.0 [required by testo]
- install testo 0.4.0 [required by yamlx]
- install testo-diff 0.4.0 [required by testo-util]
- install testo-util 0.4.0 [required by testo]
- install topkg 1.1.1 [required by fpath]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved testo.0.4.0, testo-diff.0.4.0, testo-util.0.4.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved yamlx.0.1.0 (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed testo-diff.0.4.0
-> installed cmdliner.2.1.0
-> removed yamlx.0.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed testo-util.0.4.0
-> installed testo.0.4.0
-> installed yamlx.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 00:40.02 ---> saved as "457f14e4c2cba555f10001158f2077e7be26386f6400ff0ffa9d1fdd4a43e798"
/home/opam: (run (shell "opam reinstall --with-test --verbose yamlx.0.1.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\" != 'yamlx.0.1.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 yamlx 0.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [yamlx.0.1.0: extract]
-> retrieved yamlx.0.1.0 (cached)
Processing 2/4: [yamlx: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "yamlx" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/yamlx.0.1.0)
- (cd _build/default/tests && ./Test_yamlx.exe)
- Legend:
- • [PASS]: a successful test that was expected to succeed (good);
- • [FAIL]: a failing test that was expected to succeed (needs fixing);
- • [XFAIL]: a failing test that was expected to fail (tolerated failure);
- • [XPASS]: a successful test that was expected to fail (progress?).
- • [MISS]: a test that never ran;
- • [SKIP]: a test that is always skipped but kept around for some reason;
- • [xxxx*]: a new test for which there's no expected output yet.
- In this case, you should review the test output and run the 'approve'
- subcommand once you're satisfied with the output.
- Try '--help' for options. Use '--expert' to hide this legend.
- [RUN] 8bf2af509de7 empty stream
- [RUN] 5eabbddbf628 plain scalar
- [RUN] fbc545840d9e simple mapping
- [RUN] e2e109d4012b simple sequence
- [RUN] 6eec10cd414a double-quoted scalar
- [RUN] a94f735915a5 single-quoted scalar
- [RUN] cf707238aa12 anchor and alias
- [RUN] 78f6d37c89b4 explicit document
- [RUN] d3ed31c01406 resolver null
- [RUN] 0b719e46e640 resolver bool true
- [RUN] 1600e4f4cf90 resolver int
- [RUN] f8cebb56f549 resolver float
- [RUN] 2f8d602d2eb4 resolver string (quoted)
- [RUN] 972dedce26ee encoding > UTF-32 BE BOM rejected
- [RUN] 70883bbba492 encoding > UTF-32 LE BOM rejected
- [RUN] 43fa8ea444e1 encoding > UTF-16 BE BOM rejected
- [RUN] 50a3527ae9ed encoding > UTF-16 LE BOM rejected
- [RUN] f8a2f7a75c10 encoding > UTF-8 BOM accepted
- [RUN] a738437abc26 encoding > CRLF line endings normalized to LF
- [RUN] 7332629ea1b5 encoding > bare CR line endings normalized to LF
- [RUN] 9ebae337a536 encoding > NEL (U+0085) line endings normalized to LF
- [RUN] c10bf242e1aa encoding > LS (U+2028) line endings normalized to LF
- [RUN] 7c0bfddb42b9 encoding > PS (U+2029) line endings normalized to LF
- [RUN] 693d5cb6b3fa encoding > invalid UTF-8 byte raises Scan_error
- [RUN] cab45a6b5c19 encoding > truncated 2-byte UTF-8 sequence raises Scan_error
- [RUN] 484a480b029c encoding > truncated 4-byte UTF-8 sequence raises Scan_error
- [RUN] 2e3151109a2c encoding > non-hex digit in \uXXXX escape raises Scan_error
- [RUN] 105b618df7d3 encoding > non-hex digit in \xXX escape raises Scan_error
- [RUN] bdcf8a96f256 encoding > \UXXXXXXXX out of Unicode range raises Scan_error
- [RUN] 78ea6e2537d9 encoding > valid \UXXXXXXXX emoji parses correctly
- [RUN] b570172df6ab roundtrip > plain scalar (idempotent)
- [RUN] e23911126ce7 roundtrip > plain scalar (values)
- [RUN] 19ec18765829 roundtrip > plain scalar int (idempotent)
- [RUN] 4b5effe9e988 roundtrip > plain scalar int (values)
- [RUN] 710045fc3681 roundtrip > plain scalar null (idempotent)
- [RUN] adddfe02027b roundtrip > plain scalar null (values)
- [RUN] c9c9f7d73d09 roundtrip > single-quoted scalar (idempotent)
- [RUN] 88f668f417ea roundtrip > single-quoted scalar (values)
- [RUN] f98774bd5607 roundtrip > double-quoted scalar (idempotent)
- [RUN] b71ef298739b roundtrip > double-quoted scalar (values)
- [RUN] 980a665eeeaf roundtrip > double-quoted with escapes (idempotent)
- [RUN] 8a6284661e7c roundtrip > double-quoted with escapes (values)
- [RUN] 54c17603b83b roundtrip > literal block scalar (idempotent)
- [RUN] dc81615fe6bd roundtrip > literal block scalar (values)
- [RUN] 34b7b9e5e8d4 roundtrip > literal block scalar strip (idempotent)
- [RUN] 11818e634ee9 roundtrip > literal block scalar strip (values)
- [RUN] fc75f2f47ef1 roundtrip > literal block scalar keep (idempotent)
- [RUN] 3e371648a934 roundtrip > literal block scalar keep (values)
- [RUN] 85686604e0eb roundtrip > folded block scalar (idempotent)
- [RUN] 0605354872c4 roundtrip > folded block scalar (values)
- [RUN] 11c48d7d40b4 roundtrip > block mapping (idempotent)
- [RUN] 6d0b80dfb31d roundtrip > block mapping (values)
- [RUN] a188d3edf778 roundtrip > nested block mapping (idempotent)
- [RUN] 23972e370a91 roundtrip > nested block mapping (values)
- [RUN] e06ab99d1eae roundtrip > block sequence (idempotent)
- [RUN] a252faced375 roundtrip > block sequence (values)
- [RUN] ba95305ea3e7 roundtrip > nested block sequence (idempotent)
- [RUN] e3fa2d415cf1 roundtrip > nested block sequence (values)
- [RUN] 5c13bc488bfb roundtrip > sequence in mapping (idempotent)
- [RUN] a4058648eba9 roundtrip > sequence in mapping (values)
- [RUN] 382ada03c177 roundtrip > mapping in sequence (idempotent)
- [RUN] caef286570ec roundtrip > mapping in sequence (values)
- [RUN] 020f2a7c3bbc roundtrip > flow mapping (idempotent)
- [RUN] 1eec086f87f4 roundtrip > flow mapping (values)
- [RUN] f3edbb625470 roundtrip > flow sequence (idempotent)
- [RUN] bf3cafaa51d5 roundtrip > flow sequence (values)
- [RUN] d8e15d59491b roundtrip > anchor and alias (idempotent)
- [RUN] f55078af58fb roundtrip > anchor and alias (values)
- [RUN] 91640288da33 roundtrip > multi-document (idempotent)
- [RUN] efe8716e80c3 roundtrip > multi-document (values)
- [RUN] 53022391a5f2 roundtrip > explicit document start (idempotent)
- [RUN] 0572ce02695f roundtrip > explicit document start (values)
- [RUN] c008ebc54cb9 roundtrip > empty mapping (idempotent)
- [RUN] 3cb971213a94 roundtrip > empty mapping (values)
- [RUN] 7816bd49feaa roundtrip > empty sequence (idempotent)
- [RUN] 5fbfbcde6b7d roundtrip > empty sequence (values)
- [RUN] fd70e558c961 comments > head comment on document
- [RUN] 019f78432446 comments > line comment on scalar value
- [RUN] 34c14d15e788 comments > head comment before sequence item
- [RUN] 14eac04320fa comments > foot comment after last sequence item
- [RUN] fccecd87fc5a comments > multiple head comments
- [RUN] b1399542d428 comments > comment on block scalar header not preserved
- [RUN] 422d737b1d15 comments > line comment on alias
- [RUN] 10457d167e4a comments > head comment before mapping value on its own line
- [RUN] 1525552e202f comments > comment between sequence items becomes head of next item, not foot of previous
- [RUN] 6484dd448c76 comments > comments dropped inside flow collection
- [RUN] 47dcede08cdd comments > double-hash head comment preserved verbatim
- [RUN] b6697a5a7f2c comments > comment with no space after hash preserved verbatim
- [RUN] 9d8adfb36962 comments > double-hash inline comment preserved verbatim
- [RUN] d52569c4a49a comments > inline comment with no space after hash preserved verbatim
- [RUN] 0978fda95be4 anchors > anchor defined in one document is not visible in the next
- [RUN] ebc69acc3387 anchors > same anchor name may be reused across documents
- [RUN] 30e260430616 printer > compact mapping — single key
- [RUN] cdaaf936448b printer > compact mapping — multiple keys
- [RUN] dfdf4db3178e printer > compact mapping — nested block mapping value
- [RUN] 0f75693c03a1 printer > compact mapping — nested block mapping value with sibling key
- [RUN] 985e0bd69340 printer > compact mapping — nested block sequence value
- [RUN] fc4357acebdb printer > compact mapping — flow sequence value preserved
- [RUN] 81e5d33e7d9e printer > compact mapping — list of mappings
- [RUN] 930f807b1ca7 printer > non-compact: nested block sequence uses dash-newline
- [RUN] 30ce69919a36 printer > single-quoted scalar preserved
- [RUN] 5178f2e4eb59 printer > double-quoted scalar preserved
- [RUN] 67b22f6ff2cd printer > literal block scalar preserved
- [RUN] 750849aa2117 printer > folded block scalar preserved
- [RUN] 0568721029c9 printer > flow mapping preserved
- [RUN] 03274f7f86fb printer > flow sequence preserved
- [RUN] 3696d03829ea printer > empty block mapping
- [RUN] 5abbf9c28c4d printer > empty block sequence
- [RUN] bb804ee5a7da printer > sequence in mapping
- [RUN] 4d004629c88e printer > mapping in mapping
- [RUN] e4eb290e74d3 printer > anchor and alias
- [RUN] f928ede1ab79 printer > multi-document: second gets --- marker
- [RUN] 5bc0cf0ac934 printer > multi-document: block collection gets own line after ---
- [RUN] 0c61d9560715 expansion-limit > YAML bomb raises Expansion_limit_exceeded via of_string
- [RUN] 81cf85b7bea4 expansion-limit > YAML bomb raises Expansion_limit_exceeded via to_plain_yaml
- [RUN] feb1123e839f expansion-limit > YAML bomb is Error via of_string_result
- [RUN] 7c30c2053c62 expansion-limit > custom low limit is respected
- [RUN] a2fb448eddc7 expansion-limit > normal aliases within default limit succeed
- [RUN] fba34658ac73 expansion-limit > to_yaml does not expand aliases and ignores limit
- [RUN] 68ada09cebdb depth-limit > deeply nested input raises Depth_limit_exceeded via parse_nodes
- [RUN] ae3442112863 depth-limit > deeply nested input raises Depth_limit_exceeded via of_string
- [RUN] b17ad451f9b1 depth-limit > depth limit is Error via of_string_result
- [RUN] e74567255302 depth-limit > custom low limit is respected
- [RUN] 72c0b200f69b depth-limit > input exactly at the limit is accepted
- [RUN] cc203b5e7cd9 depth-limit > node_height reflects correct subtree height
- [RUN] 6a3b50c79a9a depth-limit > value_height reflects correct subtree height
- [RUN] dd2e5264431e performance > deeply nested flow sequences parse in linear time
- [RUN] 3b5d9d255e19 conversion > value → node → value: null
- [RUN] 8808321554ee conversion > value → node → value: bool true
- [RUN] acde6216cf86 conversion > value → node → value: bool false
- [RUN] d1a1700170c6 conversion > value → node → value: int zero
- [RUN] 746b3ee74c54 conversion > value → node → value: int positive
- [RUN] f8ea908b19ce conversion > value → node → value: int negative
- [RUN] d48c52230018 conversion > value → node → value: float
- [RUN] 54f51e4317c4 conversion > value → node → value: float nan
- [RUN] 7a77249d63f1 conversion > value → node → value: float inf
- [RUN] 22cf07e34da9 conversion > value → node → value: float neg inf
- [RUN] e1a12f982006 conversion > value → node → value: string simple
- [RUN] 19ecd86c07cb conversion > value → node → value: string empty
- [RUN] 634743480738 conversion > value → node → value: string with newline
- [RUN] 4aee468fd8fe conversion > value → node → value: string that looks like int
- [RUN] 1719e6b67e9f conversion > value → node → value: string that looks like null
- [RUN] 34a71783c4e4 conversion > value → node → value: string that looks like bool
- [RUN] c81d8d46ff9e conversion > value → node → value: empty sequence
- [RUN] 7d981b27dd5d conversion > value → node → value: sequence of ints
- [RUN] 5b3a796b79ef conversion > value → node → value: empty mapping
- [RUN] 28a02ca18d07 conversion > value → node → value: mapping str→int
- [RUN] f0f3f5717699 conversion > value → node → value: nested mapping
- [RUN] 08ae3b88511a conversion > node → value → node: plain scalars
- [RUN] 331ff00347ff conversion > node → value → node: null
- [RUN] 652ebe5b877a conversion > node → value → node: bool
- [RUN] 5258eb0c49db conversion > node → value → node: int
- [RUN] 9edcc9552829 conversion > node → value → node: float
- [RUN] edd2266e5721 conversion > node → value → node: block mapping
- [RUN] 6a057481ab9c conversion > node → value → node: block sequence
- [RUN] c69a7d144d5b conversion > node → value → node: nested
- [RUN] 31c516b9bce2 conversion > node → value → node: alias expanded
- [RUN] 22d247a3fce0 conversion > node → value → node: multi-document
- [RUN] b56f11856c8c duplicate-keys > last occurrence wins in YAML 1.2
- [RUN] e3a696ddba77 duplicate-keys > order of surviving keys is preserved
- [RUN] 2a4a7a53b225 duplicate-keys > last occurrence wins in YAML 1.1 (regular pairs)
- [RUN] b2f996f9222c duplicate-keys > regular key overrides merged key in YAML 1.1
- [RUN] c2d74ed54b94 yaml-1.1 > task 1: << is a plain string key in YAML 1.2
- [RUN] 229e5dd0bcb1 yaml-1.1 > bool y/n — 1.2 resolution
- [RUN] 11e1c00ef142 yaml-1.1 > bool y/n — 1.1 resolution
- [RUN] 91e69f045856 yaml-1.1 > bool Y/N — 1.2 resolution
- [RUN] 9519c105fe4a yaml-1.1 > bool Y/N — 1.1 resolution
- [RUN] e4cb30c6c9d5 yaml-1.1 > bool yes/no — 1.2 resolution
- [RUN] a6a2762999cc yaml-1.1 > bool yes/no — 1.1 resolution
- [RUN] 9393a2c0cd47 yaml-1.1 > bool Yes/No — 1.2 resolution
- [RUN] f85d37cba10b yaml-1.1 > bool Yes/No — 1.1 resolution
- [RUN] 643dff62e335 yaml-1.1 > bool YES/NO — 1.2 resolution
- [RUN] 063750ebf0a6 yaml-1.1 > bool YES/NO — 1.1 resolution
- [RUN] f776da1ff0d4 yaml-1.1 > bool n — 1.2 resolution
- [RUN] b31ebe776de2 yaml-1.1 > bool n — 1.1 resolution
- [RUN] a65c604607f9 yaml-1.1 > bool no — 1.2 resolution
- [RUN] 6c53c14cb3f8 yaml-1.1 > bool no — 1.1 resolution
- [RUN] f887e4a424e9 yaml-1.1 > bool on — 1.2 resolution
- [RUN] 5bc469a35036 yaml-1.1 > bool on — 1.1 resolution
- [RUN] bb2f6a4866dc yaml-1.1 > bool On — 1.2 resolution
- [RUN] 72533c589d66 yaml-1.1 > bool On — 1.1 resolution
- [RUN] a03f30553946 yaml-1.1 > bool ON — 1.2 resolution
- [RUN] cbd1159f1557 yaml-1.1 > bool ON — 1.1 resolution
- [RUN] c0faa0d88718 yaml-1.1 > bool off — 1.2 resolution
- [RUN] 23e4c5fbc644 yaml-1.1 > bool off — 1.1 resolution
- [RUN] da4bdd5ee88a yaml-1.1 > bool Off — 1.2 resolution
- [RUN] 720fe5e9d5f7 yaml-1.1 > bool Off — 1.1 resolution
- [RUN] 3a8a28ad7e49 yaml-1.1 > bool OFF — 1.2 resolution
- [RUN] 13aac0128af2 yaml-1.1 > bool OFF — 1.1 resolution
- [RUN] 73e070a396fa yaml-1.1 > bool true — 1.2 resolution
- [RUN] 1290158bdecd yaml-1.1 > bool true — 1.1 resolution
- [RUN] 0e8ee96da759 yaml-1.1 > bool false — 1.2 resolution
- [RUN] 1312d28c691d yaml-1.1 > bool false — 1.1 resolution
- [RUN] e31415965f65 yaml-1.1 > null ~ — 1.2 resolution
- [RUN] a7647b786348 yaml-1.1 > null ~ — 1.1 resolution
- [RUN] 9318baa7f786 yaml-1.1 > null keyword — 1.2 resolution
- [RUN] 0306802e689c yaml-1.1 > null keyword — 1.1 resolution
- [RUN] a343c88f753a yaml-1.1 > octal 0755 (decimal in 1.2) — 1.2 resolution
- [RUN] 2c390c55a7a7 yaml-1.1 > octal 0755 (decimal in 1.2) — 1.1 resolution
- [RUN] a8aaecfe1033 yaml-1.1 > octal 0o755 (both schemas) — 1.2 resolution
- [RUN] 3244a292b90a yaml-1.1 > octal 0o755 (both schemas) — 1.1 resolution
- [RUN] 2a38636e92c2 yaml-1.1 > octal 00 is octal zero in 1.1 — 1.2 resolution
- [RUN] b1abcd962649 yaml-1.1 > octal 00 is octal zero in 1.1 — 1.1 resolution
- [RUN] bb70f74f904e yaml-1.1 > sexagesimal 3:25:45 — 1.2 resolution
- [RUN] 7a38f77a500c yaml-1.1 > sexagesimal 3:25:45 — 1.1 resolution
- [RUN] c0eaef2de530 yaml-1.1 > sexagesimal 1:00 — 1.2 resolution
- [RUN] e182348c77b7 yaml-1.1 > sexagesimal 1:00 — 1.1 resolution
- [RUN] bb6ba3505847 yaml-1.1 > sexagesimal 60:00 — 1.2 resolution
- [RUN] cafb0aa48522 yaml-1.1 > sexagesimal 60:00 — 1.1 resolution
- [RUN] 44916e941b02 yaml-1.1 > sexagesimal float 20:30.15 — 1.2 resolution
- [RUN] f72f5a1e5e59 yaml-1.1 > sexagesimal float 20:30.15 — 1.1 resolution
- [RUN] 7da2245ce1aa yaml-1.1 > sexagesimal float 1:0.0 — 1.2 resolution
- [RUN] 89eb88e75dc6 yaml-1.1 > sexagesimal float 1:0.0 — 1.1 resolution
- [RUN] e5dde40c4243 yaml-1.1 > merge key: simple mapping merge
- [RUN] 766880e18c5e yaml-1.1 > merge key: sequence of mappings
- [RUN] 118b99198d60 yaml-1.1 > merge key: << is plain string in YAML 1.2
- [RUN] 6ca79d9475e4 yaml-1.1 > %YAML 1.1 directive auto-selects 1.1 schema
- [RUN] d7c313ff4815 yaml-1.1 > %YAML 1.2 directive auto-selects 1.2 schema
- [RUN] 21292d95e18d yaml-1.1 > strict_schema: %YAML 1.2 in 1.1 session raises Schema_error
- [RUN] db2ef1c2b4e5 yaml-1.1 > strict_schema: matching directive does not raise
- [RUN] 492e74b86b0e yaml-1.1 > reject_ambiguous: yes raises Schema_error in 1.2 mode
- [RUN] f3c8f5bdb9cd yaml-1.1 > reject_ambiguous: 0755 raises Schema_error in 1.2 mode
- [RUN] 9a198843da68 yaml-1.1 > reject_ambiguous: 3:25:45 raises Schema_error in 1.2 mode
- [RUN] 173ca3221472 yaml-1.1 > reject_ambiguous: << key raises Schema_error in 1.2 mode
- [RUN] 3f818f4ab0bf yaml-1.1 > reject_ambiguous: unambiguous 1.2 values are accepted
- [RUN] e9db0a9c82d0 plain-mode > plain scalar accepted
- [RUN] 08fd8873be67 plain-mode > plain mapping accepted
- [RUN] 2666f6a23392 plain-mode > plain sequence accepted
- [RUN] 748dc916e00e plain-mode > anchor raises Simplicity_error
- [RUN] f49301275acc plain-mode > alias raises Simplicity_error
- [RUN] b8aa6aaf8281 plain-mode > explicit tag raises Simplicity_error
- [RUN] e0bf1df80bcd plain-mode > anchor on sequence raises Simplicity_error
- [RUN] f16d5c92bfc4 plain-mode > anchor on mapping raises Simplicity_error
- [RUN] 9bf232081896 plain-mode > merge key in YAML 1.1 raises Simplicity_error
- [RUN] d037979a13c7 plain-mode > merge key in YAML 1.2 accepted (it is a plain string key)
- [RUN] cfb7898e4dd2 strict-keys > unique keys accepted
- [RUN] 76e6adadcb9a strict-keys > empty mapping accepted
- [RUN] ebcbe54c0a86 strict-keys > duplicate key raises Duplicate_key_error
- [RUN] 25ce0d7bcf33 strict-keys > duplicate key in nested mapping raises
- [RUN] 65ccd2d61d65 strict-keys > duplicate key in YAML 1.1 raises Duplicate_key_error
- [RUN] 8a26bbd804e6 strict-keys > without strict_keys duplicate key is silently deduplicated
- [RUN] 6795950e1e68 cycle > self-referential mapping raises Cycle_error
- [RUN] d1f3671163f3 cycle > self-referential sequence raises Cycle_error
- [RUN] a4cdccfd0ef1 cycle > cycle error reported via of_yaml result
- [RUN] 4cee23d49abc cycle > non-cyclic shared alias resolves fine
- [RUN] 6649081af100 cycle > -f yaml prints cyclic YAML without error
- [RUN] 0f0d4f317588 yaml-test-suite > 229Q: Spec Example 2.4. Sequence of Mappings
- [RUN] 46b53adeee04 yaml-test-suite > 236B: Invalid value after mapping
- [RUN] 1149b627dc40 yaml-test-suite > 26DV: Whitespace around colon in mappings
- [RUN] 5c65342a36be yaml-test-suite > 27NA: Spec Example 5.9. Directive Indicator
- [RUN] 1ea44898ab36 yaml-test-suite > 2CMS: Invalid mapping in plain multiline
- [RUN] 4a926430b919 yaml-test-suite > 2EBW: Allowed characters in keys
- [RUN] a0f4ae7e3e34 yaml-test-suite > 2G84: Literal modifers
- [RUN] 96cdaaf11d56 yaml-test-suite > 2G84 #2
- [RUN] a2f50648c4f5 yaml-test-suite > 2JQS: Block Mapping with Missing Keys
- [RUN] 91812ef4309f yaml-test-suite > 2LFX: Spec Example 6.13. Reserved Directives [1.3]
- [PASS] e182348c77b7 yaml-1.1 > sexagesimal 1:00 — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/e182348c77b7/log
- [RUN] ae8134a04c8a yaml-test-suite > 2SXE: Anchors With Colon in Name
- [PASS] 492e74b86b0e yaml-1.1 > reject_ambiguous: yes raises Schema_error in 1.2 mode
- • Path to captured log: _build/testo/status/yamlx/492e74b86b0e/log
- [RUN] 96ddb45b4a66 yaml-test-suite > 2XXW: Spec Example 2.25. Unordered Sets
- [PASS] db2ef1c2b4e5 yaml-1.1 > strict_schema: matching directive does not raise
- • Path to captured log: _build/testo/status/yamlx/db2ef1c2b4e5/log
- [RUN] 8be9ba2e4c55 yaml-test-suite > 33X3: Three explicit integers in a block sequence
- [PASS] bb70f74f904e yaml-1.1 > sexagesimal 3:25:45 — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/bb70f74f904e/log
- [RUN] 938205720a85 yaml-test-suite > 35KP: Tags for Root Objects
- [PASS] 3244a292b90a yaml-1.1 > octal 0o755 (both schemas) — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/3244a292b90a/log
- [RUN] 7b77bb6d4df7 yaml-test-suite > 36F6: Multiline plain scalar with empty line
- [PASS] 1290158bdecd yaml-1.1 > bool true — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/1290158bdecd/log
- [RUN] 5cb86cb56605 yaml-test-suite > 3ALJ: Block Sequence in Block Sequence
- [PASS] da4bdd5ee88a yaml-1.1 > bool Off — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/da4bdd5ee88a/log
- [RUN] 6c35d8a66964 yaml-test-suite > 3GZX: Spec Example 7.1. Alias Nodes
- [PASS] 21292d95e18d yaml-1.1 > strict_schema: %YAML 1.2 in 1.1 session raises Schema_error
- • Path to captured log: _build/testo/status/yamlx/21292d95e18d/log
- [RUN] f5da0b4231cf yaml-test-suite > 3HFZ: Invalid content after document end marker
- [PASS] 7b77bb6d4df7 yaml-test-suite > 36F6: Multiline plain scalar with empty line
- • Path to captured log: _build/testo/status/yamlx/7b77bb6d4df7/log
- • Time limit: 5 seconds
- [RUN] 63249452387a yaml-test-suite > 3MYT: Plain Scalar looking like key, comment, anchor and tag
- [PASS] a03f30553946 yaml-1.1 > bool ON — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/a03f30553946/log
- [RUN] a66f3d283e06 yaml-test-suite > 3R3P: Single block sequence with anchor
- [PASS] 6c53c14cb3f8 yaml-1.1 > bool no — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/6c53c14cb3f8/log
- [RUN] 2424259048b5 yaml-test-suite > 3RLN: Leading tabs in double quoted
- [PASS] 63249452387a yaml-test-suite > 3MYT: Plain Scalar looking like key, comment, anchor and tag
- • Path to captured log: _build/testo/status/yamlx/63249452387a/log
- • Time limit: 5 seconds
- [RUN] d63249107587 yaml-test-suite > 3UYS: Escaped slash in double quotes
- [PASS] c69a7d144d5b conversion > node → value → node: nested
- • Path to captured log: _build/testo/status/yamlx/c69a7d144d5b/log
- [RUN] 47066870f018 yaml-test-suite > 4ABK: Flow Mapping Separate Values
- [PASS] 2424259048b5 yaml-test-suite > 3RLN: Leading tabs in double quoted
- • Path to captured log: _build/testo/status/yamlx/2424259048b5/log
- • Time limit: 5 seconds
- [RUN] 585e701547ab yaml-test-suite > 4CQQ: Spec Example 2.18. Multi-line Flow Scalars
- [PASS] 6a057481ab9c conversion > node → value → node: block sequence
- • Path to captured log: _build/testo/status/yamlx/6a057481ab9c/log
- [RUN] 97ff9bd6bbb0 yaml-test-suite > 4EJS: Invalid tabs as indendation in a mapping
- [PASS] edd2266e5721 conversion > node → value → node: block mapping
- • Path to captured log: _build/testo/status/yamlx/edd2266e5721/log
- [RUN] b317016e7b39 yaml-test-suite > 4FJ6: Nested implicit complex keys
- [PASS] 9edcc9552829 conversion > node → value → node: float
- • Path to captured log: _build/testo/status/yamlx/9edcc9552829/log
- [RUN] 28cc80739f2a yaml-test-suite > 4GC6: Spec Example 7.7. Single Quoted Characters
- [PASS] 5cb86cb56605 yaml-test-suite > 3ALJ: Block Sequence in Block Sequence
- • Path to captured log: _build/testo/status/yamlx/5cb86cb56605/log
- • Time limit: 5 seconds
- [RUN] b645730a4696 yaml-test-suite > 4H7K: Flow sequence with invalid extra closing bracket
- [PASS] 3f818f4ab0bf yaml-1.1 > reject_ambiguous: unambiguous 1.2 values are accepted
- • Path to captured log: _build/testo/status/yamlx/3f818f4ab0bf/log
- [RUN] dfb01ab95041 yaml-test-suite > 4HVU: Wrong indendation in Sequence
- [PASS] 08fd8873be67 plain-mode > plain mapping accepted
- • Path to captured log: _build/testo/status/yamlx/08fd8873be67/log
- [RUN] 970cae782c54 yaml-test-suite > 4JVG: Scalar value with two anchors
- [PASS] 9a198843da68 yaml-1.1 > reject_ambiguous: 3:25:45 raises Schema_error in 1.2 mode
- • Path to captured log: _build/testo/status/yamlx/9a198843da68/log
- [RUN] 417a4d401901 yaml-test-suite > 4MUZ: Flow mapping colon on line after key
- [PASS] 96ddb45b4a66 yaml-test-suite > 2XXW: Spec Example 2.25. Unordered Sets
- • Path to captured log: _build/testo/status/yamlx/96ddb45b4a66/log
- • Time limit: 5 seconds
- [RUN] 535bbade4f72 yaml-test-suite > 4Q9F: Folded Block Scalar [1.3]
- [PASS] 8be9ba2e4c55 yaml-test-suite > 33X3: Three explicit integers in a block sequence
- • Path to captured log: _build/testo/status/yamlx/8be9ba2e4c55/log
- • Time limit: 5 seconds
- [RUN] 8bd9702aeb6b yaml-test-suite > 4QFQ: Spec Example 8.2. Block Indentation Indicator [1.3]
- [PASS] f5da0b4231cf yaml-test-suite > 3HFZ: Invalid content after document end marker
- • Path to captured log: _build/testo/status/yamlx/f5da0b4231cf/log
- • Time limit: 5 seconds
- [RUN] accb4b43b59c yaml-test-suite > 4UYU: Colon in Double Quoted String
- [PASS] 417a4d401901 yaml-test-suite > 4MUZ: Flow mapping colon on line after key
- • Path to captured log: _build/testo/status/yamlx/417a4d401901/log
- • Time limit: 5 seconds
- [RUN] 90223b851092 yaml-test-suite > 4V8U: Plain scalar with backslashes
- [PASS] 535bbade4f72 yaml-test-suite > 4Q9F: Folded Block Scalar [1.3]
- • Path to captured log: _build/testo/status/yamlx/535bbade4f72/log
- • Time limit: 5 seconds
- [RUN] 3e74d4a1f90e yaml-test-suite > 4WA9: Literal scalars
- [PASS] 970cae782c54 yaml-test-suite > 4JVG: Scalar value with two anchors
- • Path to captured log: _build/testo/status/yamlx/970cae782c54/log
- • Time limit: 5 seconds
- [RUN] 81f681856e1b yaml-test-suite > 4ZYM: Spec Example 6.4. Line Prefixes
- [PASS] 8bd9702aeb6b yaml-test-suite > 4QFQ: Spec Example 8.2. Block Indentation Indicator [1.3]
- • Path to captured log: _build/testo/status/yamlx/8bd9702aeb6b/log
- • Time limit: 5 seconds
- [RUN] dd754b05626a yaml-test-suite > 52DL: Explicit Non-Specific Tag [1.3]
- [PASS] accb4b43b59c yaml-test-suite > 4UYU: Colon in Double Quoted String
- • Path to captured log: _build/testo/status/yamlx/accb4b43b59c/log
- • Time limit: 5 seconds
- [RUN] f4ec6ec40633 yaml-test-suite > 54T7: Flow Mapping
- [PASS] e5dde40c4243 yaml-1.1 > merge key: simple mapping merge
- • Path to captured log: _build/testo/status/yamlx/e5dde40c4243/log
- [RUN] 863357d2a22a yaml-test-suite > 55WF: Invalid escape in double quoted string
- [PASS] 938205720a85 yaml-test-suite > 35KP: Tags for Root Objects
- • Path to captured log: _build/testo/status/yamlx/938205720a85/log
- • Time limit: 5 seconds
- [RUN] 3e16a12caa47 yaml-test-suite > 565N: Construct Binary
- [PASS] 9bf232081896 plain-mode > merge key in YAML 1.1 raises Simplicity_error
- • Path to captured log: _build/testo/status/yamlx/9bf232081896/log
- [RUN] 2b77a25714a7 yaml-test-suite > 57H4: Spec Example 8.22. Block Collection Nodes
- [PASS] 81f681856e1b yaml-test-suite > 4ZYM: Spec Example 6.4. Line Prefixes
- • Path to captured log: _build/testo/status/yamlx/81f681856e1b/log
- • Time limit: 5 seconds
- [RUN] 370c8192f3d9 yaml-test-suite > 58MP: Flow mapping edge cases
- [PASS] dd754b05626a yaml-test-suite > 52DL: Explicit Non-Specific Tag [1.3]
- • Path to captured log: _build/testo/status/yamlx/dd754b05626a/log
- • Time limit: 5 seconds
- [RUN] 7107d1b0392b yaml-test-suite > 5BVJ: Spec Example 5.7. Block Scalar Indicators
- [PASS] 3e16a12caa47 yaml-test-suite > 565N: Construct Binary
- • Path to captured log: _build/testo/status/yamlx/3e16a12caa47/log
- • Time limit: 5 seconds
- [RUN] 6728f18a5825 yaml-test-suite > 5C5M: Spec Example 7.15. Flow Mappings
- [PASS] 2b77a25714a7 yaml-test-suite > 57H4: Spec Example 8.22. Block Collection Nodes
- • Path to captured log: _build/testo/status/yamlx/2b77a25714a7/log
- • Time limit: 5 seconds
- [RUN] d71b19a8153e yaml-test-suite > 5GBF: Spec Example 6.5. Empty Lines
- [PASS] 89eb88e75dc6 yaml-1.1 > sexagesimal float 1:0.0 — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/89eb88e75dc6/log
- [RUN] b698cd22665d yaml-test-suite > 5KJE: Spec Example 7.13. Flow Sequence
- [PASS] f72f5a1e5e59 yaml-1.1 > sexagesimal float 20:30.15 — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/f72f5a1e5e59/log
- [RUN] 19ba73dd560c yaml-test-suite > 5LLU: Block scalar with wrong indented line after spaces only
- [PASS] d037979a13c7 plain-mode > merge key in YAML 1.2 accepted (it is a plain string key)
- • Path to captured log: _build/testo/status/yamlx/d037979a13c7/log
- [RUN] 8921ce011194 yaml-test-suite > 5MUD: Colon and adjacent value on next line
- [PASS] f3c8f5bdb9cd yaml-1.1 > reject_ambiguous: 0755 raises Schema_error in 1.2 mode
- • Path to captured log: _build/testo/status/yamlx/f3c8f5bdb9cd/log
- [RUN] ee06e727efa0 yaml-test-suite > 5NYZ: Spec Example 6.9. Separated Comment
- [PASS] 118b99198d60 yaml-1.1 > merge key: << is plain string in YAML 1.2
- • Path to captured log: _build/testo/status/yamlx/118b99198d60/log
- [RUN] 037f73028084 yaml-test-suite > 5T43: Colon at the beginning of adjacent flow scalar
- [PASS] 6ca79d9475e4 yaml-1.1 > %YAML 1.1 directive auto-selects 1.1 schema
- • Path to captured log: _build/testo/status/yamlx/6ca79d9475e4/log
- [RUN] 275656effc66 yaml-test-suite > 5TRB: Invalid document-start marker in doublequoted tring
- [PASS] d7c313ff4815 yaml-1.1 > %YAML 1.2 directive auto-selects 1.2 schema
- • Path to captured log: _build/testo/status/yamlx/d7c313ff4815/log
- [RUN] 9de4d85bd706 yaml-test-suite > 5TYM: Spec Example 6.21. Local Tag Prefix
- [PASS] d71b19a8153e yaml-test-suite > 5GBF: Spec Example 6.5. Empty Lines
- • Path to captured log: _build/testo/status/yamlx/d71b19a8153e/log
- • Time limit: 5 seconds
- [RUN] 7d90f38e26b6 yaml-test-suite > 5U3A: Sequence on same Line as Mapping Key
- [PASS] ebcbe54c0a86 strict-keys > duplicate key raises Duplicate_key_error
- • Path to captured log: _build/testo/status/yamlx/ebcbe54c0a86/log
- [RUN] ac338d243cf0 yaml-test-suite > 5WE3: Spec Example 8.17. Explicit Block Mapping Entries
- [PASS] f49301275acc plain-mode > alias raises Simplicity_error
- • Path to captured log: _build/testo/status/yamlx/f49301275acc/log
- [RUN] 31c3aad55431 yaml-test-suite > 62EZ: Invalid block mapping key on same line as previous key
- [PASS] e9db0a9c82d0 plain-mode > plain scalar accepted
- • Path to captured log: _build/testo/status/yamlx/e9db0a9c82d0/log
- [RUN] c320caa15355 yaml-test-suite > 652Z: Question mark at start of flow key
- [PASS] dfb01ab95041 yaml-test-suite > 4HVU: Wrong indendation in Sequence
- • Path to captured log: _build/testo/status/yamlx/dfb01ab95041/log
- • Time limit: 5 seconds
- [RUN] 98282cfe914b yaml-test-suite > 65WH: Single Entry Block Sequence
- [PASS] cfb7898e4dd2 strict-keys > unique keys accepted
- • Path to captured log: _build/testo/status/yamlx/cfb7898e4dd2/log
- [RUN] 4964322b3b01 yaml-test-suite > 6BCT: Spec Example 6.3. Separation Spaces
- [PASS] 8921ce011194 yaml-test-suite > 5MUD: Colon and adjacent value on next line
- • Path to captured log: _build/testo/status/yamlx/8921ce011194/log
- • Time limit: 5 seconds
- [RUN] c206154c12f4 yaml-test-suite > 6BFJ: Mapping, key and flow sequence item anchors
- [PASS] ac338d243cf0 yaml-test-suite > 5WE3: Spec Example 8.17. Explicit Block Mapping Entries
- • Path to captured log: _build/testo/status/yamlx/ac338d243cf0/log
- • Time limit: 5 seconds
- [RUN] 2a11cd4e7839 yaml-test-suite > 6CA3: Tab indented top flow
- [PASS] 76e6adadcb9a strict-keys > empty mapping accepted
- • Path to captured log: _build/testo/status/yamlx/76e6adadcb9a/log
- [RUN] 6e0fa3114dff yaml-test-suite > 6CK3: Spec Example 6.26. Tag Shorthands
- [PASS] a4cdccfd0ef1 cycle > cycle error reported via of_yaml result
- • Path to captured log: _build/testo/status/yamlx/a4cdccfd0ef1/log
- [RUN] 13276d8235d5 yaml-test-suite > 6FWR: Block Scalar Keep
- [PASS] 8a26bbd804e6 strict-keys > without strict_keys duplicate key is silently deduplicated
- • Path to captured log: _build/testo/status/yamlx/8a26bbd804e6/log
- [RUN] dcff25973f2d yaml-test-suite > 6H3V: Backslashes in singlequotes
- [PASS] 25ce0d7bcf33 strict-keys > duplicate key in nested mapping raises
- • Path to captured log: _build/testo/status/yamlx/25ce0d7bcf33/log
- [RUN] b667a3672438 yaml-test-suite > 6JQW: Spec Example 2.13. In literals, newlines are preserved
- [PASS] 4cee23d49abc cycle > non-cyclic shared alias resolves fine
- • Path to captured log: _build/testo/status/yamlx/4cee23d49abc/log
- [RUN] c3a31a8318b9 yaml-test-suite > 6JTT: Flow sequence without closing bracket
- [PASS] 13276d8235d5 yaml-test-suite > 6FWR: Block Scalar Keep
- • Path to captured log: _build/testo/status/yamlx/13276d8235d5/log
- • Time limit: 5 seconds
- [RUN] 71de0ab14928 yaml-test-suite > 6JWB: Tags for Block Objects
- [PASS] d1f3671163f3 cycle > self-referential sequence raises Cycle_error
- • Path to captured log: _build/testo/status/yamlx/d1f3671163f3/log
- [RUN] cfd6d727cd5e yaml-test-suite > 6KGN: Anchor for empty node
- [PASS] c3a31a8318b9 yaml-test-suite > 6JTT: Flow sequence without closing bracket
- • Path to captured log: _build/testo/status/yamlx/c3a31a8318b9/log
- • Time limit: 5 seconds
- [RUN] 3a849cfdd33b yaml-test-suite > 6LVF: Spec Example 6.13. Reserved Directives
- [PASS] 71de0ab14928 yaml-test-suite > 6JWB: Tags for Block Objects
- • Path to captured log: _build/testo/status/yamlx/71de0ab14928/log
- • Time limit: 5 seconds
- [RUN] aff951184292 yaml-test-suite > 6M2F: Aliases in Explicit Block Mapping
- [PASS] cfd6d727cd5e yaml-test-suite > 6KGN: Anchor for empty node
- • Path to captured log: _build/testo/status/yamlx/cfd6d727cd5e/log
- • Time limit: 5 seconds
- [RUN] 319feac5e5ad yaml-test-suite > 6PBE: Zero-indented sequences in explicit mapping keys
- [PASS] 6649081af100 cycle > -f yaml prints cyclic YAML without error
- • Path to captured log: _build/testo/status/yamlx/6649081af100/log
- [RUN] 0c60b3ba49ff yaml-test-suite > 6S55: Invalid scalar at the end of sequence
- [PASS] 3a849cfdd33b yaml-test-suite > 6LVF: Spec Example 6.13. Reserved Directives
- • Path to captured log: _build/testo/status/yamlx/3a849cfdd33b/log
- • Time limit: 5 seconds
- [RUN] 40506c348113 yaml-test-suite > 6SLA: Allowed characters in quoted mapping key
- [PASS] aff951184292 yaml-test-suite > 6M2F: Aliases in Explicit Block Mapping
- • Path to captured log: _build/testo/status/yamlx/aff951184292/log
- • Time limit: 5 seconds
- [RUN] d908955aa70b yaml-test-suite > 6VJK: Spec Example 2.15. Folded newlines are preserved for "more indented" and blank lines
- [PASS] 319feac5e5ad yaml-test-suite > 6PBE: Zero-indented sequences in explicit mapping keys
- • Path to captured log: _build/testo/status/yamlx/319feac5e5ad/log
- • Time limit: 5 seconds
- [RUN] c00e51d08852 yaml-test-suite > 6WLZ: Spec Example 6.18. Primary Tag Handle [1.3]
- [PASS] 0c60b3ba49ff yaml-test-suite > 6S55: Invalid scalar at the end of sequence
- • Path to captured log: _build/testo/status/yamlx/0c60b3ba49ff/log
- • Time limit: 5 seconds
- [RUN] 1bb4ef29fa52 yaml-test-suite > 6WPF: Spec Example 6.8. Flow Folding [1.3]
- [PASS] 1149b627dc40 yaml-test-suite > 26DV: Whitespace around colon in mappings
- • Path to captured log: _build/testo/status/yamlx/1149b627dc40/log
- • Time limit: 5 seconds
- [RUN] ed073734acda yaml-test-suite > 6XDY: Two document start markers
- [PASS] 46b53adeee04 yaml-test-suite > 236B: Invalid value after mapping
- • Path to captured log: _build/testo/status/yamlx/46b53adeee04/log
- • Time limit: 5 seconds
- [RUN] ab71bc41b4f5 yaml-test-suite > 6ZKB: Spec Example 9.6. Stream
- [PASS] 0f0d4f317588 yaml-test-suite > 229Q: Spec Example 2.4. Sequence of Mappings
- • Path to captured log: _build/testo/status/yamlx/0f0d4f317588/log
- • Time limit: 5 seconds
- [RUN] 7ecde6edd09e yaml-test-suite > 735Y: Spec Example 8.20. Block Node Types
- [PASS] ed073734acda yaml-test-suite > 6XDY: Two document start markers
- • Path to captured log: _build/testo/status/yamlx/ed073734acda/log
- • Time limit: 5 seconds
- [RUN] 668e45201842 yaml-test-suite > 74H7: Tags in Implicit Mapping
- [PASS] ab71bc41b4f5 yaml-test-suite > 6ZKB: Spec Example 9.6. Stream
- • Path to captured log: _build/testo/status/yamlx/ab71bc41b4f5/log
- • Time limit: 5 seconds
- [RUN] 54b665d04ec1 yaml-test-suite > 753E: Block Scalar Strip [1.3]
- [PASS] 1bb4ef29fa52 yaml-test-suite > 6WPF: Spec Example 6.8. Flow Folding [1.3]
- • Path to captured log: _build/testo/status/yamlx/1bb4ef29fa52/log
- • Time limit: 5 seconds
- [RUN] f65c5413386d yaml-test-suite > 7A4E: Spec Example 7.6. Double Quoted Lines
- [PASS] 7ecde6edd09e yaml-test-suite > 735Y: Spec Example 8.20. Block Node Types
- • Path to captured log: _build/testo/status/yamlx/7ecde6edd09e/log
- • Time limit: 5 seconds
- [RUN] d63ee4940cc8 yaml-test-suite > 7BMT: Node and Mapping Key Anchors [1.3]
- [PASS] 668e45201842 yaml-test-suite > 74H7: Tags in Implicit Mapping
- • Path to captured log: _build/testo/status/yamlx/668e45201842/log
- • Time limit: 5 seconds
- [RUN] 8c0c261b12f5 yaml-test-suite > 7BUB: Spec Example 2.10. Node for “Sammy Sosa” appears twice in this document
- [PASS] 54b665d04ec1 yaml-test-suite > 753E: Block Scalar Strip [1.3]
- • Path to captured log: _build/testo/status/yamlx/54b665d04ec1/log
- • Time limit: 5 seconds
- [RUN] db3ce3feef8d yaml-test-suite > 7FWL: Spec Example 6.24. Verbatim Tags
- [PASS] 1ea44898ab36 yaml-test-suite > 2CMS: Invalid mapping in plain multiline
- • Path to captured log: _build/testo/status/yamlx/1ea44898ab36/log
- • Time limit: 5 seconds
- [RUN] 0bf3c731bda1 yaml-test-suite > 7LBH: Multiline double quoted implicit keys
- [PASS] 8c0c261b12f5 yaml-test-suite > 7BUB: Spec Example 2.10. Node for “Sammy Sosa” appears twice in this document
- • Path to captured log: _build/testo/status/yamlx/8c0c261b12f5/log
- • Time limit: 5 seconds
- [RUN] 4f7460e5f11f yaml-test-suite > 7MNF: Missing colon
- [PASS] a2f50648c4f5 yaml-test-suite > 2JQS: Block Mapping with Missing Keys
- • Path to captured log: _build/testo/status/yamlx/a2f50648c4f5/log
- • Time limit: 5 seconds
- [RUN] ce3066c32e3a yaml-test-suite > 7T8X: Spec Example 8.10. Folded Lines - 8.13. Final Empty Lines
- [PASS] a0f4ae7e3e34 yaml-test-suite > 2G84: Literal modifers
- • Path to captured log: _build/testo/status/yamlx/a0f4ae7e3e34/log
- • Time limit: 5 seconds
- [RUN] ab5adb5f2882 yaml-test-suite > 7TMG: Comment in flow sequence before comma
- [PASS] 91812ef4309f yaml-test-suite > 2LFX: Spec Example 6.13. Reserved Directives [1.3]
- • Path to captured log: _build/testo/status/yamlx/91812ef4309f/log
- • Time limit: 5 seconds
- [RUN] f09fdad1ff7b yaml-test-suite > 7W2P: Block Mapping with Missing Values
- [PASS] 4a926430b919 yaml-test-suite > 2EBW: Allowed characters in keys
- • Path to captured log: _build/testo/status/yamlx/4a926430b919/log
- • Time limit: 5 seconds
- [RUN] 793e1c831f11 yaml-test-suite > 7Z25: Bare document after document end marker
- [PASS] ce3066c32e3a yaml-test-suite > 7T8X: Spec Example 8.10. Folded Lines - 8.13. Final Empty Lines
- • Path to captured log: _build/testo/status/yamlx/ce3066c32e3a/log
- ...TRUNCATED BY DUNE...
- • Time limit: 5 seconds
- [RUN] fc4903b9ae26 yaml-test-suite > YD5X: Spec Example 2.5. Sequence of Sequences
- [PASS] c94633211b1b yaml-test-suite > Y79Y #7
- • Path to captured log: _build/testo/status/yamlx/c94633211b1b/log
- • Time limit: 5 seconds
- [RUN] 32f9bedf82a3 yaml-test-suite > YJV2: Dash in flow sequence
- [PASS] aa440094e718 yaml-test-suite > Y79Y #8
- • Path to captured log: _build/testo/status/yamlx/aa440094e718/log
- • Time limit: 5 seconds
- [RUN] f5b284e17db8 yaml-test-suite > Z67P: Spec Example 8.21. Block Scalar Nodes [1.3]
- [PASS] 87faec77ce2b yaml-test-suite > Y79Y #2
- • Path to captured log: _build/testo/status/yamlx/87faec77ce2b/log
- • Time limit: 5 seconds
- [RUN] 3356dedf430b yaml-test-suite > Z9M4: Spec Example 6.22. Global Tag Prefix
- [PASS] fc4903b9ae26 yaml-test-suite > YD5X: Spec Example 2.5. Sequence of Sequences
- • Path to captured log: _build/testo/status/yamlx/fc4903b9ae26/log
- • Time limit: 5 seconds
- [RUN] 8ddc8a89c42a yaml-test-suite > ZCZ6: Invalid mapping in plain single line value
- [PASS] 32f9bedf82a3 yaml-test-suite > YJV2: Dash in flow sequence
- • Path to captured log: _build/testo/status/yamlx/32f9bedf82a3/log
- • Time limit: 5 seconds
- [RUN] d96b2e3cb985 yaml-test-suite > ZF4X: Spec Example 2.6. Mapping of Mappings
- [PASS] f5b284e17db8 yaml-test-suite > Z67P: Spec Example 8.21. Block Scalar Nodes [1.3]
- • Path to captured log: _build/testo/status/yamlx/f5b284e17db8/log
- • Time limit: 5 seconds
- [RUN] 77e51356b2ad yaml-test-suite > ZH7C: Anchors in Mapping
- [PASS] 8ddc8a89c42a yaml-test-suite > ZCZ6: Invalid mapping in plain single line value
- • Path to captured log: _build/testo/status/yamlx/8ddc8a89c42a/log
- • Time limit: 5 seconds
- [RUN] b4faf366ca66 yaml-test-suite > ZK9H: Nested top level flow mapping
- [PASS] d96b2e3cb985 yaml-test-suite > ZF4X: Spec Example 2.6. Mapping of Mappings
- • Path to captured log: _build/testo/status/yamlx/d96b2e3cb985/log
- • Time limit: 5 seconds
- [RUN] c49fba6427ee yaml-test-suite > ZL4Z: Invalid nested mapping
- [PASS] 3356dedf430b yaml-test-suite > Z9M4: Spec Example 6.22. Global Tag Prefix
- • Path to captured log: _build/testo/status/yamlx/3356dedf430b/log
- • Time limit: 5 seconds
- [RUN] 707bc4c8f127 yaml-test-suite > ZVH3: Wrong indented sequence item
- [PASS] b4faf366ca66 yaml-test-suite > ZK9H: Nested top level flow mapping
- • Path to captured log: _build/testo/status/yamlx/b4faf366ca66/log
- • Time limit: 5 seconds
- [RUN] 4ee8460c436e yaml-test-suite > ZWK4: Key with anchor after missing explicit mapping value
- [PASS] c49fba6427ee yaml-test-suite > ZL4Z: Invalid nested mapping
- • Path to captured log: _build/testo/status/yamlx/c49fba6427ee/log
- • Time limit: 5 seconds
- [RUN] b255e694e7fd yaml-test-suite > ZXT5: Implicit key followed by newline and adjacent value
- [PASS] 77e51356b2ad yaml-test-suite > ZH7C: Anchors in Mapping
- • Path to captured log: _build/testo/status/yamlx/77e51356b2ad/log
- • Time limit: 5 seconds
- [RUN] 0bd07069c358 yaml-test-suite > ZYU8: Directive variants
- [PASS] 4ee8460c436e yaml-test-suite > ZWK4: Key with anchor after missing explicit mapping value
- • Path to captured log: _build/testo/status/yamlx/4ee8460c436e/log
- • Time limit: 5 seconds
- [PASS] b255e694e7fd yaml-test-suite > ZXT5: Implicit key followed by newline and adjacent value
- • Path to captured log: _build/testo/status/yamlx/b255e694e7fd/log
- • Time limit: 5 seconds
- [PASS] 0bd07069c358 yaml-test-suite > ZYU8: Directive variants
- • Path to captured log: _build/testo/status/yamlx/0bd07069c358/log
- • Time limit: 5 seconds
- [PASS] 707bc4c8f127 yaml-test-suite > ZVH3: Wrong indented sequence item
- • Path to captured log: _build/testo/status/yamlx/707bc4c8f127/log
- • Time limit: 5 seconds
- [PASS] fd0e9e1d0237 yaml-test-suite > Q88A: Spec Example 7.23. Flow Content
- • Path to captured log: _build/testo/status/yamlx/fd0e9e1d0237/log
- • Time limit: 5 seconds
- [PASS] 0bf3c731bda1 yaml-test-suite > 7LBH: Multiline double quoted implicit keys
- • Path to captured log: _build/testo/status/yamlx/0bf3c731bda1/log
- • Time limit: 5 seconds
- [PASS] 5c65342a36be yaml-test-suite > 27NA: Spec Example 5.9. Directive Indicator
- • Path to captured log: _build/testo/status/yamlx/5c65342a36be/log
- • Time limit: 5 seconds
- [PASS] 4f7460e5f11f yaml-test-suite > 7MNF: Missing colon
- • Path to captured log: _build/testo/status/yamlx/4f7460e5f11f/log
- • Time limit: 5 seconds
- [PASS] db3ce3feef8d yaml-test-suite > 7FWL: Spec Example 6.24. Verbatim Tags
- • Path to captured log: _build/testo/status/yamlx/db3ce3feef8d/log
- • Time limit: 5 seconds
- [PASS] d63ee4940cc8 yaml-test-suite > 7BMT: Node and Mapping Key Anchors [1.3]
- • Path to captured log: _build/testo/status/yamlx/d63ee4940cc8/log
- • Time limit: 5 seconds
- [PASS] f65c5413386d yaml-test-suite > 7A4E: Spec Example 7.6. Double Quoted Lines
- • Path to captured log: _build/testo/status/yamlx/f65c5413386d/log
- • Time limit: 5 seconds
- [PASS] 40506c348113 yaml-test-suite > 6SLA: Allowed characters in quoted mapping key
- • Path to captured log: _build/testo/status/yamlx/40506c348113/log
- • Time limit: 5 seconds
- [PASS] d908955aa70b yaml-test-suite > 6VJK: Spec Example 2.15. Folded newlines are preserved for "more indented" and blank lines
- • Path to captured log: _build/testo/status/yamlx/d908955aa70b/log
- • Time limit: 5 seconds
- [PASS] c00e51d08852 yaml-test-suite > 6WLZ: Spec Example 6.18. Primary Tag Handle [1.3]
- • Path to captured log: _build/testo/status/yamlx/c00e51d08852/log
- • Time limit: 5 seconds
- [PASS] 6795950e1e68 cycle > self-referential mapping raises Cycle_error
- • Path to captured log: _build/testo/status/yamlx/6795950e1e68/log
- [PASS] dcff25973f2d yaml-test-suite > 6H3V: Backslashes in singlequotes
- • Path to captured log: _build/testo/status/yamlx/dcff25973f2d/log
- • Time limit: 5 seconds
- [PASS] 65ccd2d61d65 strict-keys > duplicate key in YAML 1.1 raises Duplicate_key_error
- • Path to captured log: _build/testo/status/yamlx/65ccd2d61d65/log
- [PASS] b667a3672438 yaml-test-suite > 6JQW: Spec Example 2.13. In literals, newlines are preserved
- • Path to captured log: _build/testo/status/yamlx/b667a3672438/log
- • Time limit: 5 seconds
- [PASS] 2a11cd4e7839 yaml-test-suite > 6CA3: Tab indented top flow
- • Path to captured log: _build/testo/status/yamlx/2a11cd4e7839/log
- • Time limit: 5 seconds
- [PASS] 6e0fa3114dff yaml-test-suite > 6CK3: Spec Example 6.26. Tag Shorthands
- • Path to captured log: _build/testo/status/yamlx/6e0fa3114dff/log
- • Time limit: 5 seconds
- [PASS] 4964322b3b01 yaml-test-suite > 6BCT: Spec Example 6.3. Separation Spaces
- • Path to captured log: _build/testo/status/yamlx/4964322b3b01/log
- • Time limit: 5 seconds
- [PASS] c206154c12f4 yaml-test-suite > 6BFJ: Mapping, key and flow sequence item anchors
- • Path to captured log: _build/testo/status/yamlx/c206154c12f4/log
- • Time limit: 5 seconds
- [PASS] 7d90f38e26b6 yaml-test-suite > 5U3A: Sequence on same Line as Mapping Key
- • Path to captured log: _build/testo/status/yamlx/7d90f38e26b6/log
- • Time limit: 5 seconds
- [PASS] f16d5c92bfc4 plain-mode > anchor on mapping raises Simplicity_error
- • Path to captured log: _build/testo/status/yamlx/f16d5c92bfc4/log
- [PASS] e0bf1df80bcd plain-mode > anchor on sequence raises Simplicity_error
- • Path to captured log: _build/testo/status/yamlx/e0bf1df80bcd/log
- [PASS] b8aa6aaf8281 plain-mode > explicit tag raises Simplicity_error
- • Path to captured log: _build/testo/status/yamlx/b8aa6aaf8281/log
- [PASS] 31c3aad55431 yaml-test-suite > 62EZ: Invalid block mapping key on same line as previous key
- • Path to captured log: _build/testo/status/yamlx/31c3aad55431/log
- • Time limit: 5 seconds
- [PASS] 748dc916e00e plain-mode > anchor raises Simplicity_error
- • Path to captured log: _build/testo/status/yamlx/748dc916e00e/log
- [PASS] 2666f6a23392 plain-mode > plain sequence accepted
- • Path to captured log: _build/testo/status/yamlx/2666f6a23392/log
- [PASS] 370c8192f3d9 yaml-test-suite > 58MP: Flow mapping edge cases
- • Path to captured log: _build/testo/status/yamlx/370c8192f3d9/log
- • Time limit: 5 seconds
- [PASS] c320caa15355 yaml-test-suite > 652Z: Question mark at start of flow key
- • Path to captured log: _build/testo/status/yamlx/c320caa15355/log
- • Time limit: 5 seconds
- [PASS] 98282cfe914b yaml-test-suite > 65WH: Single Entry Block Sequence
- • Path to captured log: _build/testo/status/yamlx/98282cfe914b/log
- • Time limit: 5 seconds
- [PASS] 173ca3221472 yaml-1.1 > reject_ambiguous: << key raises Schema_error in 1.2 mode
- • Path to captured log: _build/testo/status/yamlx/173ca3221472/log
- [PASS] 90223b851092 yaml-test-suite > 4V8U: Plain scalar with backslashes
- • Path to captured log: _build/testo/status/yamlx/90223b851092/log
- • Time limit: 5 seconds
- [PASS] ee06e727efa0 yaml-test-suite > 5NYZ: Spec Example 6.9. Separated Comment
- • Path to captured log: _build/testo/status/yamlx/ee06e727efa0/log
- • Time limit: 5 seconds
- [PASS] 3e74d4a1f90e yaml-test-suite > 4WA9: Literal scalars
- • Path to captured log: _build/testo/status/yamlx/3e74d4a1f90e/log
- • Time limit: 5 seconds
- [PASS] 7107d1b0392b yaml-test-suite > 5BVJ: Spec Example 5.7. Block Scalar Indicators
- • Path to captured log: _build/testo/status/yamlx/7107d1b0392b/log
- • Time limit: 5 seconds
- [PASS] f4ec6ec40633 yaml-test-suite > 54T7: Flow Mapping
- • Path to captured log: _build/testo/status/yamlx/f4ec6ec40633/log
- • Time limit: 5 seconds
- [PASS] 9de4d85bd706 yaml-test-suite > 5TYM: Spec Example 6.21. Local Tag Prefix
- • Path to captured log: _build/testo/status/yamlx/9de4d85bd706/log
- • Time limit: 5 seconds
- [PASS] 275656effc66 yaml-test-suite > 5TRB: Invalid document-start marker in doublequoted tring
- • Path to captured log: _build/testo/status/yamlx/275656effc66/log
- • Time limit: 5 seconds
- [PASS] 037f73028084 yaml-test-suite > 5T43: Colon at the beginning of adjacent flow scalar
- • Path to captured log: _build/testo/status/yamlx/037f73028084/log
- • Time limit: 5 seconds
- [PASS] 766880e18c5e yaml-1.1 > merge key: sequence of mappings
- • Path to captured log: _build/testo/status/yamlx/766880e18c5e/log
- [PASS] 863357d2a22a yaml-test-suite > 55WF: Invalid escape in double quoted string
- • Path to captured log: _build/testo/status/yamlx/863357d2a22a/log
- • Time limit: 5 seconds
- [PASS] b698cd22665d yaml-test-suite > 5KJE: Spec Example 7.13. Flow Sequence
- • Path to captured log: _build/testo/status/yamlx/b698cd22665d/log
- • Time limit: 5 seconds
- [PASS] 7da2245ce1aa yaml-1.1 > sexagesimal float 1:0.0 — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/7da2245ce1aa/log
- [PASS] 19ba73dd560c yaml-test-suite > 5LLU: Block scalar with wrong indented line after spaces only
- • Path to captured log: _build/testo/status/yamlx/19ba73dd560c/log
- • Time limit: 5 seconds
- [PASS] 44916e941b02 yaml-1.1 > sexagesimal float 20:30.15 — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/44916e941b02/log
- [PASS] cafb0aa48522 yaml-1.1 > sexagesimal 60:00 — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/cafb0aa48522/log
- [PASS] bb6ba3505847 yaml-1.1 > sexagesimal 60:00 — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/bb6ba3505847/log
- [PASS] ae8134a04c8a yaml-test-suite > 2SXE: Anchors With Colon in Name
- • Path to captured log: _build/testo/status/yamlx/ae8134a04c8a/log
- • Time limit: 5 seconds
- [PASS] c0eaef2de530 yaml-1.1 > sexagesimal 1:00 — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/c0eaef2de530/log
- [PASS] 7a38f77a500c yaml-1.1 > sexagesimal 3:25:45 — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/7a38f77a500c/log
- [PASS] 6728f18a5825 yaml-test-suite > 5C5M: Spec Example 7.15. Flow Mappings
- • Path to captured log: _build/testo/status/yamlx/6728f18a5825/log
- • Time limit: 5 seconds
- [PASS] b1abcd962649 yaml-1.1 > octal 00 is octal zero in 1.1 — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/b1abcd962649/log
- [PASS] 2a38636e92c2 yaml-1.1 > octal 00 is octal zero in 1.1 — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/2a38636e92c2/log
- [PASS] d63249107587 yaml-test-suite > 3UYS: Escaped slash in double quotes
- • Path to captured log: _build/testo/status/yamlx/d63249107587/log
- • Time limit: 5 seconds
- [PASS] a8aaecfe1033 yaml-1.1 > octal 0o755 (both schemas) — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/a8aaecfe1033/log
- [PASS] 2c390c55a7a7 yaml-1.1 > octal 0755 (decimal in 1.2) — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/2c390c55a7a7/log
- [PASS] a343c88f753a yaml-1.1 > octal 0755 (decimal in 1.2) — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/a343c88f753a/log
- [PASS] 0306802e689c yaml-1.1 > null keyword — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/0306802e689c/log
- [PASS] 9318baa7f786 yaml-1.1 > null keyword — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/9318baa7f786/log
- [PASS] a7647b786348 yaml-1.1 > null ~ — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/a7647b786348/log
- [PASS] e31415965f65 yaml-1.1 > null ~ — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/e31415965f65/log
- [PASS] 1312d28c691d yaml-1.1 > bool false — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/1312d28c691d/log
- [PASS] 0e8ee96da759 yaml-1.1 > bool false — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/0e8ee96da759/log
- [PASS] b645730a4696 yaml-test-suite > 4H7K: Flow sequence with invalid extra closing bracket
- • Path to captured log: _build/testo/status/yamlx/b645730a4696/log
- • Time limit: 5 seconds
- [PASS] 73e070a396fa yaml-1.1 > bool true — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/73e070a396fa/log
- [PASS] 13aac0128af2 yaml-1.1 > bool OFF — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/13aac0128af2/log
- [PASS] 3a8a28ad7e49 yaml-1.1 > bool OFF — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/3a8a28ad7e49/log
- [PASS] 720fe5e9d5f7 yaml-1.1 > bool Off — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/720fe5e9d5f7/log
- [PASS] 6c35d8a66964 yaml-test-suite > 3GZX: Spec Example 7.1. Alias Nodes
- • Path to captured log: _build/testo/status/yamlx/6c35d8a66964/log
- • Time limit: 5 seconds
- [PASS] 23e4c5fbc644 yaml-1.1 > bool off — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/23e4c5fbc644/log
- [PASS] c0faa0d88718 yaml-1.1 > bool off — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/c0faa0d88718/log
- [PASS] cbd1159f1557 yaml-1.1 > bool ON — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/cbd1159f1557/log
- [PASS] a66f3d283e06 yaml-test-suite > 3R3P: Single block sequence with anchor
- • Path to captured log: _build/testo/status/yamlx/a66f3d283e06/log
- • Time limit: 5 seconds
- [PASS] 72533c589d66 yaml-1.1 > bool On — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/72533c589d66/log
- [PASS] bb2f6a4866dc yaml-1.1 > bool On — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/bb2f6a4866dc/log
- [PASS] 5bc469a35036 yaml-1.1 > bool on — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/5bc469a35036/log
- [PASS] f887e4a424e9 yaml-1.1 > bool on — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/f887e4a424e9/log
- [PASS] 585e701547ab yaml-test-suite > 4CQQ: Spec Example 2.18. Multi-line Flow Scalars
- • Path to captured log: _build/testo/status/yamlx/585e701547ab/log
- • Time limit: 5 seconds
- [PASS] a65c604607f9 yaml-1.1 > bool no — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/a65c604607f9/log
- [PASS] b31ebe776de2 yaml-1.1 > bool n — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/b31ebe776de2/log
- [PASS] f776da1ff0d4 yaml-1.1 > bool n — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/f776da1ff0d4/log
- [PASS] 063750ebf0a6 yaml-1.1 > bool YES/NO — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/063750ebf0a6/log
- [PASS] 643dff62e335 yaml-1.1 > bool YES/NO — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/643dff62e335/log
- [PASS] f85d37cba10b yaml-1.1 > bool Yes/No — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/f85d37cba10b/log
- [PASS] 9393a2c0cd47 yaml-1.1 > bool Yes/No — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/9393a2c0cd47/log
- [PASS] a6a2762999cc yaml-1.1 > bool yes/no — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/a6a2762999cc/log
- [PASS] e4cb30c6c9d5 yaml-1.1 > bool yes/no — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/e4cb30c6c9d5/log
- [PASS] 9519c105fe4a yaml-1.1 > bool Y/N — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/9519c105fe4a/log
- [PASS] 91e69f045856 yaml-1.1 > bool Y/N — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/91e69f045856/log
- [PASS] 11e1c00ef142 yaml-1.1 > bool y/n — 1.1 resolution
- • Path to captured log: _build/testo/status/yamlx/11e1c00ef142/log
- [PASS] 229e5dd0bcb1 yaml-1.1 > bool y/n — 1.2 resolution
- • Path to captured log: _build/testo/status/yamlx/229e5dd0bcb1/log
- [PASS] c2d74ed54b94 yaml-1.1 > task 1: << is a plain string key in YAML 1.2
- • Path to captured log: _build/testo/status/yamlx/c2d74ed54b94/log
- [PASS] b2f996f9222c duplicate-keys > regular key overrides merged key in YAML 1.1
- • Path to captured log: _build/testo/status/yamlx/b2f996f9222c/log
- [PASS] 2a4a7a53b225 duplicate-keys > last occurrence wins in YAML 1.1 (regular pairs)
- • Path to captured log: _build/testo/status/yamlx/2a4a7a53b225/log
- [PASS] e3a696ddba77 duplicate-keys > order of surviving keys is preserved
- • Path to captured log: _build/testo/status/yamlx/e3a696ddba77/log
- [PASS] b56f11856c8c duplicate-keys > last occurrence wins in YAML 1.2
- • Path to captured log: _build/testo/status/yamlx/b56f11856c8c/log
- [PASS] 22d247a3fce0 conversion > node → value → node: multi-document
- • Path to captured log: _build/testo/status/yamlx/22d247a3fce0/log
- [PASS] 31c516b9bce2 conversion > node → value → node: alias expanded
- • Path to captured log: _build/testo/status/yamlx/31c516b9bce2/log
- [PASS] 47066870f018 yaml-test-suite > 4ABK: Flow Mapping Separate Values
- • Path to captured log: _build/testo/status/yamlx/47066870f018/log
- • Time limit: 5 seconds
- [PASS] 97ff9bd6bbb0 yaml-test-suite > 4EJS: Invalid tabs as indendation in a mapping
- • Path to captured log: _build/testo/status/yamlx/97ff9bd6bbb0/log
- • Time limit: 5 seconds
- [PASS] b317016e7b39 yaml-test-suite > 4FJ6: Nested implicit complex keys
- • Path to captured log: _build/testo/status/yamlx/b317016e7b39/log
- • Time limit: 5 seconds
- [PASS] 28cc80739f2a yaml-test-suite > 4GC6: Spec Example 7.7. Single Quoted Characters
- • Path to captured log: _build/testo/status/yamlx/28cc80739f2a/log
- • Time limit: 5 seconds
- [PASS] 5258eb0c49db conversion > node → value → node: int
- • Path to captured log: _build/testo/status/yamlx/5258eb0c49db/log
- [PASS] 652ebe5b877a conversion > node → value → node: bool
- • Path to captured log: _build/testo/status/yamlx/652ebe5b877a/log
- [PASS] 331ff00347ff conversion > node → value → node: null
- • Path to captured log: _build/testo/status/yamlx/331ff00347ff/log
- [PASS] 08ae3b88511a conversion > node → value → node: plain scalars
- • Path to captured log: _build/testo/status/yamlx/08ae3b88511a/log
- [PASS] f0f3f5717699 conversion > value → node → value: nested mapping
- • Path to captured log: _build/testo/status/yamlx/f0f3f5717699/log
- [PASS] 28a02ca18d07 conversion > value → node → value: mapping str→int
- • Path to captured log: _build/testo/status/yamlx/28a02ca18d07/log
- [PASS] 5b3a796b79ef conversion > value → node → value: empty mapping
- • Path to captured log: _build/testo/status/yamlx/5b3a796b79ef/log
- [PASS] 7d981b27dd5d conversion > value → node → value: sequence of ints
- • Path to captured log: _build/testo/status/yamlx/7d981b27dd5d/log
- [PASS] c81d8d46ff9e conversion > value → node → value: empty sequence
- • Path to captured log: _build/testo/status/yamlx/c81d8d46ff9e/log
- [PASS] 34a71783c4e4 conversion > value → node → value: string that looks like bool
- • Path to captured log: _build/testo/status/yamlx/34a71783c4e4/log
- [PASS] 1719e6b67e9f conversion > value → node → value: string that looks like null
- • Path to captured log: _build/testo/status/yamlx/1719e6b67e9f/log
- [PASS] 4aee468fd8fe conversion > value → node → value: string that looks like int
- • Path to captured log: _build/testo/status/yamlx/4aee468fd8fe/log
- [PASS] 634743480738 conversion > value → node → value: string with newline
- • Path to captured log: _build/testo/status/yamlx/634743480738/log
- [PASS] 19ecd86c07cb conversion > value → node → value: string empty
- • Path to captured log: _build/testo/status/yamlx/19ecd86c07cb/log
- [PASS] e1a12f982006 conversion > value → node → value: string simple
- • Path to captured log: _build/testo/status/yamlx/e1a12f982006/log
- [PASS] 22cf07e34da9 conversion > value → node → value: float neg inf
- • Path to captured log: _build/testo/status/yamlx/22cf07e34da9/log
- [PASS] 7a77249d63f1 conversion > value → node → value: float inf
- • Path to captured log: _build/testo/status/yamlx/7a77249d63f1/log
- [PASS] 54f51e4317c4 conversion > value → node → value: float nan
- • Path to captured log: _build/testo/status/yamlx/54f51e4317c4/log
- [PASS] d48c52230018 conversion > value → node → value: float
- • Path to captured log: _build/testo/status/yamlx/d48c52230018/log
- [PASS] f8ea908b19ce conversion > value → node → value: int negative
- • Path to captured log: _build/testo/status/yamlx/f8ea908b19ce/log
- [PASS] 746b3ee74c54 conversion > value → node → value: int positive
- • Path to captured log: _build/testo/status/yamlx/746b3ee74c54/log
- [PASS] d1a1700170c6 conversion > value → node → value: int zero
- • Path to captured log: _build/testo/status/yamlx/d1a1700170c6/log
- [PASS] acde6216cf86 conversion > value → node → value: bool false
- • Path to captured log: _build/testo/status/yamlx/acde6216cf86/log
- [PASS] 8808321554ee conversion > value → node → value: bool true
- • Path to captured log: _build/testo/status/yamlx/8808321554ee/log
- [PASS] 3b5d9d255e19 conversion > value → node → value: null
- • Path to captured log: _build/testo/status/yamlx/3b5d9d255e19/log
- [PASS] dd2e5264431e performance > deeply nested flow sequences parse in linear time
- • Path to captured log: _build/testo/status/yamlx/dd2e5264431e/log
- [PASS] 6a3b50c79a9a depth-limit > value_height reflects correct subtree height
- • Path to captured log: _build/testo/status/yamlx/6a3b50c79a9a/log
- [PASS] cc203b5e7cd9 depth-limit > node_height reflects correct subtree height
- • Path to captured log: _build/testo/status/yamlx/cc203b5e7cd9/log
- [PASS] 72c0b200f69b depth-limit > input exactly at the limit is accepted
- • Path to captured log: _build/testo/status/yamlx/72c0b200f69b/log
- [PASS] e74567255302 depth-limit > custom low limit is respected
- • Path to captured log: _build/testo/status/yamlx/e74567255302/log
- [PASS] b17ad451f9b1 depth-limit > depth limit is Error via of_string_result
- • Path to captured log: _build/testo/status/yamlx/b17ad451f9b1/log
- [PASS] ae3442112863 depth-limit > deeply nested input raises Depth_limit_exceeded via of_string
- • Path to captured log: _build/testo/status/yamlx/ae3442112863/log
- [PASS] 68ada09cebdb depth-limit > deeply nested input raises Depth_limit_exceeded via parse_nodes
- • Path to captured log: _build/testo/status/yamlx/68ada09cebdb/log
- [PASS] fba34658ac73 expansion-limit > to_yaml does not expand aliases and ignores limit
- • Path to captured log: _build/testo/status/yamlx/fba34658ac73/log
- [PASS] a2fb448eddc7 expansion-limit > normal aliases within default limit succeed
- • Path to captured log: _build/testo/status/yamlx/a2fb448eddc7/log
- [PASS] 7c30c2053c62 expansion-limit > custom low limit is respected
- • Path to captured log: _build/testo/status/yamlx/7c30c2053c62/log
- [PASS] feb1123e839f expansion-limit > YAML bomb is Error via of_string_result
- • Path to captured log: _build/testo/status/yamlx/feb1123e839f/log
- [PASS] 81cf85b7bea4 expansion-limit > YAML bomb raises Expansion_limit_exceeded via to_plain_yaml
- • Path to captured log: _build/testo/status/yamlx/81cf85b7bea4/log
- [PASS] 0c61d9560715 expansion-limit > YAML bomb raises Expansion_limit_exceeded via of_string
- • Path to captured log: _build/testo/status/yamlx/0c61d9560715/log
- [PASS] 5bc0cf0ac934 printer > multi-document: block collection gets own line after ---
- • Path to captured log: _build/testo/status/yamlx/5bc0cf0ac934/log
- [PASS] f928ede1ab79 printer > multi-document: second gets --- marker
- • Path to captured log: _build/testo/status/yamlx/f928ede1ab79/log
- [PASS] e4eb290e74d3 printer > anchor and alias
- • Path to captured log: _build/testo/status/yamlx/e4eb290e74d3/log
- [PASS] 4d004629c88e printer > mapping in mapping
- • Path to captured log: _build/testo/status/yamlx/4d004629c88e/log
- [PASS] bb804ee5a7da printer > sequence in mapping
- • Path to captured log: _build/testo/status/yamlx/bb804ee5a7da/log
- [PASS] 5abbf9c28c4d printer > empty block sequence
- • Path to captured log: _build/testo/status/yamlx/5abbf9c28c4d/log
- [PASS] 3696d03829ea printer > empty block mapping
- • Path to captured log: _build/testo/status/yamlx/3696d03829ea/log
- [PASS] 03274f7f86fb printer > flow sequence preserved
- • Path to captured log: _build/testo/status/yamlx/03274f7f86fb/log
- [PASS] 0568721029c9 printer > flow mapping preserved
- • Path to captured log: _build/testo/status/yamlx/0568721029c9/log
- [PASS] 750849aa2117 printer > folded block scalar preserved
- • Path to captured log: _build/testo/status/yamlx/750849aa2117/log
- [PASS] 67b22f6ff2cd printer > literal block scalar preserved
- • Path to captured log: _build/testo/status/yamlx/67b22f6ff2cd/log
- [PASS] 5178f2e4eb59 printer > double-quoted scalar preserved
- • Path to captured log: _build/testo/status/yamlx/5178f2e4eb59/log
- [PASS] 30ce69919a36 printer > single-quoted scalar preserved
- • Path to captured log: _build/testo/status/yamlx/30ce69919a36/log
- [PASS] 930f807b1ca7 printer > non-compact: nested block sequence uses dash-newline
- • Path to captured log: _build/testo/status/yamlx/930f807b1ca7/log
- [PASS] 81e5d33e7d9e printer > compact mapping — list of mappings
- • Path to captured log: _build/testo/status/yamlx/81e5d33e7d9e/log
- [PASS] fc4357acebdb printer > compact mapping — flow sequence value preserved
- • Path to captured log: _build/testo/status/yamlx/fc4357acebdb/log
- [PASS] 985e0bd69340 printer > compact mapping — nested block sequence value
- • Path to captured log: _build/testo/status/yamlx/985e0bd69340/log
- [PASS] 0f75693c03a1 printer > compact mapping — nested block mapping value with sibling key
- • Path to captured log: _build/testo/status/yamlx/0f75693c03a1/log
- [PASS] dfdf4db3178e printer > compact mapping — nested block mapping value
- • Path to captured log: _build/testo/status/yamlx/dfdf4db3178e/log
- [PASS] cdaaf936448b printer > compact mapping — multiple keys
- • Path to captured log: _build/testo/status/yamlx/cdaaf936448b/log
- [PASS] 30e260430616 printer > compact mapping — single key
- • Path to captured log: _build/testo/status/yamlx/30e260430616/log
- [PASS] ebc69acc3387 anchors > same anchor name may be reused across documents
- • Path to captured log: _build/testo/status/yamlx/ebc69acc3387/log
- [PASS] 0978fda95be4 anchors > anchor defined in one document is not visible in the next
- • Path to captured log: _build/testo/status/yamlx/0978fda95be4/log
- [PASS] d52569c4a49a comments > inline comment with no space after hash preserved verbatim
- • Path to captured log: _build/testo/status/yamlx/d52569c4a49a/log
- [PASS] 9d8adfb36962 comments > double-hash inline comment preserved verbatim
- • Path to captured log: _build/testo/status/yamlx/9d8adfb36962/log
- [PASS] b6697a5a7f2c comments > comment with no space after hash preserved verbatim
- • Path to captured log: _build/testo/status/yamlx/b6697a5a7f2c/log
- [PASS] 47dcede08cdd comments > double-hash head comment preserved verbatim
- • Path to captured log: _build/testo/status/yamlx/47dcede08cdd/log
- [PASS] 6484dd448c76 comments > comments dropped inside flow collection
- • Path to captured log: _build/testo/status/yamlx/6484dd448c76/log
- [PASS] 1525552e202f comments > comment between sequence items becomes head of next item, not foot of previous
- • Path to captured log: _build/testo/status/yamlx/1525552e202f/log
- [PASS] 10457d167e4a comments > head comment before mapping value on its own line
- • Path to captured log: _build/testo/status/yamlx/10457d167e4a/log
- [PASS] 422d737b1d15 comments > line comment on alias
- • Path to captured log: _build/testo/status/yamlx/422d737b1d15/log
- [PASS] b1399542d428 comments > comment on block scalar header not preserved
- • Path to captured log: _build/testo/status/yamlx/b1399542d428/log
- [PASS] fccecd87fc5a comments > multiple head comments
- • Path to captured log: _build/testo/status/yamlx/fccecd87fc5a/log
- [PASS] 14eac04320fa comments > foot comment after last sequence item
- • Path to captured log: _build/testo/status/yamlx/14eac04320fa/log
- [PASS] 34c14d15e788 comments > head comment before sequence item
- • Path to captured log: _build/testo/status/yamlx/34c14d15e788/log
- [PASS] 019f78432446 comments > line comment on scalar value
- • Path to captured log: _build/testo/status/yamlx/019f78432446/log
- [PASS] fd70e558c961 comments > head comment on document
- • Path to captured log: _build/testo/status/yamlx/fd70e558c961/log
- [PASS] 5fbfbcde6b7d roundtrip > empty sequence (values)
- • Path to captured log: _build/testo/status/yamlx/5fbfbcde6b7d/log
- [PASS] 7816bd49feaa roundtrip > empty sequence (idempotent)
- • Path to captured log: _build/testo/status/yamlx/7816bd49feaa/log
- [PASS] 3cb971213a94 roundtrip > empty mapping (values)
- • Path to captured log: _build/testo/status/yamlx/3cb971213a94/log
- [PASS] c008ebc54cb9 roundtrip > empty mapping (idempotent)
- • Path to captured log: _build/testo/status/yamlx/c008ebc54cb9/log
- [PASS] 0572ce02695f roundtrip > explicit document start (values)
- • Path to captured log: _build/testo/status/yamlx/0572ce02695f/log
- [PASS] 53022391a5f2 roundtrip > explicit document start (idempotent)
- • Path to captured log: _build/testo/status/yamlx/53022391a5f2/log
- [PASS] efe8716e80c3 roundtrip > multi-document (values)
- • Path to captured log: _build/testo/status/yamlx/efe8716e80c3/log
- [PASS] 91640288da33 roundtrip > multi-document (idempotent)
- • Path to captured log: _build/testo/status/yamlx/91640288da33/log
- [PASS] f55078af58fb roundtrip > anchor and alias (values)
- • Path to captured log: _build/testo/status/yamlx/f55078af58fb/log
- [PASS] d8e15d59491b roundtrip > anchor and alias (idempotent)
- • Path to captured log: _build/testo/status/yamlx/d8e15d59491b/log
- [PASS] bf3cafaa51d5 roundtrip > flow sequence (values)
- • Path to captured log: _build/testo/status/yamlx/bf3cafaa51d5/log
- [PASS] f3edbb625470 roundtrip > flow sequence (idempotent)
- • Path to captured log: _build/testo/status/yamlx/f3edbb625470/log
- [PASS] 1eec086f87f4 roundtrip > flow mapping (values)
- • Path to captured log: _build/testo/status/yamlx/1eec086f87f4/log
- [PASS] 020f2a7c3bbc roundtrip > flow mapping (idempotent)
- • Path to captured log: _build/testo/status/yamlx/020f2a7c3bbc/log
- [PASS] caef286570ec roundtrip > mapping in sequence (values)
- • Path to captured log: _build/testo/status/yamlx/caef286570ec/log
- [PASS] 382ada03c177 roundtrip > mapping in sequence (idempotent)
- • Path to captured log: _build/testo/status/yamlx/382ada03c177/log
- [PASS] a4058648eba9 roundtrip > sequence in mapping (values)
- • Path to captured log: _build/testo/status/yamlx/a4058648eba9/log
- [PASS] 5c13bc488bfb roundtrip > sequence in mapping (idempotent)
- • Path to captured log: _build/testo/status/yamlx/5c13bc488bfb/log
- [PASS] e3fa2d415cf1 roundtrip > nested block sequence (values)
- • Path to captured log: _build/testo/status/yamlx/e3fa2d415cf1/log
- [PASS] ba95305ea3e7 roundtrip > nested block sequence (idempotent)
- • Path to captured log: _build/testo/status/yamlx/ba95305ea3e7/log
- [PASS] a252faced375 roundtrip > block sequence (values)
- • Path to captured log: _build/testo/status/yamlx/a252faced375/log
- [PASS] e06ab99d1eae roundtrip > block sequence (idempotent)
- • Path to captured log: _build/testo/status/yamlx/e06ab99d1eae/log
- [PASS] 23972e370a91 roundtrip > nested block mapping (values)
- • Path to captured log: _build/testo/status/yamlx/23972e370a91/log
- [PASS] a188d3edf778 roundtrip > nested block mapping (idempotent)
- • Path to captured log: _build/testo/status/yamlx/a188d3edf778/log
- [PASS] 6d0b80dfb31d roundtrip > block mapping (values)
- • Path to captured log: _build/testo/status/yamlx/6d0b80dfb31d/log
- [PASS] 11c48d7d40b4 roundtrip > block mapping (idempotent)
- • Path to captured log: _build/testo/status/yamlx/11c48d7d40b4/log
- [PASS] 0605354872c4 roundtrip > folded block scalar (values)
- • Path to captured log: _build/testo/status/yamlx/0605354872c4/log
- [PASS] 85686604e0eb roundtrip > folded block scalar (idempotent)
- • Path to captured log: _build/testo/status/yamlx/85686604e0eb/log
- [PASS] 3e371648a934 roundtrip > literal block scalar keep (values)
- • Path to captured log: _build/testo/status/yamlx/3e371648a934/log
- [PASS] fc75f2f47ef1 roundtrip > literal block scalar keep (idempotent)
- • Path to captured log: _build/testo/status/yamlx/fc75f2f47ef1/log
- [PASS] 11818e634ee9 roundtrip > literal block scalar strip (values)
- • Path to captured log: _build/testo/status/yamlx/11818e634ee9/log
- [PASS] 34b7b9e5e8d4 roundtrip > literal block scalar strip (idempotent)
- • Path to captured log: _build/testo/status/yamlx/34b7b9e5e8d4/log
- [PASS] dc81615fe6bd roundtrip > literal block scalar (values)
- • Path to captured log: _build/testo/status/yamlx/dc81615fe6bd/log
- [PASS] 54c17603b83b roundtrip > literal block scalar (idempotent)
- • Path to captured log: _build/testo/status/yamlx/54c17603b83b/log
- [PASS] 8a6284661e7c roundtrip > double-quoted with escapes (values)
- • Path to captured log: _build/testo/status/yamlx/8a6284661e7c/log
- [PASS] 980a665eeeaf roundtrip > double-quoted with escapes (idempotent)
- • Path to captured log: _build/testo/status/yamlx/980a665eeeaf/log
- [PASS] b71ef298739b roundtrip > double-quoted scalar (values)
- • Path to captured log: _build/testo/status/yamlx/b71ef298739b/log
- [PASS] f98774bd5607 roundtrip > double-quoted scalar (idempotent)
- • Path to captured log: _build/testo/status/yamlx/f98774bd5607/log
- [PASS] 88f668f417ea roundtrip > single-quoted scalar (values)
- • Path to captured log: _build/testo/status/yamlx/88f668f417ea/log
- [PASS] c9c9f7d73d09 roundtrip > single-quoted scalar (idempotent)
- • Path to captured log: _build/testo/status/yamlx/c9c9f7d73d09/log
- [PASS] adddfe02027b roundtrip > plain scalar null (values)
- • Path to captured log: _build/testo/status/yamlx/adddfe02027b/log
- [PASS] 710045fc3681 roundtrip > plain scalar null (idempotent)
- • Path to captured log: _build/testo/status/yamlx/710045fc3681/log
- [PASS] 4b5effe9e988 roundtrip > plain scalar int (values)
- • Path to captured log: _build/testo/status/yamlx/4b5effe9e988/log
- [PASS] 19ec18765829 roundtrip > plain scalar int (idempotent)
- • Path to captured log: _build/testo/status/yamlx/19ec18765829/log
- [PASS] e23911126ce7 roundtrip > plain scalar (values)
- • Path to captured log: _build/testo/status/yamlx/e23911126ce7/log
- [PASS] b570172df6ab roundtrip > plain scalar (idempotent)
- • Path to captured log: _build/testo/status/yamlx/b570172df6ab/log
- [PASS] 78ea6e2537d9 encoding > valid \UXXXXXXXX emoji parses correctly
- • Path to captured log: _build/testo/status/yamlx/78ea6e2537d9/log
- [PASS] bdcf8a96f256 encoding > \UXXXXXXXX out of Unicode range raises Scan_error
- • Path to captured log: _build/testo/status/yamlx/bdcf8a96f256/log
- [PASS] 105b618df7d3 encoding > non-hex digit in \xXX escape raises Scan_error
- • Path to captured log: _build/testo/status/yamlx/105b618df7d3/log
- [PASS] 2e3151109a2c encoding > non-hex digit in \uXXXX escape raises Scan_error
- • Path to captured log: _build/testo/status/yamlx/2e3151109a2c/log
- [PASS] 484a480b029c encoding > truncated 4-byte UTF-8 sequence raises Scan_error
- • Path to captured log: _build/testo/status/yamlx/484a480b029c/log
- [PASS] cab45a6b5c19 encoding > truncated 2-byte UTF-8 sequence raises Scan_error
- • Path to captured log: _build/testo/status/yamlx/cab45a6b5c19/log
- [PASS] 693d5cb6b3fa encoding > invalid UTF-8 byte raises Scan_error
- • Path to captured log: _build/testo/status/yamlx/693d5cb6b3fa/log
- [PASS] 7c0bfddb42b9 encoding > PS (U+2029) line endings normalized to LF
- • Path to captured log: _build/testo/status/yamlx/7c0bfddb42b9/log
- [PASS] c10bf242e1aa encoding > LS (U+2028) line endings normalized to LF
- • Path to captured log: _build/testo/status/yamlx/c10bf242e1aa/log
- [PASS] 9ebae337a536 encoding > NEL (U+0085) line endings normalized to LF
- • Path to captured log: _build/testo/status/yamlx/9ebae337a536/log
- [PASS] 7332629ea1b5 encoding > bare CR line endings normalized to LF
- • Path to captured log: _build/testo/status/yamlx/7332629ea1b5/log
- [PASS] a738437abc26 encoding > CRLF line endings normalized to LF
- • Path to captured log: _build/testo/status/yamlx/a738437abc26/log
- [PASS] f8a2f7a75c10 encoding > UTF-8 BOM accepted
- • Path to captured log: _build/testo/status/yamlx/f8a2f7a75c10/log
- [PASS] 50a3527ae9ed encoding > UTF-16 LE BOM rejected
- • Path to captured log: _build/testo/status/yamlx/50a3527ae9ed/log
- [PASS] 43fa8ea444e1 encoding > UTF-16 BE BOM rejected
- • Path to captured log: _build/testo/status/yamlx/43fa8ea444e1/log
- [PASS] 70883bbba492 encoding > UTF-32 LE BOM rejected
- • Path to captured log: _build/testo/status/yamlx/70883bbba492/log
- [PASS] 972dedce26ee encoding > UTF-32 BE BOM rejected
- • Path to captured log: _build/testo/status/yamlx/972dedce26ee/log
- [PASS] 2f8d602d2eb4 resolver string (quoted)
- • Path to captured log: _build/testo/status/yamlx/2f8d602d2eb4/log
- [PASS] f8cebb56f549 resolver float
- • Path to captured log: _build/testo/status/yamlx/f8cebb56f549/log
- [PASS] 1600e4f4cf90 resolver int
- • Path to captured log: _build/testo/status/yamlx/1600e4f4cf90/log
- [PASS] 0b719e46e640 resolver bool true
- • Path to captured log: _build/testo/status/yamlx/0b719e46e640/log
- [PASS] d3ed31c01406 resolver null
- • Path to captured log: _build/testo/status/yamlx/d3ed31c01406/log
- [PASS] 78f6d37c89b4 explicit document
- • Path to captured log: _build/testo/status/yamlx/78f6d37c89b4/log
- [PASS] cf707238aa12 anchor and alias
- • Path to captured log: _build/testo/status/yamlx/cf707238aa12/log
- [PASS] a94f735915a5 single-quoted scalar
- • Path to captured log: _build/testo/status/yamlx/a94f735915a5/log
- [PASS] 6eec10cd414a double-quoted scalar
- • Path to captured log: _build/testo/status/yamlx/6eec10cd414a/log
- [PASS] e2e109d4012b simple sequence
- • Path to captured log: _build/testo/status/yamlx/e2e109d4012b/log
- [PASS] fbc545840d9e simple mapping
- • Path to captured log: _build/testo/status/yamlx/fbc545840d9e/log
- [PASS] 5eabbddbf628 plain scalar
- • Path to captured log: _build/testo/status/yamlx/5eabbddbf628/log
- [PASS] 8bf2af509de7 empty stream
- • Path to captured log: _build/testo/status/yamlx/8bf2af509de7/log
- 604/604 selected tests:
- 604 successful (604 pass, 0 xfail)
- 0 unsuccessful (0 fail, 0 xpass)
- overall status: success
-> compiled yamlx.0.1.0
-> removed yamlx.0.1.0
-> installed yamlx.0.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 00:40.11 ---> saved as "595ebdd9c86523ca6f458e6da42c82a83b16af340c10e9fd41fd2104a48638dc"
Job succeeded
2026-04-11 00:40.25: Job succeeded