(not at the head of any monitored branch or PR)
2026-04-10 17:57.35: New job: test polynomial.0.4.0 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall polynomial.0.4.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" != 'polynomial.0.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test polynomial.0.4.0) || true
RUN opam reinstall --with-test --verbose polynomial.0.4.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" != 'polynomial.0.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-04-10 17:57.35: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-polynomial.0.4.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.35: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall polynomial.0.4.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\" != 'polynomial.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test polynomial.0.4.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose polynomial.0.4.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\" != 'polynomial.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-10 17:57.35: Waiting for resource in pool OCluster
2026-04-11 02:35.10: Waiting for worker…
2026-04-11 02:36.48: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  73% (13642/18686)
Updating files:  74% (13828/18686)
Updating files:  75% (14015/18686)
Updating files:  76% (14202/18686)
Updating files:  77% (14389/18686)
Updating files:  78% (14576/18686)
Updating files:  79% (14762/18686)
Updating files:  80% (14949/18686)
Updating files:  81% (15136/18686)
Updating files:  82% (15323/18686)
Updating files:  83% (15510/18686)
Updating files:  84% (15697/18686)
Updating files:  85% (15884/18686)
Updating files:  86% (16070/18686)
Updating files:  87% (16257/18686)
Updating files:  88% (16444/18686)
Updating files:  89% (16631/18686)
Updating files:  90% (16818/18686)
Updating files:  91% (17005/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 02:36.58 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 02:36.58 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 02:36.58 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-11 02:36.58 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 02:36.58 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 02:36.59 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 02:36.59 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1985 kB/s)
- Reading package lists...
2026-04-11 02:36.59 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 02:36.59 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:36.59 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall polynomial.0.4.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\" != 'polynomial.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
polynomial.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install conf-gmp        5     [required by zarith]
  - install conf-pkg-config 4     [required by zarith]
  - install ff-sig          0.6.2 [required by polynomial]
  - install ocamlfind       1.9.8 [required by zarith]
  - install polynomial      0.4.0
  - install zarith          1.14  [required by polynomial]

The following system packages will first need to be installed:
    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" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl: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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-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 .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5  (cached)
-> retrieved ff-sig.0.6.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved polynomial.0.4.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed ff-sig.0.6.2
-> installed polynomial.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:37.20 ---> saved as "bac29bc9fda939a63e22e65a7e0cc6b3a12a2f4b86a2342a8d500dbaadbd56b2"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test polynomial.0.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile polynomial           0.4.0
=== install 29 packages
  - install   alcotest             1.9.1    [required by polynomial]
  - install   astring              0.8.5    [required by alcotest]
  - install   bisect_ppx           2.8.3    [required by polynomial]
  - install   cmdliner             1.3.0    [required by alcotest, bisect_ppx]
  - install   ff                   0.6.2    [required by polynomial]
  - install   fmt                  0.11.0   [required by alcotest]
  - install   gen                  1.1      [required by sedlex]
  - install   js_of_ocaml          6.2.0    [required by polynomial]
  - install   js_of_ocaml-compiler 6.2.0    [required by js_of_ocaml]
  - install   js_of_ocaml-ppx      6.2.0    [required by polynomial]
  - install   menhir               20260209 [required by js_of_ocaml-compiler]
  - install   menhirCST            20260209 [required by menhir]
  - install   menhirGLR            20260209 [required by menhir]
  - install   menhirLib            20260209 [required by js_of_ocaml-compiler]
  - install   menhirSdk            20260209 [required by js_of_ocaml-compiler]
  - 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 fmt, astring, uutf]
  - install   ppx_derivers         1.2.1    [required by ppxlib]
  - install   ppxlib               0.35.0   [required by js_of_ocaml, bisect_ppx, js_of_ocaml-ppx]
  - install   re                   1.14.0   [required by alcotest]
  - install   sedlex               3.7      [required by js_of_ocaml-compiler]
  - install   seq                  base     [required by gen]
  - install   sexplib0             v0.17.0  [required by ppxlib]
  - install   stdlib-shims         0.3.0    [required by alcotest]
  - install   topkg                1.1.1    [required by fmt, astring, uutf]
  - install   uutf                 1.0.4    [required by alcotest]
  - install   yojson               3.0.0    [required by js_of_ocaml-compiler]
  - install   zarith_stubs_js      v0.16.1  [required by polynomial]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved bisect_ppx.2.8.3  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved ff.0.6.2  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved gen.1.1  (https://opam.ocaml.org/cache)
-> installed ff.0.6.2
-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0, js_of_ocaml-ppx.6.2.0  (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://opam.ocaml.org/cache)
-> installed cmdliner.1.3.0
-> installed menhirCST.20260209
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved polynomial.0.4.0  (https://opam.ocaml.org/cache)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved sedlex.3.7  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> retrieved zarith_stubs_js.v0.16.1  (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> installed zarith_stubs_js.v0.16.1
-> installed gen.1.1
-> installed re.1.14.0
-> installed yojson.3.0.0
-> removed   polynomial.0.4.0
-> installed ocamlbuild.0.16.1
-> installed menhir.20260209
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed ppxlib.0.35.0
-> installed bisect_ppx.2.8.3
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.6.2.0
-> installed js_of_ocaml.6.2.0
-> installed js_of_ocaml-ppx.6.2.0
-> installed polynomial.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:39.41 ---> saved as "cbd0ffda10d0e677f1ed98834c231dd9b5ba4b7830ab7ea31d504dd8e108c5c0"

/home/opam: (run (shell  "opam reinstall --with-test --verbose polynomial.0.4.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\" != 'polynomial.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile polynomial 0.4.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [polynomial.0.4.0: extract]
-> retrieved polynomial.0.4.0  (cached)
Processing  2/4: [polynomial: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-j" "71" "-p" "polynomial" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/polynomial.0.4.0)
Processing  2/4: [polynomial: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "polynomial" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/polynomial.0.4.0)
- (cd _build/default/test && ./test_utils.exe)
- Testing `Utils'.
- This run has ID `4FK1R19I'.
- 
-   [OK]          Reorganizing the coefficients          0   Next power of two.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/polynomial.0.4.0/_build/default/test/_build/_tests/Utils'.
- Test Successful in 0.000s. 1 test run.
- (cd _build/default/test && ./test_with_finite_field.exe)
- Testing `Polynomials with F379 and some random prime fields'.
- This run has ID `WE3LNGF3'.
- 
-   [OK]          Tests on degrees, field order = 498720353                                                                                                                                              0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 498720353                                                                                                                                              1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 498720353                                                                                                                                              2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 498720353                                                                                                                                              3   have same degree....
-   [OK]          Test evaluation, field order = 498720353                                                                                                                                               0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 498720353                                                                                                                                               1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 498720353                                                                                                                                               2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 498720353                                                                                                                                               3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 498720353                                                                                                                                               4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 498720353                                                                                                                                           0   test vectors for random....
-   [OK]          Euclidian division for prime field 498720353                                                                                                                                           1   test with constants....
-   [OK]          Euclidian division for prime field 498720353                                                                                                                                           2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 498720353                                                                                                                                    0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 498720353                                                                                                                                    1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 498720353                                                                                                                                    2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 498720353                                                                                                                                   0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 498720353                                                                                                                                0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 498720353                                                                                                                    0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 498720353                                                                                                                                0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 498720353                                                                                                                                1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 498720353                                                                                                                                2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 498720353                                                                                                                               0   test random number of points....
-   [OK]          Tests on degrees, field order = 278682161                                                                                                                                              0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 278682161                                                                                                                                              1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 278682161                                                                                                                                              2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 278682161                                                                                                                                              3   have same degree....
-   [OK]          Test evaluation, field order = 278682161                                                                                                                                               0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 278682161                                                                                                                                               1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 278682161                                                                                                                                               2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 278682161                                                                                                                                               3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 278682161                                                                                                                                               4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 278682161                                                                                                                                           0   test vectors for random....
-   [OK]          Euclidian division for prime field 278682161                                                                                                                                           1   test with constants....
-   [OK]          Euclidian division for prime field 278682161                                                                                                                                           2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 278682161                                                                                                                                    0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 278682161                                                                                                                                    1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 278682161                                                                                                                                    2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 278682161                                                                                                                                   0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 278682161                                                                                                                                0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 278682161                                                                                                                    0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 278682161                                                                                                                                0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 278682161                                                                                                                                1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 278682161                                                                                                                                2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 278682161                                                                                                                               0   test random number of points....
-   [OK]          Tests on degrees, field order = 270163213                                                                                                                                              0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 270163213                                                                                                                                              1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 270163213                                                                                                                                              2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 270163213                                                                                                                                              3   have same degree....
-   [OK]          Test evaluation, field order = 270163213                                                                                                                                               0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 270163213                                                                                                                                               1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 270163213                                                                                                                                               2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 270163213                                                                                                                                               3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 270163213                                                                                                                                               4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 270163213                                                                                                                                           0   test vectors for random....
-   [OK]          Euclidian division for prime field 270163213                                                                                                                                           1   test with constants....
-   [OK]          Euclidian division for prime field 270163213                                                                                                                                           2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 270163213                                                                                                                                    0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 270163213                                                                                                                                    1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 270163213                                                                                                                                    2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 270163213                                                                                                                                   0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 270163213                                                                                                                                0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 270163213                                                                                                                    0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 270163213                                                                                                                                0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 270163213                                                                                                                                1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 270163213                                                                                                                                2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 270163213                                                                                                                               0   test random number of points....
-   [OK]          Tests on degrees, field order = 982257589                                                                                                                                              0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 982257589                                                                                                                                              1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 982257589                                                                                                                                              2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 982257589                                                                                                                                              3   have same degree....
-   [OK]          Test evaluation, field order = 982257589                                                                                                                                               0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 982257589                                                                                                                                               1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 982257589                                                                                                                                               2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 982257589                                                                                                                                               3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 982257589                                                                                                                                               4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 982257589                                                                                                                                           0   test vectors for random....
-   [OK]          Euclidian division for prime field 982257589                                                                                                                                           1   test with constants....
-   [OK]          Euclidian division for prime field 982257589                                                                                                                                           2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 982257589                                                                                                                                    0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 982257589                                                                                                                                    1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 982257589                                                                                                                                    2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 982257589                                                                                                                                   0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 982257589                                                                                                                                0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 982257589                                                                                                                    0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 982257589                                                                                                                                0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 982257589                                                                                                                                1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 982257589                                                                                                                                2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 982257589                                                                                                                               0   test random number of points....
-   [OK]          Tests on degrees, field order = 538040609                                                                                                                                              0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 538040609                                                                                                                                              1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 538040609                                                                                                                                              2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 538040609                                                                                                                                              3   have same degree....
-   [OK]          Test evaluation, field order = 538040609                                                                                                                                               0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 538040609                                                                                                                                               1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 538040609                                                                                                                                               2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 538040609                                                                                                                                               3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 538040609                                                                                                                                               4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 538040609                                                                                                                                           0   test vectors for random....
-   [OK]          Euclidian division for prime field 538040609                                                                                                                                           1   test with constants....
-   [OK]          Euclidian division for prime field 538040609                                                                                                                                           2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 538040609                                                                                                                                    0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 538040609                                                                                                                                    1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 538040609                                                                                                                                    2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 538040609                                                                                                                                   0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 538040609                                                                                                                                0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 538040609                                                                                                                    0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 538040609                                                                                                                                0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 538040609                                                                                                                                1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 538040609                                                                                                                                2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 538040609                                                                                                                               0   test random number of points....
-   [OK]          Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                          0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                          1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                          2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                          3   have same degree....
-   [OK]          Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                       0   test vectors for random....
-   [OK]          Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                       1   test with constants....
-   [OK]          Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                       2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                               0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                           0   test random number of points....
-   [OK]          Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            0   Compare FFT version of polynomial multiplication against normal polynomial multiplication....
-   [OK]          Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            1   At least one of the polynomial is zero....
-   [OK]          Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            2   Verify the degree of P * Q is correct....
-   [OK]          Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                            3   Commutativity of polynomial multiplication using FFT....
-   [OK]          Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           0   test evaluation at random points....
-   [OK]          Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           1   test evaluation with zero polynomial....
-   [OK]          Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           2   test evaluation with smaller polynomial....
-   [OK]          Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                           3   test evaluation with larger polynomial....
-   [OK]          Inverse FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                              0   test interpolation at random points....
-   [OK]          Inverse FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513                                                                              1   test interpolation with only roots....
-   [OK]          Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                    0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                    1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                    2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                    3   have same degree....
-   [OK]          Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                     0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                     1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                     2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                     3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                     4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                 0   test vectors for random....
-   [OK]          Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                 1   test with constants....
-   [OK]          Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                                 2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                          0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                          1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                          2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                         0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                      0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787          0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                      0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                      1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                      2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787                     0   test random number of points....
-   [OK]          Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                          0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                          1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                          2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                          3   have same degree....
-   [OK]          Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                           0   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                           1   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                           2   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                           3   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                           4   evaluation at any point of the polynomial X....
-   [OK]          Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                       0   test vectors for random....
-   [OK]          Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                       1   test with constants....
-   [OK]          Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                       2   test vectors for random divided by constant....
-   [OK]          Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                0   test properties nullifier 0 * P = P * 0 = 0....
-   [OK]          Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                1   test properties commutativity p * q = p * q....
-   [OK]          Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                                2   test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q....
-   [OK]          Extended Euclide alogrithm for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                               0   test properties on random polynomials....
-   [OK]          Dense polynomial coefficients for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                            0   test vectors....
-   [OK]          Dense polynomial coefficients with degree for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                0   test vectors....
-   [OK]          Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                            0   zero polynomial is constant....
-   [OK]          Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                            1   Constant random value....
-   [OK]          Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                            2   Non constant polynomial....
-   [OK]          Test lagrange interpolation, prime field order 57896044618658097711785492504343953926634992332820282019728792003956564819949                                                           0   test random number of points....
-   [OK]          Tests on degrees, field order = 379                                                                                                                                                    0   degree of zero is infinity....
-   [OK]          Tests on degrees, field order = 379                                                                                                                                                    1   degree of constants is one....
-   [OK]          Tests on degrees, field order = 379                                                                                                                                                    2   degree int test vectors....
-   [OK]          Tests on degrees, field order = 379                                                                                                                                                    3   have same degree....
-   [OK]          Test evaluation, field order = 379                                                                                                                                                     0   evaluation test vectors....
-   [OK]          Test evaluation, field order = 379                                                                                                                                                     1   evaluation at any point of the zero polynomial....
-   [OK]          Test evaluation, field order = 379                                                                                                                                                     2   evaluation at any point of a random constant polynomial....
-   [OK]          Test evaluation, field order = 379                                                                                                                                                     3   evaluation at zero of a random constant polynomial....
-   [OK]          Test evaluation, field order = 379                                                                                                                                                     4   evaluation at zero of the zero polynomial....
-   [OK]          Test evaluation, field order = 379                                                                                                                                                     5   evaluation at any point of the polynomial X....
-   [OK]          Test lagrange interpolation, prime field order 379                                                                                                                                     0   test vector....
-   [OK]          Test lagrange interpolation, prime field order 379                                                                                                                                     1   test random number of points....
-   [OK]          Test mult by scalar                                                                                                                                                                    0   test vectors....
-   [OK]          Test mult by scalar                                                                                                                                                                    1   test multiply constants by scalar zero is zero....
-   [OK]          Test mult by scalar                                                                                                                                                                    2   test multiply degree one by scalar zero is zero....
-   [OK]          Test opposite                                                                                                                                                                          0   test property opposite twice....
-   [OK]          Test opposite                                                                                                                                                                          1   test property opposite of constant....
-   [OK]          Test opposite                                                                                                                                                                          2   test property opposite of zero....
-   [OK]          Split polynomials                                                                                                                                                                      0   Test even polynomial with test vectors....
-   [OK]          Split polynomials                                                                                                                                                                      1   Test odd polynomial with test vectors....
-   [OK]          Dense polynomial coefficients for prime field 379                                                                                                                                      0   test vectors....
-   [OK]          Inverse FFT for prime field 337                                                                                                                                                        0   test vectors for interpolation fft....
-   [OK]          Inverse FFT for prime field 337                                                                                                                                                        1   test interpolation at random points....
-   [OK]          Inverse FFT for prime field 337                                                                                                                                                        2   test interpolation with only roots....
-   [OK]          Polynomial multiplication FFT for prime field 337                                                                                                                                      0   test vectors for polynomial multiplication FFT....
-   [OK]          Polynomial multiplication FFT for prime field 337                                                                                                                                      1   Compare FFT version of polynomial multiplication against normal polynomial multiplication....
-   [OK]          Polynomial multiplication FFT for prime field 337                                                                                                                                      2   At least one of the polynomial is zero....
-   [OK]          Polynomial multiplication FFT for prime field 337                                                                                                                                      3   Verify the degree of P * Q is correct....
-   [OK]          Polynomial multiplication FFT for prime field 337                                                                                                                                      4   Commutativity of polynomial multiplication using FFT....
-   [OK]          Evaluation FFT for prime field 337                                                                                                                                                     0   test vectors for evaluation....
-   [OK]          Evaluation FFT for prime field 337                                                                                                                                                     1   test evaluation at random points....
-   [OK]          Evaluation FFT for prime field 337                                                                                                                                                     2   test evaluation with zero polynomial....
-   [OK]          Evaluation FFT for prime field 337                                                                                                                                                     3   test evaluation with smaller polynomial....
-   [OK]          Evaluation FFT for prime field 337                                                                                                                                                     4   test evaluation with larger polynomial....
-   [OK]          Euclidian division for prime field 379                                                                                                                                                 0   test vectors for euclidian division....
-   [OK]          Euclidian division for prime field 379                                                                                                                                                 1   test vectors for random....
-   [OK]          Euclidian division for prime field 379                                                                                                                                                 2   test with constants....
-   [OK]          Euclidian division for prime field 379                                                                                                                                                 3   test vectors for random divided by constant....
-   [OK]          Extended Euclide alogrithm for prime field 379                                                                                                                                         0   test properties on random polynomials....
-   [OK]          Test add                                                                                                                                                                               0   test vectors....
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/polynomial.0.4.0/_build/default/test/_build/_tests/Polynomials with F379 and some random prime fields'.
- Test Successful in 0.022s. 226 tests run.
-> compiled  polynomial.0.4.0
-> removed   polynomial.0.4.0
-> installed polynomial.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:40.05 ---> saved as "ef68986d6cf3aa10e9f057c8b66995dc44a3c805efd5786a7692f56111d20fc3"
Job succeeded
2026-04-11 02:40.17: Job succeeded