Build:
- 0
2025-09-18 12:21.26: New job: test octez-l2-libs.19.1 with re.1.14.0, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/28544/head (8165ebc987d9de35b2fdba552fd80e37f5bd842d) on debian-13-ocaml-4.14/amd64 To reproduce locally: cd $(mktemp -d) git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28544/head" && git reset --hard 8165ebc9 git fetch origin master git merge --no-edit 151ffce963e54519dd5d1280848f631d38db358e cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc 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 re.1.14.0 1.14.0 RUN opam reinstall re.1.14.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" != 're.1.14.0' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 RUN opam reinstall octez-l2-libs.19.1; \ 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" != 'octez-l2-libs.19.1' && 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 octez-l2-libs.19.1) || true RUN opam reinstall --with-test --verbose octez-l2-libs.19.1; \ 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" != 'octez-l2-libs.19.1' && 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 . 2025-09-18 12:21.26: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc-re.1.14.0-octez-l2-libs.19.1-8165ebc987d9de35b2fdba552fd80e37f5bd842d" 2025-09-18 12:21.26: Using OBuilder spec: ((from ocaml/opam:debian-13-ocaml-4.14@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc) (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 re.1.14.0 1.14.0")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall re.1.14.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\" != 're.1.14.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall octez-l2-libs.19.1;\ \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\" != 'octez-l2-libs.19.1' && 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 octez-l2-libs.19.1) || true")) (run (shell "opam reinstall --with-test --verbose octez-l2-libs.19.1;\ \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\" != 'octez-l2-libs.19.1' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) ) 2025-09-18 12:21.26: Waiting for resource in pool OCluster 2025-09-18 13:37.55: Waiting for worker… 2025-09-18 13:54.02: Got resource from pool OCluster Building on asteria.caelum.ci.dev All commits already cached HEAD is now at 151ffce963 Merge pull request #28412 from andersfugmann/release-ocaml-protoc-plugin-6.2.0 Updating 151ffce963..8165ebc987 Fast-forward packages/re/re.1.14.0/opam | 54 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 packages/re/re.1.14.0/opam (from ocaml/opam:debian-13-ocaml-4.14@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc) 2025-09-18 13:54.03 ---> using "f2c15438f4e8107ac42e1adfbd29c5c483ff0e5aaf05ff1291b0b30470c339be" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) 2025-09-18 13:54.03 ---> using "8e4815ff6b482deb2badd55f707e4331a2daf52d1f97e062604f979853124597" 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 2025-09-18 13:54.03 ---> using "0309994c25db3359b71c182dd526d9cd4b87f08f6fd345755107482f61709ee3" 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.4.1 # self-upgrade no # system arch=x86_64 os=linux os-distribution=debian os-version=13 # solver builtin-0install # install-criteria -changed,-count[avoid-version,solution] # upgrade-criteria -count[avoid-version,solution] # jobs 255 # repositories 1 (version-controlled) # pinned 1 (version) # current-switch 4.14 # invariant ["ocaml-base-compiler" {= "4.14.2"}] # compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1 # ocaml:native true # ocaml:native-tools true # ocaml:native-dynlink true # ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml # ocaml:preinstalled false # ocaml:compiler 4.14.2 2025-09-18 13:54.03 ---> using "01960dce876bd083c0e115ca8b857f355a6f4a5b1589bc70acef12378d72e36e" 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/")) 2025-09-18 13:54.03 ---> using "88d8ec224acefa159471a25872197bf5efdd28e8b95159888107feac1f31a583" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2025-09-18 13:54.04 ---> using "2daa40f8cb706c5ad638d9f505ce5440193f9c6caab6f7a1374dce811b359b23" from cache /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-09-18 13:54.04 ---> using "c7e4a8d501560eb3ca7fc845c078f1e10620c9e07b60e1684df8a29206dc874f" 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 [40.4 kB] - Fetched 131 kB in 0s (1361 kB/s) - Reading package lists... 2025-09-18 13:54.04 ---> using "bf0d21ec1484e3c2798ebb3f62e67a8d7cca2892927fadac2a00726789e47b1e" from cache /home/opam: (run (shell "opam pin add -k version -yn re.1.14.0 1.14.0")) re is now pinned to version 1.14.0 2025-09-18 13:54.04 ---> using "3e93ff8b91dae5836d1785da64da20f4001f9fc3eeded7d2071cf7741852d20e" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall re.1.14.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\" != 're.1.14.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) re.1.14.0 is not installed. Install it? [Y/n] y The following actions will be performed: === install 2 packages - install dune 3.20.2 [required by re] - install re 1.14.0 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved dune.3.20.2 (cached) -> retrieved re.1.14.0 (cached) -> installed dune.3.20.2 -> installed re.1.14.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-09-18 13:54.04 ---> using "3bdffe64ac10ca97ac896c7a816dde89b5172193da7b76c72d478fa5566dafe0" from cache /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall octez-l2-libs.19.1;\ \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\" != 'octez-l2-libs.19.1' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) octez-l2-libs.19.1 is not installed. Install it? [Y/n] y The following actions will be performed: === install 158 packages - install aches 1.1.0 [required by aches-lwt, octez-libs] - install aches-lwt 1.1.0 [required by octez-l2-libs] - install alcotest 1.9.0 [required by octez-libs] - install angstrom 0.16.1 [required by uri] - install asn1-combinators 0.2.6 [required by x509] - install astring 0.8.5 [required by irmin] - install base v0.16.4 [required by ppx_hash, ppx_expect] - install base-bytes base [required by ocplib-endian, bigstring] - install base64 3.5.1 [required by repr] - install bheap 2.0.0 [required by irmin] - install bigarray-compat 1.1.0 [required by ctypes, octez-libs] - install bigstring 0.3 [required by secp256k1-internal] - install bigstringaf 0.10.0 [required by irmin, octez-libs] - install bls12-381 19.1 [required by octez-libs] - install bos 0.2.1 [required by yaml] - install ca-certs 0.2.3 [required by conduit-lwt-unix] - install checkseum 0.5.2 [required by irmin-pack] - install clap 0.3.0 [required by tezt] - install cmdliner 1.3.0 [required by irmin-pack, index, octez-libs] - install cohttp 5.3.1 [required by cohttp-lwt] - install cohttp-lwt 5.3.0 [required by resto-cohttp, cohttp-lwt-unix, resto-cohttp-client] - install cohttp-lwt-unix 5.3.0 [required by octez-libs] - install conduit 8.0.0 [required by conduit-lwt] - install conduit-lwt 8.0.0 [required by cohttp-lwt-unix] - install conduit-lwt-unix 8.0.0 [required by cohttp-lwt-unix, resto-cohttp-server] - install conf-cmake 1 [required by hacl-star-raw] - install conf-gmp 5 [required by zarith, secp256k1-internal] - install conf-gmp-powm-sec 4 [required by mirage-crypto-pk] - install conf-libev 4-13 [required by octez-libs] - install conf-libffi 2.0.0 [required by ctypes-foreign] - install conf-pkg-config 4 [required by ctypes-foreign] - install conf-rust 0.1 [required by octez-libs] - install conf-rust-2021 1 [required by tezos-rust-libs] - install conf-which 1 [required by hacl-star-raw] - install cppo 1.8.0 [required by lwt, hacl-star] - install csexp 1.5.2 [required by dune-configurator] - install cstruct 6.2.0 [required by secp256k1-internal] - install ctypes 0.23.0 [required by octez-l2-libs] - install ctypes-foreign 0.23.0 [required by octez-l2-libs] - install ctypes_stubs_js 0.1 [required by octez-libs] - install data-encoding 0.7.1 [required by octez-l2-libs] - install digestif 1.3.0 [required by irmin] - install domain-name 0.4.1 [required by ipaddr, x509] - install dune-configurator 3.20.2 [required by ctypes-foreign, ctypes, yaml] - install duration 0.2.1 [required by mirage-crypto-rng] - install either 1.0.0 [required by data-encoding] - install eqaf 0.9 [required by octez-libs] - install ezjsonm 1.3.0 [required by data-encoding, octez-libs] - install fmt 0.11.0 [required by irmin-pack, index, irmin, octez-libs] - install fpath 0.7.3 [required by ca-certs] - install gen 1.1 [required by sedlex] - install gmap 0.3.0 [required by x509] - install hacl-star 0.7.2 [required by octez-libs] - install hacl-star-raw 0.7.2 [required by octez-libs] - install hex 1.5.0 [required by data-encoding, octez-libs] - install index 1.6.0 [required by octez-l2-libs] - install integers 0.7.0 [required by ctypes, octez-libs] - install integers_stubs_js 1.0 [required by octez-libs] - install ipaddr 5.6.1 [required by octez-libs] - install ipaddr-sexp 5.6.1 [required by conduit-lwt-unix] - install irmin 3.7.2 [required by octez-l2-libs] - install irmin-pack 3.7.2 [required by octez-l2-libs] - install jane-street-headers v0.16.0 [required by time_now] - install js_of_ocaml 6.2.0 [required by tezt] - install js_of_ocaml-compiler 6.2.0 [required by logs] - install json-data-encoding 0.12.1 [required by data-encoding] - install json-data-encoding-bson 0.12.1 [required by data-encoding] - install jsonm 1.0.2 [required by index, irmin] - install jst-config v0.16.0 [required by time_now] - install logs 0.9.0 [required by irmin-pack, index, irmin, octez-libs] - install lru 0.3.1 [required by index] - install lwt 5.9.2 [required by octez-l2-libs] - install lwt-canceler 0.3 [required by octez-libs] - install lwt-watcher 0.2 [required by octez-libs] - install macaddr 5.6.1 [required by ipaddr] - install magic-mime 1.3.1 [required by cohttp-lwt-unix] - install menhir 20250912 [required by js_of_ocaml-compiler] - install menhirCST 20250912 [required by menhir] - install menhirLib 20250912 [required by js_of_ocaml-compiler] - install menhirSdk 20250912 [required by js_of_ocaml-compiler] - install mirage-crypto 0.11.3 [required by ca-certs] - install mirage-crypto-ec 0.11.3 [required by x509] - install mirage-crypto-pk 0.11.3 [required by x509] - install mirage-crypto-rng 0.11.3 [required by x509] - install mtime 1.4.0 [required by irmin-pack, index, irmin, octez-libs] - install ocaml-compiler-libs v0.12.4 [required by ppxlib] - install ocaml-syntax-shims 1.0.0 [required by alcotest] - install ocamlbuild 0.16.1 [required by mtime, logs, astring] - install ocamlfind 1.9.8 [required by mtime, zarith, logs, astring] - install ocamlgraph 2.2.0 [required by irmin] - install ocplib-endian 1.2 [required by lwt, json-data-encoding-bson] - install octez-alcotezt 19.1 [required by octez-l2-libs] - install octez-distributed-internal 19.1 [required by octez-distributed-lwt-internal] - install octez-distributed-lwt-internal 19.1 [required by octez-libs] - install octez-l2-libs 19.1 - install octez-libs 19.1 [required by octez-l2-libs] - install optint 0.3.0 [required by index, irmin-pack] - install pbkdf 1.2.0 [required by x509] - install ppx_assert v0.16.0 [required by jst-config] - install ppx_base v0.16.0 [required by time_now] - install ppx_cold v0.16.0 [required by ppx_base] - install ppx_compare v0.16.0 [required by ppx_hash] - install ppx_derivers 1.2.1 [required by ppx_deriving] - install ppx_deriving 6.0.3 [required by octez-l2-libs] - install ppx_enumerate v0.16.0 [required by ppx_base] - install ppx_expect v0.16.1 [required by octez-libs] - install ppx_globalize v0.16.0 [required by ppx_base] - install ppx_hash v0.16.0 [required by data-encoding] - install ppx_here v0.16.0 [required by ppx_expect] - install ppx_import 1.11.0 [required by octez-l2-libs] - install ppx_inline_test v0.16.1 [required by ppx_expect] - install ppx_irmin 3.7.2 [required by irmin, irmin-pack] - install ppx_optcomp v0.16.0 [required by time_now] - install ppx_repr 0.7.0 [required by index, octez-libs] - install ppx_sexp_conv v0.16.0 [required by ppx_hash, cohttp-lwt-unix] - install ppxlib 0.35.0 [required by ppx_import] - install progress 0.2.1 [required by index] - install psq 0.2.1 [required by lru] - install ptime 1.2.0 [required by octez-libs] - install pure-splitmix 0.3 [required by octez-libs] - install qcheck-alcotest 0.26 [required by octez-l2-libs] - install qcheck-core 0.26 [required by qcheck-alcotest] - install repr 0.7.0 [required by irmin, index, octez-libs] - install resto 1.2 [required by octez-libs] - install resto-acl 1.2 [required by octez-libs] - install resto-cohttp 1.2 [required by octez-libs] - install resto-cohttp-client 1.2 [required by octez-libs] - install resto-cohttp-server 1.2 [required by octez-libs] - install resto-directory 1.2 [required by octez-libs] - install ringo 1.1.0 [required by octez-libs] - install rresult 0.7.0 [required by bos] - install rusage 1.0.0 [required by irmin-pack] - install secp256k1-internal 0.4.0 [required by octez-libs] - install sedlex 3.6 [required by js_of_ocaml-compiler] - install semaphore-compat 1.0.2 [required by index] - install seq base [required by psq] - install seqes 0.4 [required by octez-libs] - install sexplib0 v0.16.0 [required by ezjsonm] - install stdint 0.7.2 [required by octez-libs] - install stdio v0.16.0 [required by ppx_expect] - install stdlib-shims 0.3.0 [required by index] - install stringext 1.6.0 [required by uri] - install terminal 0.2.1 [required by progress] - install tezos-rust-libs 1.6 [required by octez-l2-libs] - install tezos-sapling-parameters 1.1.0 [required by octez-libs] - install tezt 4.2.0 [required by octez-l2-libs] - install time_now v0.16.0 [required by ppx_inline_test] - install topkg 1.1.0 [required by mtime, logs, astring] - install uri 4.4.0 [required by irmin, octez-libs] - install uri-sexp 4.4.0 [required by cohttp] - install uucp 17.0.0 [required by progress] - install uutf 1.0.4 [required by irmin, octez-libs] - install vector 1.0.0 [required by progress] - install x509 0.16.5 [required by ca-certs] - install yaml 3.2.0 [required by octez-l2-libs] - install yojson 3.0.0 [required by js_of_ocaml-compiler] - install zarith 1.12 [required by octez-l2-libs] - install zarith_stubs_js v0.16.1 [required by data-encoding, octez-libs] The following system packages will first need to be installed: cargo cmake libev-dev libffi-dev libgmp-dev pkg-config <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> opam believes some required external dependencies are missing. opam can: > 1. Run apt-get to install them (may need root/sudo access) 2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal) 3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable 4. Abort the installation [1/2/3/4] 1 + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "cargo" "cmake" "libev-dev" "libffi-dev" "libgmp-dev" "pkg-config" - Selecting previously unselected package libpipeline1:amd64. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 20622 files and directories currently installed.) - Preparing to unpack .../libpipeline1_1.5.8-1_amd64.deb ... - Unpacking libpipeline1:amd64 (1.5.8-1) ... - Selecting previously unselected package binfmt-support. - Preparing to unpack .../binfmt-support_2.2.2-7_amd64.deb ... - Unpacking binfmt-support (2.2.2-7) ... - Selecting previously unselected package libpython3.13-minimal:amd64. - Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ... - Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ... - Selecting previously unselected package python3.13-minimal. - Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ... - Unpacking python3.13-minimal (3.13.5-2) ... - Setting up libpython3.13-minimal:amd64 (3.13.5-2) ... - Setting up python3.13-minimal (3.13.5-2) ... - Selecting previously unselected package python3-minimal. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 20969 files and directories currently installed.) - Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ... - Unpacking python3-minimal (3.13.5-1) ... - Selecting previously unselected package media-types. - Preparing to unpack .../1-media-types_13.0.0_all.deb ... - Unpacking media-types (13.0.0) ... - Selecting previously unselected package readline-common. - Preparing to unpack .../2-readline-common_8.2-6_all.deb ... - Unpacking readline-common (8.2-6) ... - Selecting previously unselected package libreadline8t64:amd64. - Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ... - Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64' - Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64' - Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64' - Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64' - Unpacking libreadline8t64:amd64 (8.2-6) ... - Selecting previously unselected package libpython3.13-stdlib:amd64. - Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ... - Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ... - Selecting previously unselected package python3.13. - Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ... - Unpacking python3.13 (3.13.5-2) ... - Selecting previously unselected package libpython3-stdlib:amd64. - Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ... - Unpacking libpython3-stdlib:amd64 (3.13.5-1) ... - Setting up python3-minimal (3.13.5-1) ... - Selecting previously unselected package python3. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 21455 files and directories currently installed.) - Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ... - Unpacking python3 (3.13.5-1) ... - Selecting previously unselected package libhttp-parser2.9:amd64. - Preparing to unpack .../01-libhttp-parser2.9_2.9.4-6+b2_amd64.deb ... - Unpacking libhttp-parser2.9:amd64 (2.9.4-6+b2) ... - Selecting previously unselected package libmbedcrypto16:amd64. - Preparing to unpack .../02-libmbedcrypto16_3.6.4-2_amd64.deb ... - Unpacking libmbedcrypto16:amd64 (3.6.4-2) ... - Selecting previously unselected package libmbedx509-7:amd64. - Preparing to unpack .../03-libmbedx509-7_3.6.4-2_amd64.deb ... - Unpacking libmbedx509-7:amd64 (3.6.4-2) ... - Selecting previously unselected package libmbedtls21:amd64. - Preparing to unpack .../04-libmbedtls21_3.6.4-2_amd64.deb ... - Unpacking libmbedtls21:amd64 (3.6.4-2) ... - Selecting previously unselected package libgit2-1.9:amd64. - Preparing to unpack .../05-libgit2-1.9_1.9.0+ds-2_amd64.deb ... - Unpacking libgit2-1.9:amd64 (1.9.0+ds-2) ... - Selecting previously unselected package libxml2:amd64. - Preparing to unpack .../06-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ... - Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ... - Selecting previously unselected package libz3-4:amd64. - Preparing to unpack .../07-libz3-4_4.13.3-1_amd64.deb ... - Unpacking libz3-4:amd64 (4.13.3-1) ... - Selecting previously unselected package libllvm19:amd64. - Preparing to unpack .../08-libllvm19_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ... - Selecting previously unselected package libstd-rust-1.85:amd64. - Preparing to unpack .../09-libstd-rust-1.85_1.85.0+dfsg3-1_amd64.deb ... - Unpacking libstd-rust-1.85:amd64 (1.85.0+dfsg3-1) ... - Selecting previously unselected package libstd-rust-dev:amd64. - Preparing to unpack .../10-libstd-rust-dev_1.85.0+dfsg3-1_amd64.deb ... - Unpacking libstd-rust-dev:amd64 (1.85.0+dfsg3-1) ... - Selecting previously unselected package rustc. - Preparing to unpack .../11-rustc_1.85.0+dfsg3-1_amd64.deb ... - Unpacking rustc (1.85.0+dfsg3-1) ... - Selecting previously unselected package libclang-cpp19. - Preparing to unpack .../12-libclang-cpp19_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking libclang-cpp19 (1:19.1.7-3+b1) ... - Selecting previously unselected package libgc1:amd64. - Preparing to unpack .../13-libgc1_1%3a8.2.8-1_amd64.deb ... - Unpacking libgc1:amd64 (1:8.2.8-1) ... - Selecting previously unselected package libobjc4:amd64. - Preparing to unpack .../14-libobjc4_14.2.0-19_amd64.deb ... - Unpacking libobjc4:amd64 (14.2.0-19) ... - Selecting previously unselected package libobjc-14-dev:amd64. - Preparing to unpack .../15-libobjc-14-dev_14.2.0-19_amd64.deb ... - Unpacking libobjc-14-dev:amd64 (14.2.0-19) ... - Selecting previously unselected package libclang-common-19-dev:amd64. - Preparing to unpack .../16-libclang-common-19-dev_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ... - Selecting previously unselected package llvm-19-linker-tools. - Preparing to unpack .../17-llvm-19-linker-tools_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking llvm-19-linker-tools (1:19.1.7-3+b1) ... - Selecting previously unselected package libclang1-19. - Preparing to unpack .../18-libclang1-19_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking libclang1-19 (1:19.1.7-3+b1) ... - Selecting previously unselected package clang-19. - Preparing to unpack .../19-clang-19_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking clang-19 (1:19.1.7-3+b1) ... - Selecting previously unselected package cargo. - Preparing to unpack .../20-cargo_1.85.0+dfsg3-1_amd64.deb ... - Unpacking cargo (1.85.0+dfsg3-1) ... - Selecting previously unselected package clang-tools-19. - Preparing to unpack .../21-clang-tools-19_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking clang-tools-19 (1:19.1.7-3+b1) ... - Selecting previously unselected package cmake-data. - Preparing to unpack .../22-cmake-data_3.31.6-2_all.deb ... - Unpacking cmake-data (3.31.6-2) ... - Selecting previously unselected package libarchive13t64:amd64. - Preparing to unpack .../23-libarchive13t64_3.7.4-4_amd64.deb ... - Unpacking libarchive13t64:amd64 (3.7.4-4) ... - Selecting previously unselected package libjsoncpp26:amd64. - Preparing to unpack .../24-libjsoncpp26_1.9.6-3_amd64.deb ... - Unpacking libjsoncpp26:amd64 (1.9.6-3) ... - Selecting previously unselected package librhash1:amd64. - Preparing to unpack .../25-librhash1_1.4.5-1_amd64.deb ... - Unpacking librhash1:amd64 (1.4.5-1) ... - Selecting previously unselected package libuv1t64:amd64. - Preparing to unpack .../26-libuv1t64_1.50.0-2_amd64.deb ... - Unpacking libuv1t64:amd64 (1.50.0-2) ... - Selecting previously unselected package cmake. - Preparing to unpack .../27-cmake_3.31.6-2_amd64.deb ... - Unpacking cmake (3.31.6-2) ... - Selecting previously unselected package libc6-i386. - Preparing to unpack .../28-libc6-i386_2.41-12_amd64.deb ... - Unpacking libc6-i386 (2.41-12) ... - Selecting previously unselected package lib32gcc-s1. - Preparing to unpack .../29-lib32gcc-s1_14.2.0-19_amd64.deb ... - Unpacking lib32gcc-s1 (14.2.0-19) ... - Selecting previously unselected package lib32stdc++6. - Preparing to unpack .../30-lib32stdc++6_14.2.0-19_amd64.deb ... - Unpacking lib32stdc++6 (14.2.0-19) ... - Selecting previously unselected package libclang-rt-19-dev:amd64. - Preparing to unpack .../31-libclang-rt-19-dev_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ... - Selecting previously unselected package libev4t64:amd64. - Preparing to unpack .../32-libev4t64_1%3a4.33-2.1+b1_amd64.deb ... - Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ... - Selecting previously unselected package libev-dev:amd64. - Preparing to unpack .../33-libev-dev_1%3a4.33-2.1+b1_amd64.deb ... - Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ... - Selecting previously unselected package libffi-dev:amd64. - Preparing to unpack .../34-libffi-dev_3.4.8-2_amd64.deb ... - Unpacking libffi-dev:amd64 (3.4.8-2) ... - Selecting previously unselected package libgmpxx4ldbl:amd64. - Preparing to unpack .../35-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../36-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ... - Selecting previously unselected package libncurses6:amd64. - Preparing to unpack .../37-libncurses6_6.5+20250216-2_amd64.deb ... - Unpacking libncurses6:amd64 (6.5+20250216-2) ... - Selecting previously unselected package libncurses-dev:amd64. - Preparing to unpack .../38-libncurses-dev_6.5+20250216-2_amd64.deb ... - Unpacking libncurses-dev:amd64 (6.5+20250216-2) ... - Selecting previously unselected package libpfm4:amd64. - Preparing to unpack .../39-libpfm4_4.13.0+git99-gc5587f9-1_amd64.deb ... - Unpacking libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ... - Selecting previously unselected package libpkgconf3:amd64. - Preparing to unpack .../40-libpkgconf3_1.8.1-4_amd64.deb ... - Unpacking libpkgconf3:amd64 (1.8.1-4) ... - Selecting previously unselected package libxml2-dev:amd64. - Preparing to unpack .../41-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ... - Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ... - Selecting previously unselected package libyaml-0-2:amd64. - Preparing to unpack .../42-libyaml-0-2_0.2.5-2_amd64.deb ... - Unpacking libyaml-0-2:amd64 (0.2.5-2) ... - Selecting previously unselected package libz3-dev:amd64. - Preparing to unpack .../43-libz3-dev_4.13.3-1_amd64.deb ... - Unpacking libz3-dev:amd64 (4.13.3-1) ... - Selecting previously unselected package lld-19. - Preparing to unpack .../44-lld-19_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking lld-19 (1:19.1.7-3+b1) ... - Selecting previously unselected package llvm-19-runtime. - Preparing to unpack .../45-llvm-19-runtime_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking llvm-19-runtime (1:19.1.7-3+b1) ... - Selecting previously unselected package llvm-19. - Preparing to unpack .../46-llvm-19_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking llvm-19 (1:19.1.7-3+b1) ... - Selecting previously unselected package python3-pygments. - Preparing to unpack .../47-python3-pygments_2.18.0+dfsg-2_all.deb ... - Unpacking python3-pygments (2.18.0+dfsg-2) ... - Selecting previously unselected package python3-yaml. - Preparing to unpack .../48-python3-yaml_6.0.2-1+b2_amd64.deb ... - Unpacking python3-yaml (6.0.2-1+b2) ... - Selecting previously unselected package llvm-19-tools. - Preparing to unpack .../49-llvm-19-tools_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking llvm-19-tools (1:19.1.7-3+b1) ... - Selecting previously unselected package llvm-19-dev. - Preparing to unpack .../50-llvm-19-dev_1%3a19.1.7-3+b1_amd64.deb ... - Unpacking llvm-19-dev (1:19.1.7-3+b1) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../51-pkgconf-bin_1.8.1-4_amd64.deb ... - Unpacking pkgconf-bin (1.8.1-4) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../52-pkgconf_1.8.1-4_amd64.deb ... - Unpacking pkgconf:amd64 (1.8.1-4) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../53-pkg-config_1.8.1-4_amd64.deb ... - Unpacking pkg-config:amd64 (1.8.1-4) ... - Selecting previously unselected package rust-llvm. - Preparing to unpack .../54-rust-llvm_1.85.0+dfsg3-1_amd64.deb ... - Unpacking rust-llvm (1.85.0+dfsg3-1) ... - Setting up media-types (13.0.0) ... - Setting up libpipeline1:amd64 (1.5.8-1) ... - Setting up libev4t64:amd64 (1:4.33-2.1+b1) ... - Setting up libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ... - Setting up libyaml-0-2:amd64 (0.2.5-2) ... - Setting up libuv1t64:amd64 (1.50.0-2) ... - Setting up libffi-dev:amd64 (3.4.8-2) ... - Setting up libz3-4:amd64 (4.13.3-1) ... - Setting up libpkgconf3:amd64 (1.8.1-4) ... - Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ... - Setting up libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ... - Setting up libjsoncpp26:amd64 (1.9.6-3) ... - Setting up libncurses6:amd64 (6.5+20250216-2) ... - Setting up binfmt-support (2.2.2-7) ... - invoke-rc.d: could not determine current runlevel - invoke-rc.d: policy-rc.d denied execution of start. - Setting up pkgconf-bin (1.8.1-4) ... - Setting up libgc1:amd64 (1:8.2.8-1) ... - Setting up libc6-i386 (2.41-12) ... - Setting up cmake-data (3.31.6-2) ... - Setting up librhash1:amd64 (1.4.5-1) ... - Setting up libmbedcrypto16:amd64 (3.6.4-2) ... - Setting up libev-dev:amd64 (1:4.33-2.1+b1) ... - Setting up readline-common (8.2-6) ... - Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ... - Setting up libhttp-parser2.9:amd64 (2.9.4-6+b2) ... - Setting up libllvm19:amd64 (1:19.1.7-3+b1) ... - Setting up libz3-dev:amd64 (4.13.3-1) ... - Setting up libncurses-dev:amd64 (6.5+20250216-2) ... - Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ... - Setting up libclang1-19 (1:19.1.7-3+b1) ... - Setting up libobjc4:amd64 (14.2.0-19) ... - Setting up libobjc-14-dev:amd64 (14.2.0-19) ... - Setting up pkgconf:amd64 (1.8.1-4) ... - Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ... - Setting up libmbedx509-7:amd64 (3.6.4-2) ... - Setting up lib32gcc-s1 (14.2.0-19) ... - Setting up lib32stdc++6 (14.2.0-19) ... - Setting up pkg-config:amd64 (1.8.1-4) ... - Setting up libmbedtls21:amd64 (3.6.4-2) ... - Setting up libreadline8t64:amd64 (8.2-6) ... - Setting up libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ... - Setting up libstd-rust-1.85:amd64 (1.85.0+dfsg3-1) ... - Setting up llvm-19-linker-tools (1:19.1.7-3+b1) ... - Setting up llvm-19-runtime (1:19.1.7-3+b1) ... - Setting up lld-19 (1:19.1.7-3+b1) ... - Setting up libarchive13t64:amd64 (3.7.4-4) ... - Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ... - Setting up libpython3-stdlib:amd64 (3.13.5-1) ... - Setting up libclang-cpp19 (1:19.1.7-3+b1) ... - Setting up python3.13 (3.13.5-2) ... - Setting up python3 (3.13.5-1) ... - running python rtupdate hooks for python3.13... - running python post-rtupdate hooks for python3.13... - Setting up clang-19 (1:19.1.7-3+b1) ... - Setting up clang-tools-19 (1:19.1.7-3+b1) ... - Setting up libstd-rust-dev:amd64 (1.85.0+dfsg3-1) ... - Setting up python3-pygments (2.18.0+dfsg-2) ... - Setting up libgit2-1.9:amd64 (1.9.0+ds-2) ... - Setting up rustc (1.85.0+dfsg3-1) ... - Setting up cmake (3.31.6-2) ... - Setting up llvm-19 (1:19.1.7-3+b1) ... - Setting up rust-llvm (1.85.0+dfsg3-1) ... - Setting up python3-yaml (6.0.2-1+b2) ... - Setting up cargo (1.85.0+dfsg3-1) ... - Setting up llvm-19-tools (1:19.1.7-3+b1) ... - Setting up llvm-19-dev (1:19.1.7-3+b1) ... - Processing triggers for libc-bin (2.41-12) ... - Processing triggers for base-files (13.8+deb13u1) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved aches.1.1.0, aches-lwt.1.1.0, ringo.1.1.0 (cached) -> retrieved alcotest.1.9.0 (cached) -> retrieved angstrom.0.16.1 (cached) -> retrieved asn1-combinators.0.2.6 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved base.v0.16.4 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved bheap.2.0.0 (cached) -> retrieved bigarray-compat.1.1.0 (cached) -> retrieved bigstring.0.3 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> installed ringo.1.1.0 -> installed bheap.2.0.0 -> installed bigarray-compat.1.1.0 -> installed base64.3.5.1 -> installed aches.1.1.0 -> retrieved bls12-381.19.1, octez-alcotezt.19.1, octez-distributed-internal.19.1, octez-distributed-lwt-internal.19.1, octez-l2-libs.19.1, octez-libs.19.1 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved ca-certs.0.2.3 (cached) -> retrieved checkseum.0.5.2 (cached) -> retrieved clap.0.3.0 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved cohttp.5.3.1 (cached) -> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0 (cached) -> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached) -> retrieved conf-cmake.1 (cached) -> retrieved conf-gmp.5 (cached) -> retrieved conf-gmp-powm-sec.4 (cached) -> retrieved conf-libev.4-13 (cached) -> retrieved conf-rust-2021.1 (cached) -> retrieved cppo.1.8.0 (cached) -> retrieved csexp.1.5.2 (cached) -> installed clap.0.3.0 -> retrieved cstruct.6.2.0 (cached) -> installed conf-cmake.1 -> installed conf-gmp.5 -> installed conf-pkg-config.4 -> installed conf-which.1 -> retrieved ctypes.0.23.0, ctypes-foreign.0.23.0 (cached) -> installed conf-libev.4-13 -> installed csexp.1.5.2 -> installed conf-gmp-powm-sec.4 -> installed conf-libffi.2.0.0 -> installed conf-rust.0.1 -> retrieved ctypes_stubs_js.0.1 (cached) -> retrieved data-encoding.0.7.1 (cached) -> installed conf-rust-2021.1 -> retrieved digestif.1.3.0 (cached) -> retrieved domain-name.0.4.1 (cached) -> installed octez-distributed-internal.19.1 -> installed cppo.1.8.0 -> installed domain-name.0.4.1 -> retrieved dune-configurator.3.20.2 (cached) -> retrieved duration.0.2.1 (cached) -> retrieved either.1.0.0 (cached) -> retrieved eqaf.0.9 (cached) -> retrieved ezjsonm.1.3.0 (cached) -> retrieved fmt.0.11.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved gen.1.1 (cached) -> retrieved gmap.0.3.0 (cached) -> retrieved hacl-star.0.7.2, hacl-star-raw.0.7.2 (cached) -> installed cmdliner.1.3.0 -> installed duration.0.2.1 -> installed either.1.0.0 -> installed gmap.0.3.0 -> retrieved hex.1.5.0 (cached) -> retrieved index.1.6.0 (cached) -> retrieved integers.0.7.0 (cached) -> retrieved integers_stubs_js.1.0 (cached) -> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1 (cached) -> installed macaddr.5.6.1 -> retrieved irmin.3.7.2, irmin-pack.3.7.2, ppx_irmin.3.7.2 (cached) -> installed dune-configurator.3.20.2 -> installed ipaddr.5.6.1 -> retrieved jane-street-headers.v0.16.0 (cached) -> installed jane-street-headers.v0.16.0 -> installed bigstringaf.0.10.0 -> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0 (cached) -> retrieved json-data-encoding.0.12.1, json-data-encoding-bson.0.12.1 (cached) -> retrieved jsonm.1.0.2 (cached) -> retrieved jst-config.v0.16.0 (cached) -> retrieved logs.0.9.0 (cached) -> retrieved lru.0.3.1 (cached) -> retrieved lwt.5.9.2 (cached) -> retrieved lwt-canceler.0.3 (cached) -> retrieved lwt-watcher.0.2 (cached) -> retrieved magic-mime.1.3.1 (cached) -> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached) -> installed magic-mime.1.3.1 -> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3 (cached) -> installed menhirCST.20250912 -> retrieved mtime.1.4.0 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> installed menhirSdk.20250912 -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocamlgraph.2.2.0 (cached) -> installed menhirLib.20250912 -> retrieved ocplib-endian.1.2 (cached) -> retrieved optint.0.3.0 (cached) -> retrieved pbkdf.1.2.0 (cached) -> retrieved ppx_assert.v0.16.0 (cached) -> retrieved ppx_base.v0.16.0 (cached) -> retrieved ppx_cold.v0.16.0 (cached) -> retrieved ppx_compare.v0.16.0 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_deriving.6.0.3 (cached) -> retrieved ppx_enumerate.v0.16.0 (cached) -> retrieved ppx_expect.v0.16.1 (cached) -> retrieved ppx_globalize.v0.16.0 (cached) -> retrieved ppx_hash.v0.16.0 (cached) -> retrieved ppx_here.v0.16.0 (cached) -> retrieved ppx_import.1.11.0 (cached) -> retrieved ppx_inline_test.v0.16.1 (cached) -> retrieved ppx_optcomp.v0.16.0 (cached) -> installed ppx_derivers.1.2.1 -> retrieved ppx_repr.0.7.0, repr.0.7.0 (cached) -> installed optint.0.3.0 -> retrieved ppx_sexp_conv.v0.16.0 (cached) -> installed ocaml-syntax-shims.1.0.0 -> retrieved ppxlib.0.35.0 (cached) -> installed ocaml-compiler-libs.v0.12.4 -> retrieved progress.0.2.1, terminal.0.2.1 (cached) -> retrieved psq.0.2.1 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved pure-splitmix.0.3 (cached) -> retrieved qcheck-alcotest.0.26, qcheck-core.0.26 (cached) -> retrieved resto.1.2, resto-acl.1.2, resto-cohttp.1.2, resto-cohttp-client.1.2, resto-cohttp-server.1.2, resto-directory.1.2 (cached) -> installed angstrom.0.16.1 -> retrieved rresult.0.7.0 (cached) -> retrieved rusage.1.0.0 (cached) -> installed pure-splitmix.0.3 -> retrieved secp256k1-internal.0.4.0 (cached) -> retrieved sedlex.3.6 (cached) -> retrieved semaphore-compat.1.0.2 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved seqes.0.4 (cached) -> retrieved sexplib0.v0.16.0 (cached) -> retrieved stdint.0.7.2 (cached) -> retrieved stdio.v0.16.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved stringext.1.6.0 (cached) -> installed ocamlgraph.2.2.0 -> installed checkseum.0.5.2 -> installed qcheck-core.0.26 -> installed rusage.1.0.0 -> installed semaphore-compat.1.0.2 -> installed gen.1.1 -> installed psq.0.2.1 -> installed seqes.0.4 -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed sexplib0.v0.16.0 -> installed stdint.0.7.2 -> installed stdlib-shims.0.3.0 -> installed stringext.1.6.0 -> installed lru.0.3.1 -> installed bigstring.0.3 -> installed ocplib-endian.1.2 -> installed integers.0.7.0 -> installed ocamlbuild.0.16.1 -> installed lwt.5.9.2 -> installed lwt-watcher.0.2 -> installed lwt-canceler.0.3 -> installed aches-lwt.1.1.0 -> installed base.v0.16.4 -> installed stdio.v0.16.0 -> installed ctypes.0.23.0 -> retrieved tezos-rust-libs.1.6 (cached) -> installed menhir.20250912 -> installed ppxlib.0.35.0 -> retrieved tezos-sapling-parameters.1.1.0 (cached) -> installed tezos-sapling-parameters.1.1.0 -> installed ctypes-foreign.0.23.0 -> retrieved tezt.4.2.0 (cached) -> retrieved time_now.v0.16.0 (cached) -> retrieved topkg.1.1.0 (cached) -> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached) -> installed ppx_globalize.v0.16.0 -> retrieved uucp.17.0.0 (cached) -> retrieved uutf.1.0.4 (cached) -> retrieved vector.1.0.0 (cached) -> retrieved x509.0.16.5 (cached) -> retrieved yaml.3.2.0 (cached) -> retrieved yojson.3.0.0 (cached) -> installed vector.1.0.0 -> retrieved zarith.1.12 (cached) -> installed ppx_optcomp.v0.16.0 -> retrieved zarith_stubs_js.v0.16.1 (cached) -> installed zarith_stubs_js.v0.16.1 -> installed ppx_cold.v0.16.0 -> installed ppx_here.v0.16.0 -> installed ppx_enumerate.v0.16.0 -> installed ppx_compare.v0.16.0 -> installed uri.4.4.0 -> installed yojson.3.0.0 -> installed resto.1.2 -> installed ppx_import.1.11.0 -> installed resto-acl.1.2 -> installed resto-directory.1.2 -> installed ppx_sexp_conv.v0.16.0 -> installed ppx_deriving.6.0.3 -> installed sedlex.3.6 -> installed zarith.1.12 -> installed ipaddr-sexp.5.6.1 -> installed json-data-encoding.0.12.1 -> installed uri-sexp.4.4.0 -> installed topkg.1.1.0 -> installed ppx_hash.v0.16.0 -> installed json-data-encoding-bson.0.12.1 -> installed ppx_assert.v0.16.0 -> installed rresult.0.7.0 -> installed uutf.1.0.4 -> installed mtime.1.4.0 -> installed fmt.0.11.0 -> installed ppx_base.v0.16.0 -> installed astring.0.8.5 -> installed ptime.1.2.0 -> installed cstruct.6.2.0 -> installed hex.1.5.0 -> installed jsonm.1.0.2 -> installed fpath.0.7.3 -> installed eqaf.0.9 -> installed alcotest.1.9.0 -> installed asn1-combinators.0.2.6 -> installed ezjsonm.1.3.0 -> installed jst-config.v0.16.0 -> installed qcheck-alcotest.0.26 -> installed repr.0.7.0 -> installed digestif.1.3.0 -> installed cohttp.5.3.1 -> installed mirage-crypto.0.11.3 -> installed time_now.v0.16.0 -> installed secp256k1-internal.0.4.0 -> installed pbkdf.1.2.0 -> installed data-encoding.0.7.1 -> installed ppx_repr.0.7.0 -> installed ppx_inline_test.v0.16.1 -> installed js_of_ocaml-compiler.6.2.0 -> installed ppx_expect.v0.16.1 -> installed logs.0.9.0 -> installed bos.0.2.1 -> installed cohttp-lwt.5.3.0 -> installed conduit.8.0.0 -> installed mirage-crypto-rng.0.11.3 -> installed resto-cohttp.1.2 -> installed mirage-crypto-pk.0.11.3 -> installed resto-cohttp-client.1.2 -> installed octez-distributed-lwt-internal.19.1 -> installed conduit-lwt.8.0.0 -> installed ppx_irmin.3.7.2 -> installed yaml.3.2.0 -> installed mirage-crypto-ec.0.11.3 -> installed x509.0.16.5 -> installed ca-certs.0.2.3 -> installed uucp.17.0.0 -> installed terminal.0.2.1 -> installed conduit-lwt-unix.8.0.0 -> installed progress.0.2.1 -> installed irmin.3.7.2 -> installed cohttp-lwt-unix.5.3.0 -> installed index.1.6.0 -> installed resto-cohttp-server.1.2 -> installed js_of_ocaml.6.2.0 -> installed integers_stubs_js.1.0 -> installed tezt.4.2.0 -> installed ctypes_stubs_js.0.1 -> installed octez-alcotezt.19.1 -> installed irmin-pack.3.7.2 -> installed bls12-381.19.1 -> installed tezos-rust-libs.1.6 -> installed hacl-star-raw.0.7.2 -> installed hacl-star.0.7.2 -> installed octez-libs.19.1 -> installed octez-l2-libs.19.1 Done. # To update the current shell environment, run: eval $(opam env) 2025-09-18 13:58.20 ---> saved as "760b46260a42888e2be8c6d1b3349ef88a2b29db823f0983d2a2099e7c490b86" /home/opam: (run (network host) (shell "(opam reinstall --with-test octez-l2-libs.19.1) || true")) The following actions will be performed: === recompile 1 package - recompile octez-l2-libs 19.1 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved octez-l2-libs.19.1 (https://opam.ocaml.org/cache) -> removed octez-l2-libs.19.1 -> installed octez-l2-libs.19.1 Done. # To update the current shell environment, run: eval $(opam env) 2025-09-18 14:07.33 ---> saved as "61f15ba350b556df8567c152b29db5bb41fcf2bfa2ad8d953cd7891d019cb5bd" /home/opam: (run (shell "opam reinstall --with-test --verbose octez-l2-libs.19.1;\ \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\" != 'octez-l2-libs.19.1' && 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 octez-l2-libs 19.1 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/4: [octez-l2-libs.19.1: extract] -> retrieved octez-l2-libs.19.1 (cached) Processing 2/4: [octez-l2-libs: rm vendors] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-r" "vendors" "contrib" (CWD=/home/opam/.opam/4.14/.opam-switch/build/octez-l2-libs.19.1) Processing 2/4: [octez-l2-libs: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "octez-l2-libs" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/octez-l2-libs.19.1) - (cd _build/default/src/lib_wasmer && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -Wno-discarded-qualifiers -I/home/opam/.opam/4.14/lib/tezos-rust-libs -Wno-incompatible-pointer-types -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/bytes -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes-foreign -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/stdlib-shims -o wasmer__c_cout_generated_functions__Api_funcs_desc__Functions.o -c wasmer__c_cout_generated_functions__Api_funcs_desc__Functions.c) - wasmer__c_cout_generated_functions__Api_funcs_desc__Functions.c: In function 'wasmer_stubs_56_wasm_memory_data': - wasmer__c_cout_generated_functions__Api_funcs_desc__Functions.c:591:20: warning: pointer targets in initialization of 'uint8_t *' {aka 'unsigned char *'} from 'byte_t *' {aka 'char *'} differ in signedness [-Wpointer-sign] - 591 | uint8_t* x432 = wasm_memory_data(x431); - | ^~~~~~~~~~~~~~~~ Processing 2/4: [octez-l2-libs: dune runtest] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "octez-l2-libs" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/octez-l2-libs.19.1) - (cd _build/default/src/lib_webassembly/tests && ./main.exe) - [14:08:19.011] [SUCCESS] (1/1) WebAssembly reference interpreter tests: Smallint (Check_smallint) - (cd _build/default/src/lib_wasmer/test && ./main.exe) - [14:08:20.227] [SUCCESS] (1/2) Wasmer: Memory (get_string behaves like get) - [14:08:20.228] [SUCCESS] (2/2) Wasmer: Memory (set_string behaves like set) - (cd _build/default/src/lib_layer2_store/test && ./main.exe) - qcheck random seed: 461255456 - [14:08:24.979] [SUCCESS] (1/15) tezos-layer2-store: indexed-store-pbt (singleton store (sequential)) - [14:08:28.162] [SUCCESS] (2/15) tezos-layer2-store: indexed-store-pbt (indexable store (sequential)) - [14:08:31.350] [SUCCESS] (3/15) tezos-layer2-store: indexed-store-pbt (indexable store (parallel)) - [14:08:34.942] [SUCCESS] (4/15) tezos-layer2-store: indexed-store-pbt (indexable removable store (sequential)) - [14:08:37.891] [SUCCESS] (5/15) tezos-layer2-store: indexed-store-pbt (indexable removable store (parallel)) - [14:08:43.344] [SUCCESS] (6/15) tezos-layer2-store: indexed-store-pbt (indexed file store (sequential)) - [14:08:48.978] [SUCCESS] (7/15) tezos-layer2-store: indexed-store-pbt (indexed file store (parallel)) - [14:08:49.167] [SUCCESS] (8/15) tezos-layer2-store: indexed-store-pbt (gc in indexable store (sequential)) - [14:08:49.360] [SUCCESS] (9/15) tezos-layer2-store: indexed-store-pbt (gc in indexable store (parallel)) - [14:08:49.691] [SUCCESS] (10/15) tezos-layer2-store: indexed-store-pbt (gc in indexed file store (sequential)) - [14:08:50.057] [SUCCESS] (11/15) tezos-layer2-store: indexed-store-pbt (gc in indexed file store (parallel)) - [14:08:50.058] [SUCCESS] (12/15) tezos-layer2-store: indexed-store-unit (load) - [14:08:50.064] [SUCCESS] (13/15) tezos-layer2-store: indexed-store-unit (read_gc_index) - [14:08:50.070] [SUCCESS] (14/15) tezos-layer2-store: indexed-store-unit (read_gc_store) - [14:08:50.190] [SUCCESS] (15/15) tezos-layer2-store: indexed-store-unit (gc_iterator) - (cd _build/default/src/lib_scoru_wasm/fast/test && ./main.exe) - qcheck random seed: 487620341 - [14:08:57.476] [SUCCESS] (1/56) test lib scoru-wasm-fast: Memory access (store_bytes behaves the same on both memory implementations) - [14:09:44.255] [SUCCESS] (2/56) test lib scoru-wasm-fast: Memory access (load_bytes behaves the same on both memory implementations) - [14:10:11.214] [SUCCESS] (3/56) test lib scoru-wasm-fast: Memory access (store_num behaves the same on both memory implementations) - [14:10:11.214] [SUCCESS] (4/56) test lib scoru-wasm-fast: Fast Execution cache (add to empty) - [14:10:11.214] [SUCCESS] (5/56) test lib scoru-wasm-fast: Fast Execution cache (Find) - [14:10:11.214] [SUCCESS] (6/56) test lib scoru-wasm-fast: Fast Execution cache (Replace existing key) - [14:10:11.214] [SUCCESS] (7/56) test lib scoru-wasm-fast: Fast Execution cache (add max number of keys) - [14:10:11.214] [SUCCESS] (8/56) test lib scoru-wasm-fast: Fast Execution cache (add more than max) - [14:10:11.641] [SUCCESS] (9/56) test lib scoru-wasm-fast: Fast Execution (Big addresses are working correctly (2.0.0)) - [14:10:11.796] [SUCCESS] (10/56) test lib scoru-wasm-fast: Fast Execution (Computation kernel (2.0.0)) - [14:10:15.306] [SUCCESS] (11/56) test lib scoru-wasm-fast: Fast Execution (Store read/write kernel (2.0.0)) - [14:10:15.933] [SUCCESS] (12/56) test lib scoru-wasm-fast: Fast Execution (read_input (2.0.0)) - [14:10:15.960] [SUCCESS] (13/56) test lib scoru-wasm-fast: Fast Execution (reboot (2.0.0)) - [14:10:15.976] [SUCCESS] (14/56) test lib scoru-wasm-fast: Fast Execution (max_steps flag (2.0.0)) - [14:10:18.929] [SUCCESS] (15/56) test lib scoru-wasm-fast: Fast Execution (too many reboots (2.0.0)) - [14:10:18.949] [SUCCESS] (16/56) test lib scoru-wasm-fast: Fast Execution (compare nb ticks (2.0.0)) - [14:10:18.962] [SUCCESS] (17/56) test lib scoru-wasm-fast: Fast Execution (Reveal_preimage kernel (2.0.0)) - [14:10:48.370] [SUCCESS] (18/56) test lib scoru-wasm-fast: Fast Execution (TX kernel (2.0.0)) - [14:10:48.378] [SUCCESS] (19/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many pauses at snapshot (2.0.0)) - [14:10:48.402] [SUCCESS] (20/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many recovers correctly after kernel panics (2.0.0)) - [14:10:48.798] [SUCCESS] (21/56) test lib scoru-wasm-fast: Fast Execution (Big addresses are working correctly (2.0.0-r1)) - [14:10:48.968] [SUCCESS] (22/56) test lib scoru-wasm-fast: Fast Execution (Computation kernel (2.0.0-r1)) - [14:10:52.634] [SUCCESS] (23/56) test lib scoru-wasm-fast: Fast Execution (Store read/write kernel (2.0.0-r1)) - [14:10:53.255] [SUCCESS] (24/56) test lib scoru-wasm-fast: Fast Execution (read_input (2.0.0-r1)) - [14:10:53.280] [SUCCESS] (25/56) test lib scoru-wasm-fast: Fast Execution (reboot (2.0.0-r1)) - [14:10:53.294] [SUCCESS] (26/56) test lib scoru-wasm-fast: Fast Execution (max_steps flag (2.0.0-r1)) - [14:10:56.006] [SUCCESS] (27/56) test lib scoru-wasm-fast: Fast Execution (too many reboots (2.0.0-r1)) - [14:10:56.032] [SUCCESS] (28/56) test lib scoru-wasm-fast: Fast Execution (compare nb ticks (2.0.0-r1)) - [14:10:56.046] [SUCCESS] (29/56) test lib scoru-wasm-fast: Fast Execution (Reveal_preimage kernel (2.0.0-r1)) - [14:11:26.967] [SUCCESS] (30/56) test lib scoru-wasm-fast: Fast Execution (TX kernel (2.0.0-r1)) - [14:11:26.976] [SUCCESS] (31/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many pauses at snapshot (2.0.0-r1)) - [14:11:26.997] [SUCCESS] (32/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many recovers correctly after kernel panics (2.0.0-r1)) - [14:11:27.391] [SUCCESS] (33/56) test lib scoru-wasm-fast: Fast Execution (Big addresses are working correctly (2.0.0-r2)) - [14:11:27.546] [SUCCESS] (34/56) test lib scoru-wasm-fast: Fast Execution (Computation kernel (2.0.0-r2)) - [14:11:31.096] [SUCCESS] (35/56) test lib scoru-wasm-fast: Fast Execution (Store read/write kernel (2.0.0-r2)) - [14:11:31.798] [SUCCESS] (36/56) test lib scoru-wasm-fast: Fast Execution (read_input (2.0.0-r2)) - [14:11:31.829] [SUCCESS] (37/56) test lib scoru-wasm-fast: Fast Execution (reboot (2.0.0-r2)) - [14:11:31.845] [SUCCESS] (38/56) test lib scoru-wasm-fast: Fast Execution (max_steps flag (2.0.0-r2)) - [14:11:34.825] [SUCCESS] (39/56) test lib scoru-wasm-fast: Fast Execution (too many reboots (2.0.0-r2)) - [14:11:34.845] [SUCCESS] (40/56) test lib scoru-wasm-fast: Fast Execution (compare nb ticks (2.0.0-r2)) - [14:11:34.859] [SUCCESS] (41/56) test lib scoru-wasm-fast: Fast Execution (Reveal_preimage kernel (2.0.0-r2)) - [14:12:06.719] [SUCCESS] (42/56) test lib scoru-wasm-fast: Fast Execution (TX kernel (2.0.0-r2)) - [14:12:06.728] [SUCCESS] (43/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many pauses at snapshot (2.0.0-r2)) - [14:12:06.749] [SUCCESS] (44/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many recovers correctly after kernel panics (2.0.0-r2)) - [14:12:07.178] [SUCCESS] (45/56) test lib scoru-wasm-fast: Fast Execution (Big addresses are working correctly (2.0.0-r3)) - [14:12:07.345] [SUCCESS] (46/56) test lib scoru-wasm-fast: Fast Execution (Computation kernel (2.0.0-r3)) - [14:12:11.707] [SUCCESS] (47/56) test lib scoru-wasm-fast: Fast Execution (Store read/write kernel (2.0.0-r3)) - [14:12:12.443] [SUCCESS] (48/56) test lib scoru-wasm-fast: Fast Execution (read_input (2.0.0-r3)) - [14:12:12.478] [SUCCESS] (49/56) test lib scoru-wasm-fast: Fast Execution (reboot (2.0.0-r3)) - [14:12:12.494] [SUCCESS] (50/56) test lib scoru-wasm-fast: Fast Execution (max_steps flag (2.0.0-r3)) - [14:12:15.264] [SUCCESS] (51/56) test lib scoru-wasm-fast: Fast Execution (too many reboots (2.0.0-r3)) - [14:12:15.287] [SUCCESS] (52/56) test lib scoru-wasm-fast: Fast Execution (compare nb ticks (2.0.0-r3)) - [14:12:15.303] [SUCCESS] (53/56) test lib scoru-wasm-fast: Fast Execution (Reveal_preimage kernel (2.0.0-r3)) - [14:12:46.839] [SUCCESS] (54/56) test lib scoru-wasm-fast: Fast Execution (TX kernel (2.0.0-r3)) - [14:12:46.848] [SUCCESS] (55/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many pauses at snapshot (2.0.0-r3)) - [14:12:46.867] [SUCCESS] (56/56) test lib scoru-wasm-fast: Fast Execution (compute_step_many recovers correctly after kernel panics (2.0.0-r3)) - (cd _build/default/src/lib_scoru_wasm/test && ./main.exe) - qcheck random seed: 599660050 - [14:08:22.494] [SUCCESS] (1/410) test lib scoru wasm: WASM VM (Test eval_has_finished: padding (2.0.0)) - [14:08:22.497] [SUCCESS] (2/410) test lib scoru wasm: WASM VM (Test set_input_state: padding (2.0.0)) - [14:08:22.499] [SUCCESS] (3/410) test lib scoru wasm: WASM VM (Test set_input_state: update last input info (2.0.0)) - [14:08:22.503] [SUCCESS] (4/410) test lib scoru wasm: WASM VM (Test eval_has_finished: padding (2.0.0-r1)) - [14:08:22.504] [SUCCESS] (5/410) test lib scoru wasm: WASM VM (Test set_input_state: padding (2.0.0-r1)) - [14:08:22.505] [SUCCESS] (6/410) test lib scoru wasm: WASM VM (Test set_input_state: update last input info (2.0.0-r1)) - [14:08:22.506] [SUCCESS] (7/410) test lib scoru wasm: WASM VM (Test eval_has_finished: padding (2.0.0-r2)) - [14:08:22.507] [SUCCESS] (8/410) test lib scoru wasm: WASM VM (Test set_input_state: padding (2.0.0-r2)) - [14:08:22.508] [SUCCESS] (9/410) test lib scoru wasm: WASM VM (Test set_input_state: update last input info (2.0.0-r2)) - [14:08:22.508] [SUCCESS] (10/410) test lib scoru wasm: WASM VM (Test eval_has_finished: padding (2.0.0-r3)) - [14:08:22.509] [SUCCESS] (11/410) test lib scoru wasm: WASM VM (Test set_input_state: padding (2.0.0-r3)) - [14:08:22.510] [SUCCESS] (12/410) test lib scoru wasm: WASM VM (Test set_input_state: update last input info (2.0.0-r3)) - [14:08:22.519] [SUCCESS] (13/410) test lib scoru wasm: WASM PVM Encodings (Wasm_pvm_errors) - [14:08:22.524] [SUCCESS] (14/410) test lib scoru wasm: WASM PVM (Test __internal_store_get_hash available (2.0.0)) - [14:08:22.525] [SUCCESS] (15/410) test lib scoru wasm: WASM PVM (Test store_delete_value available (2.0.0)) - [14:08:22.526] [SUCCESS] (16/410) test lib scoru wasm: WASM PVM (Test store_create available (2.0.0)) - [14:08:42.863] [SUCCESS] (17/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (tick per tick) (2.0.0)) - [14:08:45.716] [SUCCESS] (18/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (10 ticks at a time) (2.0.0)) - [14:08:45.792] [SUCCESS] (19/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (in one go) (2.0.0)) - [14:08:45.793] [SUCCESS] (20/410) test lib scoru wasm: WASM PVM (Test write_debug kernel (2.0.0)) - [14:08:45.797] [SUCCESS] (21/410) test lib scoru wasm: WASM PVM (Test store-has kernel (2.0.0)) - [14:08:45.799] [SUCCESS] (22/410) test lib scoru wasm: WASM PVM (Test store-list-size kernel (2.0.0)) - [14:08:45.801] [SUCCESS] (23/410) test lib scoru wasm: WASM PVM (Test store-delete kernel (2.0.0)) - [14:08:45.803] [SUCCESS] (24/410) test lib scoru wasm: WASM PVM (Test store-move kernel (2.0.0)) - [14:08:45.804] [SUCCESS] (25/410) test lib scoru wasm: WASM PVM (Test store-copy kernel (2.0.0)) - [14:08:45.807] [SUCCESS] (26/410) test lib scoru wasm: WASM PVM (Test modifying read-only storage fails (2.0.0)) - [14:08:45.807] [SUCCESS] (27/410) test lib scoru wasm: WASM PVM (Test snapshotable state (2.0.0)) - [14:08:45.809] [SUCCESS] (28/410) test lib scoru wasm: WASM PVM (Test rebuild snapshotable state (2.0.0)) - [14:08:45.810] [SUCCESS] (29/410) test lib scoru wasm: WASM PVM (Test Stuck state is truncated on long messages (2.0.0)) - [14:08:46.086] [SUCCESS] (30/410) test lib scoru wasm: WASM PVM (Test bulk no-ops function properly (2.0.0)) - [14:08:46.088] [SUCCESS] (31/410) test lib scoru wasm: WASM PVM (Test durable store io (2.0.0)) - [14:08:46.099] [SUCCESS] (32/410) test lib scoru wasm: WASM PVM (Test /readonly/kernel/env/reboot_counter (2.0.0)) - [14:08:46.115] [SUCCESS] (33/410) test lib scoru wasm: WASM PVM (Test reboot (2.0.0)) - [14:08:46.144] [SUCCESS] (34/410) test lib scoru wasm: WASM PVM (Test reboot takes too many reboots (2.0.0)) - [14:08:46.150] [SUCCESS] (35/410) test lib scoru wasm: WASM PVM (Test kernel upgrade ok (2.0.0)) - [14:08:46.160] [SUCCESS] (36/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on decoding error (2.0.0)) - [14:08:46.172] [SUCCESS] (37/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on linking error (2.0.0)) - [14:08:46.184] [SUCCESS] (38/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on initing error (2.0.0)) - [14:08:46.185] [SUCCESS] (39/410) test lib scoru wasm: WASM PVM (Test scheduling with 10 inputs in a unique inbox (2.0.0)) - [14:08:46.190] [SUCCESS] (40/410) test lib scoru wasm: WASM PVM (Test scheduling with 5 inboxes with a different input number (2.0.0)) - [14:08:46.190] [SUCCESS] (41/410) test lib scoru wasm: WASM PVM (Test inbox clean-up (2.0.0)) - [14:08:46.196] [SUCCESS] (42/410) test lib scoru wasm: WASM PVM (Test outboxes are created at each level (2.0.0)) - [14:08:46.202] [SUCCESS] (43/410) test lib scoru wasm: WASM PVM (Test outbox validity period clean-up (2.0.0)) - [14:08:46.203] [SUCCESS] (44/410) test lib scoru wasm: WASM PVM (Test __internal_store_get_hash available (2.0.0-r1)) - [14:08:46.203] [SUCCESS] (45/410) test lib scoru wasm: WASM PVM (Test store_delete_value available (2.0.0-r1)) - [14:08:46.204] [SUCCESS] (46/410) test lib scoru wasm: WASM PVM (Test store_create available (2.0.0-r1)) - [14:09:09.732] [SUCCESS] (47/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (tick per tick) (2.0.0-r1)) - [14:09:12.442] [SUCCESS] (48/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (10 ticks at a time) (2.0.0-r1)) - [14:09:12.514] [SUCCESS] (49/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (in one go) (2.0.0-r1)) - [14:09:12.516] [SUCCESS] (50/410) test lib scoru wasm: WASM PVM (Test write_debug kernel (2.0.0-r1)) - [14:09:12.519] [SUCCESS] (51/410) test lib scoru wasm: WASM PVM (Test store-has kernel (2.0.0-r1)) - [14:09:12.521] [SUCCESS] (52/410) test lib scoru wasm: WASM PVM (Test store-list-size kernel (2.0.0-r1)) - [14:09:12.523] [SUCCESS] (53/410) test lib scoru wasm: WASM PVM (Test store-delete kernel (2.0.0-r1)) - [14:09:12.524] [SUCCESS] (54/410) test lib scoru wasm: WASM PVM (Test store-move kernel (2.0.0-r1)) - [14:09:12.526] [SUCCESS] (55/410) test lib scoru wasm: WASM PVM (Test store-copy kernel (2.0.0-r1)) - [14:09:12.528] [SUCCESS] (56/410) test lib scoru wasm: WASM PVM (Test modifying read-only storage fails (2.0.0-r1)) - [14:09:12.528] [SUCCESS] (57/410) test lib scoru wasm: WASM PVM (Test snapshotable state (2.0.0-r1)) - [14:09:12.530] [SUCCESS] (58/410) test lib scoru wasm: WASM PVM (Test rebuild snapshotable state (2.0.0-r1)) - [14:09:12.531] [SUCCESS] (59/410) test lib scoru wasm: WASM PVM (Test Stuck state is truncated on long messages (2.0.0-r1)) - [14:09:12.798] [SUCCESS] (60/410) test lib scoru wasm: WASM PVM (Test bulk no-ops function properly (2.0.0-r1)) - [14:09:12.800] [SUCCESS] (61/410) test lib scoru wasm: WASM PVM (Test durable store io (2.0.0-r1)) - [14:09:12.811] [SUCCESS] (62/410) test lib scoru wasm: WASM PVM (Test /readonly/kernel/env/reboot_counter (2.0.0-r1)) - [14:09:12.827] [SUCCESS] (63/410) test lib scoru wasm: WASM PVM (Test reboot (2.0.0-r1)) - [14:09:12.855] [SUCCESS] (64/410) test lib scoru wasm: WASM PVM (Test reboot takes too many reboots (2.0.0-r1)) - [14:09:12.862] [SUCCESS] (65/410) test lib scoru wasm: WASM PVM (Test kernel upgrade ok (2.0.0-r1)) - [14:09:12.870] [SUCCESS] (66/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on decoding error (2.0.0-r1)) - [14:09:12.883] [SUCCESS] (67/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on linking error (2.0.0-r1)) - [14:09:12.893] [SUCCESS] (68/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on initing error (2.0.0-r1)) - [14:09:12.895] [SUCCESS] (69/410) test lib scoru wasm: WASM PVM (Test scheduling with 10 inputs in a unique inbox (2.0.0-r1)) - [14:09:12.899] [SUCCESS] (70/410) test lib scoru wasm: WASM PVM (Test scheduling with 5 inboxes with a different input number (2.0.0-r1)) - [14:09:12.900] [SUCCESS] (71/410) test lib scoru wasm: WASM PVM (Test inbox clean-up (2.0.0-r1)) - [14:09:12.906] [SUCCESS] (72/410) test lib scoru wasm: WASM PVM (Test outboxes are created at each level (2.0.0-r1)) - [14:09:12.912] [SUCCESS] (73/410) test lib scoru wasm: WASM PVM (Test outbox validity period clean-up (2.0.0-r1)) - [14:09:12.913] [SUCCESS] (74/410) test lib scoru wasm: WASM PVM (Test __internal_store_get_hash available (2.0.0-r2)) - [14:09:12.914] [SUCCESS] (75/410) test lib scoru wasm: WASM PVM (Test store_delete_value available (2.0.0-r2)) - [14:09:12.915] [SUCCESS] (76/410) test lib scoru wasm: WASM PVM (Test store_create available (2.0.0-r2)) - [14:09:33.065] [SUCCESS] (77/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (tick per tick) (2.0.0-r2)) - [14:09:35.830] [SUCCESS] (78/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (10 ticks at a time) (2.0.0-r2)) - [14:09:35.906] [SUCCESS] (79/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (in one go) (2.0.0-r2)) - [14:09:35.907] [SUCCESS] (80/410) test lib scoru wasm: WASM PVM (Test write_debug kernel (2.0.0-r2)) - [14:09:35.911] [SUCCESS] (81/410) test lib scoru wasm: WASM PVM (Test store-has kernel (2.0.0-r2)) - [14:09:35.914] [SUCCESS] (82/410) test lib scoru wasm: WASM PVM (Test store-list-size kernel (2.0.0-r2)) - [14:09:35.916] [SUCCESS] (83/410) test lib scoru wasm: WASM PVM (Test store-delete kernel (2.0.0-r2)) - [14:09:35.917] [SUCCESS] (84/410) test lib scoru wasm: WASM PVM (Test store-move kernel (2.0.0-r2)) - [14:09:35.919] [SUCCESS] (85/410) test lib scoru wasm: WASM PVM (Test store-copy kernel (2.0.0-r2)) - [14:09:35.922] [SUCCESS] (86/410) test lib scoru wasm: WASM PVM (Test modifying read-only storage fails (2.0.0-r2)) - [14:09:35.922] [SUCCESS] (87/410) test lib scoru wasm: WASM PVM (Test snapshotable state (2.0.0-r2)) - [14:09:35.925] [SUCCESS] (88/410) test lib scoru wasm: WASM PVM (Test rebuild snapshotable state (2.0.0-r2)) - [14:09:35.926] [SUCCESS] (89/410) test lib scoru wasm: WASM PVM (Test Stuck state is truncated on long messages (2.0.0-r2)) - [14:09:36.220] [SUCCESS] (90/410) test lib scoru wasm: WASM PVM (Test bulk no-ops function properly (2.0.0-r2)) - [14:09:36.222] [SUCCESS] (91/410) test lib scoru wasm: WASM PVM (Test durable store io (2.0.0-r2)) - [14:09:36.233] [SUCCESS] (92/410) test lib scoru wasm: WASM PVM (Test /readonly/kernel/env/reboot_counter (2.0.0-r2)) - [14:09:36.247] [SUCCESS] (93/410) test lib scoru wasm: WASM PVM (Test reboot (2.0.0-r2)) - [14:09:36.275] [SUCCESS] (94/410) test lib scoru wasm: WASM PVM (Test reboot takes too many reboots (2.0.0-r2)) - [14:09:36.282] [SUCCESS] (95/410) test lib scoru wasm: WASM PVM (Test kernel upgrade ok (2.0.0-r2)) - [14:09:36.291] [SUCCESS] (96/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on decoding error (2.0.0-r2)) - [14:09:36.302] [SUCCESS] (97/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on linking error (2.0.0-r2)) - [14:09:36.312] [SUCCESS] (98/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on initing error (2.0.0-r2)) - [14:09:36.313] [SUCCESS] (99/410) test lib scoru wasm: WASM PVM (Test scheduling with 10 inputs in a unique inbox (2.0.0-r2)) - [14:09:36.319] [SUCCESS] (100/410) test lib scoru wasm: WASM PVM (Test scheduling with 5 inboxes with a different input number (2.0.0-r2)) - [14:09:36.320] [SUCCESS] (101/410) test lib scoru wasm: WASM PVM (Test inbox clean-up (2.0.0-r2)) - [14:09:36.326] [SUCCESS] (102/410) test lib scoru wasm: WASM PVM (Test outboxes are created at each level (2.0.0-r2)) - [14:09:36.333] [SUCCESS] (103/410) test lib scoru wasm: WASM PVM (Test outbox validity period clean-up (2.0.0-r2)) - [14:09:36.334] [SUCCESS] (104/410) test lib scoru wasm: WASM PVM (Test __internal_store_get_hash available (2.0.0-r3)) - [14:09:36.335] [SUCCESS] (105/410) test lib scoru wasm: WASM PVM (Test store_delete_value available (2.0.0-r3)) - [14:09:36.336] [SUCCESS] (106/410) test lib scoru wasm: WASM PVM (Test store_create available (2.0.0-r3)) - [14:09:56.973] [SUCCESS] (107/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (tick per tick) (2.0.0-r3)) - [14:09:59.688] [SUCCESS] (108/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (10 ticks at a time) (2.0.0-r3)) - [14:09:59.761] [SUCCESS] (109/410) test lib scoru wasm: WASM PVM (Test unreachable kernel (in one go) (2.0.0-r3)) - [14:09:59.762] [SUCCESS] (110/410) test lib scoru wasm: WASM PVM (Test write_debug kernel (2.0.0-r3)) - [14:09:59.766] [SUCCESS] (111/410) test lib scoru wasm: WASM PVM (Test store-has kernel (2.0.0-r3)) - [14:09:59.768] [SUCCESS] (112/410) test lib scoru wasm: WASM PVM (Test store-list-size kernel (2.0.0-r3)) - [14:09:59.770] [SUCCESS] (113/410) test lib scoru wasm: WASM PVM (Test store-delete kernel (2.0.0-r3)) - [14:09:59.772] [SUCCESS] (114/410) test lib scoru wasm: WASM PVM (Test store-move kernel (2.0.0-r3)) - [14:09:59.773] [SUCCESS] (115/410) test lib scoru wasm: WASM PVM (Test store-copy kernel (2.0.0-r3)) - [14:09:59.776] [SUCCESS] (116/410) test lib scoru wasm: WASM PVM (Test modifying read-only storage fails (2.0.0-r3)) - [14:09:59.776] [SUCCESS] (117/410) test lib scoru wasm: WASM PVM (Test snapshotable state (2.0.0-r3)) - [14:09:59.778] [SUCCESS] (118/410) test lib scoru wasm: WASM PVM (Test rebuild snapshotable state (2.0.0-r3)) - [14:09:59.779] [SUCCESS] (119/410) test lib scoru wasm: WASM PVM (Test Stuck state is truncated on long messages (2.0.0-r3)) - [14:10:00.045] [SUCCESS] (120/410) test lib scoru wasm: WASM PVM (Test bulk no-ops function properly (2.0.0-r3)) - [14:10:00.046] [SUCCESS] (121/410) test lib scoru wasm: WASM PVM (Test durable store io (2.0.0-r3)) - [14:10:00.058] [SUCCESS] (122/410) test lib scoru wasm: WASM PVM (Test /readonly/kernel/env/reboot_counter (2.0.0-r3)) - [14:10:00.072] [SUCCESS] (123/410) test lib scoru wasm: WASM PVM (Test reboot (2.0.0-r3)) - [14:10:00.098] [SUCCESS] (124/410) test lib scoru wasm: WASM PVM (Test reboot takes too many reboots (2.0.0-r3)) - [14:10:00.105] [SUCCESS] (125/410) test lib scoru wasm: WASM PVM (Test kernel upgrade ok (2.0.0-r3)) - [14:10:00.116] [SUCCESS] (126/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on decoding error (2.0.0-r3)) - [14:10:00.126] [SUCCESS] (127/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on linking error (2.0.0-r3)) - [14:10:00.135] [SUCCESS] (128/410) test lib scoru wasm: WASM PVM (Test kernel upgrade fallsback on initing error (2.0.0-r3)) - [14:10:00.136] [SUCCESS] (129/410) test lib scoru wasm: WASM PVM (Test scheduling with 10 inputs in a unique inbox (2.0.0-r3)) - [14:10:00.141] [SUCCESS] (130/410) test lib scoru wasm: WASM PVM (Test scheduling with 5 inboxes with a different input number (2.0.0-r3)) - [14:10:00.141] [SUCCESS] (131/410) test lib scoru wasm: WASM PVM (Test inbox clean-up (2.0.0-r3)) - [14:10:00.147] [SUCCESS] (132/410) test lib scoru wasm: WASM PVM (Test outboxes are created at each level (2.0.0-r3)) - [14:10:00.153] [SUCCESS] (133/410) test lib scoru wasm: WASM PVM (Test outbox validity period clean-up (2.0.0-r3)) - [14:10:00.154] [SUCCESS] (134/410) test lib scoru wasm: WASM Encodings (Instruction roundtrip) - [14:10:02.452] [SUCCESS] (135/410) test lib scoru wasm: WASM Encodings (Module roundtrip) - [14:10:04.645] [SUCCESS] (136/410) test lib scoru wasm: WASM Encodings (Module trees) - [14:10:05.406] [SUCCESS] (137/410) test lib scoru wasm: WASM Encodings (Values tree) - [14:10:05.425] [SUCCESS] (138/410) test lib scoru wasm: WASM Encodings (Admin_instr trees) - [14:10:25.834] [SUCCESS] (139/410) test lib scoru wasm: WASM Encodings (Input and output buffers trees) - [14:10:25.862] [SUCCESS] (140/410) test lib scoru wasm: WASM Encodings (Frame trees) - [14:10:28.599] [SUCCESS] (141/410) test lib scoru wasm: WASM Encodings (Config trees) - [14:10:28.599] [SUCCESS] (142/410) test lib scoru wasm: WASM Encodings (Reveal tree encoding compatibility: Reveal_metadata) - [14:10:28.599] [SUCCESS] (143/410) test lib scoru wasm: WASM Encodings (Reveal tree encoding compatibility: Reveal_raw_data) - [14:10:28.599] [SUCCESS] (144/410) test lib scoru wasm: WASM Encodings (Reveal tree encoding compatibility: Reveal_raw_data empty) - [14:10:28.599] [SUCCESS] (145/410) test lib scoru wasm: Reveal (Wasm_pvm_state.Compatibility correctness) - [14:10:28.603] [SUCCESS] (146/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length below max_bytes (2.0.0)) - [14:10:28.606] [SUCCESS] (147/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length above max_bytes (2.0.0)) - [14:10:28.608] [SUCCESS] (148/410) test lib scoru wasm: Reveal (Test reveal_metadata (2.0.0)) - [14:10:28.640] [SUCCESS] (149/410) test lib scoru wasm: Reveal (Test reveal_preimage with Fast Exec (2.0.0)) - [14:10:28.644] [SUCCESS] (150/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length below max_bytes (2.0.0-r1)) - [14:10:28.647] [SUCCESS] (151/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length above max_bytes (2.0.0-r1)) - [14:10:28.649] [SUCCESS] (152/410) test lib scoru wasm: Reveal (Test reveal_metadata (2.0.0-r1)) - [14:10:28.650] [SUCCESS] (153/410) test lib scoru wasm: Reveal (Test reveal_preimage with Fast Exec (2.0.0-r1)) - [14:10:28.654] [SUCCESS] (154/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length below max_bytes (2.0.0-r2)) - [14:10:28.657] [SUCCESS] (155/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length above max_bytes (2.0.0-r2)) - [14:10:28.659] [SUCCESS] (156/410) test lib scoru wasm: Reveal (Test reveal_metadata (2.0.0-r2)) - [14:10:28.660] [SUCCESS] (157/410) test lib scoru wasm: Reveal (Test reveal_preimage with Fast Exec (2.0.0-r2)) - [14:10:28.663] [SUCCESS] (158/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length below max_bytes (2.0.0-r3)) - [14:10:28.666] [SUCCESS] (159/410) test lib scoru wasm: Reveal (Test reveal_preimage with preimage length above max_bytes (2.0.0-r3)) - [14:10:28.669] [SUCCESS] (160/410) test lib scoru wasm: Reveal (Test reveal_metadata (2.0.0-r3)) - [14:10:28.669] [SUCCESS] (161/410) test lib scoru wasm: Reveal (Test reveal_preimage with Fast Exec (2.0.0-r3)) - [14:10:28.671] [SUCCESS] (162/410) test lib scoru wasm: Protocol migration (protocol migration message handling by the WASM PVM (Nairobi)) - [14:10:28.672] [SUCCESS] (163/410) test lib scoru wasm: Protocol migration (protocol migration message handling by the WASM PVM (Oxford)) - [14:10:28.673] [SUCCESS] (164/410) test lib scoru wasm: Protocol migration (protocol migration message handling by the WASM PVM (Proto_alpha)) - [14:10:28.674] [SUCCESS] (165/410) test lib scoru wasm: Parser Encodings (Byte_vector) - [14:10:28.689] [SUCCESS] (166/410) test lib scoru wasm: Parser Encodings (Vec) - [14:10:28.708] [SUCCESS] (167/410) test lib scoru wasm: Parser Encodings (LazyVec) - [14:10:28.710] [SUCCESS] (168/410) test lib scoru wasm: Parser Encodings (Names) - [14:10:28.742] [SUCCESS] (169/410) test lib scoru wasm: Parser Encodings (Func_type) - [14:10:28.746] [SUCCESS] (170/410) test lib scoru wasm: Parser Encodings (Imports) - [14:10:28.767] [SUCCESS] (171/410) test lib scoru wasm: Parser Encodings (LazyStack) - [14:10:28.769] [SUCCESS] (172/410) test lib scoru wasm: Parser Encodings (Exports) - [14:10:28.771] [SUCCESS] (173/410) test lib scoru wasm: Parser Encodings (Instr_block) - [14:10:28.800] [SUCCESS] (174/410) test lib scoru wasm: Parser Encodings (Block) - [14:10:28.801] [SUCCESS] (175/410) test lib scoru wasm: Parser Encodings (Size) - [14:10:28.886] [SUCCESS] (176/410) test lib scoru wasm: Parser Encodings (Code) - [14:10:28.913] [SUCCESS] (177/410) test lib scoru wasm: Parser Encodings (Elem) - [14:10:28.920] [SUCCESS] (178/410) test lib scoru wasm: Parser Encodings (Data) - [14:10:38.570] [SUCCESS] (179/410) test lib scoru wasm: Parser Encodings (Field) - [14:10:38.571] [SUCCESS] (180/410) test lib scoru wasm: Parser Encodings (Field.Packed) - [14:10:41.596] [SUCCESS] (181/410) test lib scoru wasm: Parser Encodings (Module) - [14:10:41.596] [SUCCESS] (182/410) test lib scoru wasm: Output (Host write (2.0.0)) - [14:10:41.597] [SUCCESS] (183/410) test lib scoru wasm: Output (Write_output: Push message above the limit (2.0.0)) - [14:10:41.597] [SUCCESS] (184/410) test lib scoru wasm: Output (Host write (2.0.0-r1)) - [14:10:41.597] [SUCCESS] (185/410) test lib scoru wasm: Output (Write_output: Push message above the limit (2.0.0-r1)) - [14:10:41.597] [SUCCESS] (186/410) test lib scoru wasm: Output (Host write (2.0.0-r2)) - [14:10:41.597] [SUCCESS] (187/410) test lib scoru wasm: Output (Write_output: Push message above the limit (2.0.0-r2)) - [14:10:41.598] [SUCCESS] (188/410) test lib scoru wasm: Output (Host write (2.0.0-r3)) - [14:10:41.598] [SUCCESS] (189/410) test lib scoru wasm: Output (Write_output: Push message above the limit (2.0.0-r3)) - [14:11:03.482] [SUCCESS] (190/410) test lib scoru wasm: Output (Output buffer) - [14:11:03.483] [SUCCESS] (191/410) test lib scoru wasm: Output (Aux_write_output) - [14:11:03.483] [SUCCESS] (192/410) test lib scoru wasm: Output (Push message below the limit) - [14:11:03.483] [SUCCESS] (193/410) test lib scoru wasm: Output (Push message at the limit) - [14:11:03.483] [SUCCESS] (194/410) test lib scoru wasm: Output (Push message above the limit) - [14:11:03.483] [SUCCESS] (195/410) test lib scoru wasm: Output (Write_output: push messages bigger than the protocol limit) - [14:11:03.483] [SUCCESS] (196/410) test lib scoru wasm: Input (Host read input (2.0.0)) - [14:11:03.484] [SUCCESS] (197/410) test lib scoru wasm: Input (Host read input (2.0.0-r1)) - [14:11:03.484] [SUCCESS] (198/410) test lib scoru wasm: Input (Host read input (2.0.0-r2)) - [14:11:03.484] [SUCCESS] (199/410) test lib scoru wasm: Input (Host read input (2.0.0-r3)) - [14:11:03.484] [SUCCESS] (200/410) test lib scoru wasm: Input (Write input) - [14:11:03.485] [SUCCESS] (201/410) test lib scoru wasm: Input (Read input) - [14:11:03.485] [SUCCESS] (202/410) test lib scoru wasm: Input (Read input no messages) - [14:11:03.485] [SUCCESS] (203/410) test lib scoru wasm: Input (Write input info at invalid address doesn't dequeue the input) - [14:11:03.485] [SUCCESS] (204/410) test lib scoru wasm: Input (Write input info beyond memory bounds doesn't dequeue the input) - [14:11:03.485] [SUCCESS] (205/410) test lib scoru wasm: Input (Write input at invalid address doesn't dequeue the input) - [14:11:03.485] [SUCCESS] (206/410) test lib scoru wasm: Input (Write input beyond memory bounds doesn't dequeue the input) - [14:11:03.488] [SUCCESS] (207/410) test lib scoru wasm: Input (Payload bigger than max size constant are truncated) - [14:11:03.491] [SUCCESS] (208/410) test lib scoru wasm: Input (Payload bigger and expected max size constant are truncated) - [14:11:03.492] [SUCCESS] (209/410) test lib scoru wasm: Module Initialisation (init requires memory 0 export (2.0.0)) - [14:11:03.494] [SUCCESS] (210/410) test lib scoru wasm: Module Initialisation (names are limited to 512 bytes (2.0.0)) - [14:11:03.496] [SUCCESS] (211/410) test lib scoru wasm: Module Initialisation (imports only PVM host functions (2.0.0)) - [14:11:03.497] [SUCCESS] (212/410) test lib scoru wasm: Module Initialisation (host functions are restricted in start (2.0.0)) - [14:11:03.498] [SUCCESS] (213/410) test lib scoru wasm: Module Initialisation (Check not found `kernel_run` error (2.0.0)) - [14:11:03.498] [SUCCESS] (214/410) test lib scoru wasm: Module Initialisation (Check `kernel_run` not being a function error (2.0.0)) - [14:11:03.499] [SUCCESS] (215/410) test lib scoru wasm: Module Initialisation (32 bits float types are forbidden (2.0.0)) - [14:11:03.500] [SUCCESS] (216/410) test lib scoru wasm: Module Initialisation (64 bits float types are forbidden (2.0.0)) - [14:11:03.500] [SUCCESS] (217/410) test lib scoru wasm: Module Initialisation (float values are forbidden (2.0.0)) - [14:11:03.501] [SUCCESS] (218/410) test lib scoru wasm: Module Initialisation (init requires memory 0 export (2.0.0-r1)) - [14:11:03.504] [SUCCESS] (219/410) test lib scoru wasm: Module Initialisation (names are limited to 512 bytes (2.0.0-r1)) - [14:11:03.506] [SUCCESS] (220/410) test lib scoru wasm: Module Initialisation (imports only PVM host functions (2.0.0-r1)) - [14:11:03.507] [SUCCESS] (221/410) test lib scoru wasm: Module Initialisation (host functions are restricted in start (2.0.0-r1)) - [14:11:03.507] [SUCCESS] (222/410) test lib scoru wasm: Module Initialisation (Check not found `kernel_run` error (2.0.0-r1)) - [14:11:03.508] [SUCCESS] (223/410) test lib scoru wasm: Module Initialisation (Check `kernel_run` not being a function error (2.0.0-r1)) - [14:11:03.509] [SUCCESS] (224/410) test lib scoru wasm: Module Initialisation (32 bits float types are forbidden (2.0.0-r1)) - [14:11:03.509] [SUCCESS] (225/410) test lib scoru wasm: Module Initialisation (64 bits float types are forbidden (2.0.0-r1)) - [14:11:03.510] [SUCCESS] (226/410) test lib scoru wasm: Module Initialisation (float values are forbidden (2.0.0-r1)) - [14:11:03.511] [SUCCESS] (227/410) test lib scoru wasm: Module Initialisation (init requires memory 0 export (2.0.0-r2)) - [14:11:03.513] [SUCCESS] (228/410) test lib scoru wasm: Module Initialisation (names are limited to 512 bytes (2.0.0-r2)) - [14:11:03.515] [SUCCESS] (229/410) test lib scoru wasm: Module Initialisation (imports only PVM host functions (2.0.0-r2)) - [14:11:03.516] [SUCCESS] (230/410) test lib scoru wasm: Module Initialisation (host functions are restricted in start (2.0.0-r2)) - [14:11:03.517] [SUCCESS] (231/410) test lib scoru wasm: Module Initialisation (Check not found `kernel_run` error (2.0.0-r2)) - [14:11:03.517] [SUCCESS] (232/410) test lib scoru wasm: Module Initialisation (Check `kernel_run` not being a function error (2.0.0-r2)) - [14:11:03.518] [SUCCESS] (233/410) test lib scoru wasm: Module Initialisation (32 bits float types are forbidden (2.0.0-r2)) - [14:11:03.519] [SUCCESS] (234/410) test lib scoru wasm: Module Initialisation (64 bits float types are forbidden (2.0.0-r2)) - [14:11:03.519] [SUCCESS] (235/410) test lib scoru wasm: Module Initialisation (float values are forbidden (2.0.0-r2)) - [14:11:03.520] [SUCCESS] (236/410) test lib scoru wasm: Module Initialisation (init requires memory 0 export (2.0.0-r3)) - [14:11:03.523] [SUCCESS] (237/410) test lib scoru wasm: Module Initialisation (names are limited to 512 bytes (2.0.0-r3)) - [14:11:03.525] [SUCCESS] (238/410) test lib scoru wasm: Module Initialisation (imports only PVM host functions (2.0.0-r3)) - [14:11:03.526] [SUCCESS] (239/410) test lib scoru wasm: Module Initialisation (host functions are restricted in start (2.0.0-r3)) - [14:11:03.526] [SUCCESS] (240/410) test lib scoru wasm: Module Initialisation (Check not found `kernel_run` error (2.0.0-r3)) - [14:11:03.527] [SUCCESS] (241/410) test lib scoru wasm: Module Initialisation (Check `kernel_run` not being a function error (2.0.0-r3)) - [14:11:03.527] [SUCCESS] (242/410) test lib scoru wasm: Module Initialisation (32 bits float types are forbidden (2.0.0-r3)) - [14:11:03.528] [SUCCESS] (243/410) test lib scoru wasm: Module Initialisation (64 bits float types are forbidden (2.0.0-r3)) - [14:11:03.529] [SUCCESS] (244/410) test lib scoru wasm: Module Initialisation (float values are forbidden (2.0.0-r3)) - [14:11:03.531] [SUCCESS] (245/410) test lib scoru wasm: Host functions ticks (Test tickified host function (2.0.0)) - [14:11:03.534] [SUCCESS] (246/410) test lib scoru wasm: Host functions ticks (Test tickified host function (2.0.0-r1)) - [14:11:03.536] [SUCCESS] (247/410) test lib scoru wasm: Host functions ticks (Test tickified host function (2.0.0-r2)) - [14:11:03.539] [SUCCESS] (248/410) test lib scoru wasm: Host functions ticks (Test tickified host function (2.0.0-r3)) - [14:11:10.782] [SUCCESS] (249/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 0 to 1,000) (2.0.0)) - [14:11:39.556] [SUCCESS] (250/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 10,000 to 11,000) (2.0.0)) - [14:11:52.572] [SUCCESS] (251/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 20,000 to 25,000) (2.0.0)) - [14:12:33.425] [SUCCESS] (252/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 30,000 to 35,000) (2.0.0)) - [14:12:40.888] [SUCCESS] (253/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 0 to 1,000) (2.0.0-r1)) - [14:13:08.648] [SUCCESS] (254/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 10,000 to 11,000) (2.0.0-r1)) - [14:13:20.895] [SUCCESS] (255/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 20,000 to 25,000) (2.0.0-r1)) - [14:13:58.804] [SUCCESS] (256/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 30,000 to 35,000) (2.0.0-r1)) - [14:14:06.457] [SUCCESS] (257/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 0 to 1,000) (2.0.0-r2)) - [14:14:35.906] [SUCCESS] (258/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 10,000 to 11,000) (2.0.0-r2)) - [14:14:51.030] [SUCCESS] (259/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 20,000 to 25,000) (2.0.0-r2)) - [14:15:27.486] [SUCCESS] (260/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 30,000 to 35,000) (2.0.0-r2)) - [14:15:34.511] [SUCCESS] (261/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 0 to 1,000) (2.0.0-r3)) - [14:16:01.514] [SUCCESS] (262/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 10,000 to 11,000) (2.0.0-r3)) - [14:16:14.103] [SUCCESS] (263/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 20,000 to 25,000) (2.0.0-r3)) - [14:16:51.692] [SUCCESS] (264/410) test lib scoru wasm: Hash correspondence (Executions correspondence (ticks 30,000 to 35,000) (2.0.0-r3)) - [14:16:51.692] [SUCCESS] (265/410) test lib scoru wasm: Set/get (Get info (2.0.0)) - [14:16:51.692] [SUCCESS] (266/410) test lib scoru wasm: Set/get (Set input (2.0.0)) - [14:16:51.693] [SUCCESS] (267/410) test lib scoru wasm: Set/get (Get output (2.0.0)) - [14:16:51.693] [SUCCESS] (268/410) test lib scoru wasm: Set/get (Get info (2.0.0-r1)) - [14:16:51.693] [SUCCESS] (269/410) test lib scoru wasm: Set/get (Set input (2.0.0-r1)) - [14:16:51.693] [SUCCESS] (270/410) test lib scoru wasm: Set/get (Get output (2.0.0-r1)) - [14:16:51.693] [SUCCESS] (271/410) test lib scoru wasm: Set/get (Get info (2.0.0-r2)) - [14:16:51.693] [SUCCESS] (272/410) test lib scoru wasm: Set/get (Set input (2.0.0-r2)) - [14:16:51.693] [SUCCESS] (273/410) test lib scoru wasm: Set/get (Get output (2.0.0-r2)) - [14:16:51.694] [SUCCESS] (274/410) test lib scoru wasm: Set/get (Get info (2.0.0-r3)) - [14:16:51.694] [SUCCESS] (275/410) test lib scoru wasm: Set/get (Set input (2.0.0-r3)) - [14:16:51.694] [SUCCESS] (276/410) test lib scoru wasm: Set/get (Get output (2.0.0-r3)) - [14:16:51.696] [SUCCESS] (277/410) test lib scoru wasm: Max nb of ticks (nb of ticks limited (2.0.0)) - [14:16:51.697] [SUCCESS] (278/410) test lib scoru wasm: Max nb of ticks (evaluation takes fixed nb of ticks (2.0.0)) - [14:16:51.697] [SUCCESS] (279/410) test lib scoru wasm: Max nb of ticks (stuck in decode (2.0.0)) - [14:16:51.719] [SUCCESS] (280/410) test lib scoru wasm: Max nb of ticks (stuck in init (2.0.0)) - [14:16:51.721] [SUCCESS] (281/410) test lib scoru wasm: Max nb of ticks (nb of ticks limited (2.0.0-r1)) - [14:16:51.722] [SUCCESS] (282/410) test lib scoru wasm: Max nb of ticks (evaluation takes fixed nb of ticks (2.0.0-r1)) - [14:16:51.723] [SUCCESS] (283/410) test lib scoru wasm: Max nb of ticks (stuck in decode (2.0.0-r1)) - [14:16:51.744] [SUCCESS] (284/410) test lib scoru wasm: Max nb of ticks (stuck in init (2.0.0-r1)) - [14:16:51.746] [SUCCESS] (285/410) test lib scoru wasm: Max nb of ticks (nb of ticks limited (2.0.0-r2)) - [14:16:51.747] [SUCCESS] (286/410) test lib scoru wasm: Max nb of ticks (evaluation takes fixed nb of ticks (2.0.0-r2)) - [14:16:51.748] [SUCCESS] (287/410) test lib scoru wasm: Max nb of ticks (stuck in decode (2.0.0-r2)) - [14:16:51.768] [SUCCESS] (288/410) test lib scoru wasm: Max nb of ticks (stuck in init (2.0.0-r2)) - [14:16:51.771] [SUCCESS] (289/410) test lib scoru wasm: Max nb of ticks (nb of ticks limited (2.0.0-r3)) - [14:16:51.772] [SUCCESS] (290/410) test lib scoru wasm: Max nb of ticks (evaluation takes fixed nb of ticks (2.0.0-r3)) - [14:16:51.772] [SUCCESS] (291/410) test lib scoru wasm: Max nb of ticks (stuck in decode (2.0.0-r3)) - [14:16:51.796] [SUCCESS] (292/410) test lib scoru wasm: Max nb of ticks (stuck in init (2.0.0-r3)) - [14:16:51.796] [SUCCESS] (293/410) test lib scoru wasm: Durable storage (store_has missing key (2.0.0)) - [14:16:51.797] [SUCCESS] (294/410) test lib scoru wasm: Durable storage (store_has existing key (2.0.0)) - [14:16:51.798] [SUCCESS] (295/410) test lib scoru wasm: Durable storage (store_has key too long key (2.0.0)) - [14:16:51.799] [SUCCESS] (296/410) test lib scoru wasm: Durable storage (store_list_size counts subtrees (2.0.0)) - [14:16:51.799] [SUCCESS] (297/410) test lib scoru wasm: Durable storage (store_get_nth_key produces subtrees (2.0.0)) - [14:16:51.800] [SUCCESS] (298/410) test lib scoru wasm: Durable storage (store_delete removes subtree and value (2.0.0)) - [14:16:51.800] [SUCCESS] (299/410) test lib scoru wasm: Durable storage (store_copy (2.0.0)) - [14:16:51.800] [SUCCESS] (300/410) test lib scoru wasm: Durable storage (store_copy missing node (2.0.0)) - [14:16:51.800] [SUCCESS] (301/410) test lib scoru wasm: Durable storage (store_move (2.0.0)) - [14:16:51.801] [SUCCESS] (302/410) test lib scoru wasm: Durable storage (store_move missing node (2.0.0)) - [14:16:51.801] [SUCCESS] (303/410) test lib scoru wasm: Durable storage (store_read (2.0.0)) - [14:16:51.801] [SUCCESS] (304/410) test lib scoru wasm: Durable storage (store_read on non-value (2.0.0)) - result -4 - [14:16:51.801] [SUCCESS] (305/410) test lib scoru wasm: Durable storage (store_write (2.0.0)) - [14:16:51.802] [SUCCESS] (306/410) test lib scoru wasm: Durable storage (store_value_size (2.0.0)) - [14:16:51.802] [SUCCESS] (307/410) test lib scoru wasm: Durable storage (store_get_hash (2.0.0)) - [14:16:51.802] [SUCCESS] (308/410) test lib scoru wasm: Durable storage (store_delete_value removes only value (2.0.0)) - [14:16:51.802] [SUCCESS] (309/410) test lib scoru wasm: Durable storage (store_create (2.0.0)) - [14:16:51.802] [SUCCESS] (310/410) test lib scoru wasm: Durable storage (store_exists (2.0.0)) - [14:16:51.802] [SUCCESS] (311/410) test lib scoru wasm: Durable storage (store_has missing key (2.0.0-r1)) - [14:16:51.803] [SUCCESS] (312/410) test lib scoru wasm: Durable storage (store_has existing key (2.0.0-r1)) - [14:16:51.805] [SUCCESS] (313/410) test lib scoru wasm: Durable storage (store_has key too long key (2.0.0-r1)) - [14:16:51.805] [SUCCESS] (314/410) test lib scoru wasm: Durable storage (store_list_size counts subtrees (2.0.0-r1)) - [14:16:51.805] [SUCCESS] (315/410) test lib scoru wasm: Durable storage (store_get_nth_key produces subtrees (2.0.0-r1)) - [14:16:51.806] [SUCCESS] (316/410) test lib scoru wasm: Durable storage (store_delete removes subtree and value (2.0.0-r1)) - [14:16:51.806] [SUCCESS] (317/410) test lib scoru wasm: Durable storage (store_copy (2.0.0-r1)) - [14:16:51.806] [SUCCESS] (318/410) test lib scoru wasm: Durable storage (store_copy missing node (2.0.0-r1)) - [14:16:51.806] [SUCCESS] (319/410) test lib scoru wasm: Durable storage (store_move (2.0.0-r1)) - [14:16:51.807] [SUCCESS] (320/410) test lib scoru wasm: Durable storage (store_move missing node (2.0.0-r1)) - [14:16:51.807] [SUCCESS] (321/410) test lib scoru wasm: Durable storage (store_read (2.0.0-r1)) - [14:16:51.807] [SUCCESS] (322/410) test lib scoru wasm: Durable storage (store_read on non-value (2.0.0-r1)) - result -4 - [14:16:51.808] [SUCCESS] (323/410) test lib scoru wasm: Durable storage (store_write (2.0.0-r1)) - [14:16:51.808] [SUCCESS] (324/410) test lib scoru wasm: Durable storage (store_value_size (2.0.0-r1)) - [14:16:51.808] [SUCCESS] (325/410) test lib scoru wasm: Durable storage (store_get_hash (2.0.0-r1)) - [14:16:51.808] [SUCCESS] (326/410) test lib scoru wasm: Durable storage (store_delete_value removes only value (2.0.0-r1)) - [14:16:51.809] [SUCCESS] (327/410) test lib scoru wasm: Durable storage (store_create (2.0.0-r1)) - [14:16:51.809] [SUCCESS] (328/410) test lib scoru wasm: Durable storage (store_exists (2.0.0-r1)) - [14:16:51.809] [SUCCESS] (329/410) test lib scoru wasm: Durable storage (store_has missing key (2.0.0-r2)) - [14:16:51.810] [SUCCESS] (330/410) test lib scoru wasm: Durable storage (store_has existing key (2.0.0-r2)) - [14:16:51.811] [SUCCESS] (331/410) test lib scoru wasm: Durable storage (store_has key too long key (2.0.0-r2)) - [14:16:51.812] [SUCCESS] (332/410) test lib scoru wasm: Durable storage (store_list_size counts subtrees (2.0.0-r2)) - [14:16:51.812] [SUCCESS] (333/410) test lib scoru wasm: Durable storage (store_get_nth_key produces subtrees (2.0.0-r2)) - [14:16:51.812] [SUCCESS] (334/410) test lib scoru wasm: Durable storage (store_delete removes subtree and value (2.0.0-r2)) - [14:16:51.813] [SUCCESS] (335/410) test lib scoru wasm: Durable storage (store_copy (2.0.0-r2)) - [14:16:51.813] [SUCCESS] (336/410) test lib scoru wasm: Durable storage (store_copy missing node (2.0.0-r2)) - [14:16:51.813] [SUCCESS] (337/410) test lib scoru wasm: Durable storage (store_move (2.0.0-r2)) - [14:16:51.813] [SUCCESS] (338/410) test lib scoru wasm: Durable storage (store_move missing node (2.0.0-r2)) - [14:16:51.814] [SUCCESS] (339/410) test lib scoru wasm: Durable storage (store_read (2.0.0-r2)) - [14:16:51.814] [SUCCESS] (340/410) test lib scoru wasm: Durable storage (store_read on non-value (2.0.0-r2)) - result -4 - [14:16:51.814] [SUCCESS] (341/410) test lib scoru wasm: Durable storage (store_write (2.0.0-r2)) - [14:16:51.814] [SUCCESS] (342/410) test lib scoru wasm: Durable storage (store_value_size (2.0.0-r2)) - [14:16:51.815] [SUCCESS] (343/410) test lib scoru wasm: Durable storage (store_get_hash (2.0.0-r2)) - [14:16:51.815] [SUCCESS] (344/410) test lib scoru wasm: Durable storage (store_delete_value removes only value (2.0.0-r2)) - [14:16:51.815] [SUCCESS] (345/410) test lib scoru wasm: Durable storage (store_create (2.0.0-r2)) - [14:16:51.815] [SUCCESS] (346/410) test lib scoru wasm: Durable storage (store_exists (2.0.0-r2)) - [14:16:51.816] [SUCCESS] (347/410) test lib scoru wasm: Durable storage (store_has missing key (2.0.0-r3)) - [14:16:51.817] [SUCCESS] (348/410) test lib scoru wasm: Durable storage (store_has existing key (2.0.0-r3)) - [14:16:51.818] [SUCCESS] (349/410) test lib scoru wasm: Durable storage (store_has key too long key (2.0.0-r3)) - [14:16:51.818] [SUCCESS] (350/410) test lib scoru wasm: Durable storage (store_list_size counts subtrees (2.0.0-r3)) - [14:16:51.819] [SUCCESS] (351/410) test lib scoru wasm: Durable storage (store_get_nth_key produces subtrees (2.0.0-r3)) - [14:16:51.819] [SUCCESS] (352/410) test lib scoru wasm: Durable storage (store_delete removes subtree and value (2.0.0-r3)) - [14:16:51.819] [SUCCESS] (353/410) test lib scoru wasm: Durable storage (store_copy (2.0.0-r3)) - [14:16:51.820] [SUCCESS] (354/410) test lib scoru wasm: Durable storage (store_copy missing node (2.0.0-r3)) - [14:16:51.820] [SUCCESS] (355/410) test lib scoru wasm: Durable storage (store_move (2.0.0-r3)) - [14:16:51.820] [SUCCESS] (356/410) test lib scoru wasm: Durable storage (store_move missing node (2.0.0-r3)) - [14:16:51.820] [SUCCESS] (357/410) test lib scoru wasm: Durable storage (store_read (2.0.0-r3)) - [14:16:51.821] [SUCCESS] (358/410) test lib scoru wasm: Durable storage (store_read on non-value (2.0.0-r3)) - result -4 - [14:16:51.821] [SUCCESS] (359/410) test lib scoru wasm: Durable storage (store_write (2.0.0-r3)) - [14:16:51.821] [SUCCESS] (360/410) test lib scoru wasm: Durable storage (store_value_size (2.0.0-r3)) - [14:16:51.821] [SUCCESS] (361/410) test lib scoru wasm: Durable storage (store_get_hash (2.0.0-r3)) - [14:16:51.822] [SUCCESS] (362/410) test lib scoru wasm: Durable storage (store_delete_value removes only value (2.0.0-r3)) - [14:16:51.822] [SUCCESS] (363/410) test lib scoru wasm: Durable storage (store_create (2.0.0-r3)) - [14:16:51.822] [SUCCESS] (364/410) test lib scoru wasm: Durable storage (store_exists (2.0.0-r3)) - [14:16:51.822] [SUCCESS] (365/410) test lib scoru wasm: Durable storage (Durable: find value) - [14:16:51.822] [SUCCESS] (366/410) test lib scoru wasm: Durable storage (Durable: count subtrees and list) - [14:16:51.822] [SUCCESS] (367/410) test lib scoru wasm: Durable storage (Durable: invalid keys) - [14:16:51.822] [SUCCESS] (368/410) test lib scoru wasm: Durable storage (Durable: readonly keys) - [14:16:51.823] [SUCCESS] (369/410) test lib scoru wasm: Durable snapshot (Do several operations on durable) - [14:16:53.498] [SUCCESS] (370/410) test lib scoru wasm: Durable snapshot (Descending distributed all operations. Initial size: 2000, 3000 operations) - [14:16:58.767] [SUCCESS] (371/410) test lib scoru wasm: Durable snapshot (Uniformly distributed all operations. Initial size: 2000, 20000 operations) - [14:17:00.002] [SUCCESS] (372/410) test lib scoru wasm: Durable snapshot (Uniformly distributed structural operations. Initial size: 2000, 3000 operations) - [14:17:01.730] [SUCCESS] (373/410) test lib scoru wasm: Durable snapshot (Stress-test operation write_value_exn. Initial size: 1000, 2000 operations) - [14:17:02.757] [SUCCESS] (374/410) test lib scoru wasm: Durable snapshot (Stress-test operation set_value_exn. Initial size: 1000, 2000 operations) - [14:17:03.532] [SUCCESS] (375/410) test lib scoru wasm: Durable snapshot (Stress-test operation find_value. Initial size: 1000, 2000 operations) - [14:17:04.202] [SUCCESS] (376/410) test lib scoru wasm: Durable snapshot (Stress-test operation read_value_exn. Initial size: 1000, 2000 operations) - [14:17:04.851] [SUCCESS] (377/410) test lib scoru wasm: Durable snapshot (Stress-test operation find_value_exn. Initial size: 1000, 2000 operations) - [14:17:05.333] [SUCCESS] (378/410) test lib scoru wasm: Durable snapshot (Stress-test operation delete. Initial size: 1000, 2000 operations) - [14:17:05.951] [SUCCESS] (379/410) test lib scoru wasm: Durable snapshot (Stress-test operation copy_tree_exn. Initial size: 1000, 2000 operations) - [14:17:06.574] [SUCCESS] (380/410) test lib scoru wasm: Durable snapshot (Stress-test operation move_tree_exn. Initial size: 1000, 2000 operations) - [14:17:07.056] [SUCCESS] (381/410) test lib scoru wasm: Durable snapshot (Stress-test operation hash. Initial size: 1000, 2000 operations) - [14:17:07.556] [SUCCESS] (382/410) test lib scoru wasm: Durable snapshot (Stress-test operation list. Initial size: 1000, 2000 operations) - [14:17:08.066] [SUCCESS] (383/410) test lib scoru wasm: Durable snapshot (Stress-test operation count_subtrees. Initial size: 1000, 2000 operations) - [14:17:08.557] [SUCCESS] (384/410) test lib scoru wasm: Durable snapshot (Stress-test operation substree_name_at. Initial size: 1000, 2000 operations) - [14:17:09.032] [SUCCESS] (385/410) test lib scoru wasm: Durable snapshot (Stress-test operation hash_exn. Initial size: 1000, 2000 operations) - [14:17:09.032] [SUCCESS] (386/410) test lib scoru wasm: Debug (debug on correct inputs and memory (2.0.0)) - [14:17:09.033] [SUCCESS] (387/410) test lib scoru wasm: Debug (debug on more than one memory (2.0.0)) - [14:17:09.033] [SUCCESS] (388/410) test lib scoru wasm: Debug (debug during init (2.0.0)) - [14:17:09.049] [SUCCESS] (389/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid length) (2.0.0)) - [14:17:09.049] [SUCCESS] (390/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid offset) (2.0.0)) - [14:17:09.702] [SUCCESS] (391/410) test lib scoru wasm: Debug (Check reading at invalid position of the memory doesn't fail and truncates if possible (2.0.0)) - [14:17:09.702] [SUCCESS] (392/410) test lib scoru wasm: Debug (debug on correct inputs and memory (2.0.0-r1)) - [14:17:09.703] [SUCCESS] (393/410) test lib scoru wasm: Debug (debug on more than one memory (2.0.0-r1)) - [14:17:09.703] [SUCCESS] (394/410) test lib scoru wasm: Debug (debug during init (2.0.0-r1)) - [14:17:09.945] [SUCCESS] (395/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid length) (2.0.0-r1)) - [14:17:09.945] [SUCCESS] (396/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid offset) (2.0.0-r1)) - [14:17:10.456] [SUCCESS] (397/410) test lib scoru wasm: Debug (Check reading at invalid position of the memory doesn't fail and truncates if possible (2.0.0-r1)) - [14:17:10.456] [SUCCESS] (398/410) test lib scoru wasm: Debug (debug on correct inputs and memory (2.0.0-r2)) - [14:17:10.456] [SUCCESS] (399/410) test lib scoru wasm: Debug (debug on more than one memory (2.0.0-r2)) - [14:17:10.456] [SUCCESS] (400/410) test lib scoru wasm: Debug (debug during init (2.0.0-r2)) - [14:17:10.606] [SUCCESS] (401/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid length) (2.0.0-r2)) - [14:17:10.606] [SUCCESS] (402/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid offset) (2.0.0-r2)) - [14:17:11.124] [SUCCESS] (403/410) test lib scoru wasm: Debug (Check reading at invalid position of the memory doesn't fail and truncates if possible (2.0.0-r2)) - [14:17:11.124] [SUCCESS] (404/410) test lib scoru wasm: Debug (debug on correct inputs and memory (2.0.0-r3)) - [14:17:11.125] [SUCCESS] (405/410) test lib scoru wasm: Debug (debug on more than one memory (2.0.0-r3)) - [14:17:11.125] [SUCCESS] (406/410) test lib scoru wasm: Debug (debug during init (2.0.0-r3)) - [14:17:11.312] [SUCCESS] (407/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid length) (2.0.0-r3)) - [14:17:11.312] [SUCCESS] (408/410) test lib scoru wasm: Debug (debug with inputs outside of the memory (invalid offset) (2.0.0-r3)) - [14:17:11.858] [SUCCESS] (409/410) test lib scoru wasm: Debug (Check reading at invalid position of the memory doesn't fail and truncates if possible (2.0.0-r3)) - [14:17:13.248] [SUCCESS] (410/410) test lib scoru wasm: AST Generators (gen_print_module) -> compiled octez-l2-libs.19.1 -> removed octez-l2-libs.19.1 -> installed octez-l2-libs.19.1 Done. # To update the current shell environment, run: eval $(opam env) 2025-09-18 14:17.15 ---> saved as "e0aff6e0c8823b60e55a8e33fc2a9035d63baa0634e817cae3a58d99a7ab0ee0" Job succeeded 2025-09-18 14:17.22: Job succeeded