(for PR #28931)
2025-11-23 10:30.18: New job: test lmdb.1.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/28931/head (8f00c13a54683097cc781d46df0c18b7f635d303)
on debian-13-ocaml-4.14/ppc64le
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28931/head" && git reset --hard 8f00c13a
git fetch origin master
git merge --no-edit 90ae18973efb465b99913d4664b7d87c21628a19
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:8e0fa55c5724522009328de4059d85868cbceec5e2e784cdaff16370058b1ad0
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 lmdb.1.0 1.0
RUN opam reinstall lmdb.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lmdb.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test lmdb.1.0) || true
RUN opam reinstall --with-test --verbose lmdb.1.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'lmdb.1.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-11-23 10:30.18: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:8e0fa55c5724522009328de4059d85868cbceec5e2e784cdaff16370058b1ad0-lmdb.1.0-8f00c13a54683097cc781d46df0c18b7f635d303"
2025-11-23 10:30.18: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:8e0fa55c5724522009328de4059d85868cbceec5e2e784cdaff16370058b1ad0)
(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 lmdb.1.0 1.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lmdb.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lmdb.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test lmdb.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose lmdb.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lmdb.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-11-23 10:30.18: Waiting for resource in pool OCluster
2025-11-23 10:30.18: Waiting for worker…
2025-11-23 10:30.18: Got resource from pool OCluster
Building on orithia.caelum.ci.dev
All commits already cached
HEAD is now at 90ae18973e Merge pull request #28929 from sim642/release-goblint-cil-2.0.9
Merge made by the 'ort' strategy.
packages/lmdb/lmdb.1.0/opam | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
(from ocaml/opam:debian-13-ocaml-4.14@sha256:8e0fa55c5724522009328de4059d85868cbceec5e2e784cdaff16370058b1ad0)
2025-11-23 10:30.28 ---> using "1512bb3644b45ff254cda0409dab130b6c2c0c3354f990ada3a9bbf962836822" 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-11-23 10:30.28 ---> using "e02e1ffa10603cfda126b65ff5be9801004174acd5024fb2700094b0cd23d7ac" 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
2025-11-23 10:30.28 ---> using "5eb729855606a379ba97a23e1f1b84e0bd5a108fff203b4a4255fad839db2790" 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~beta1
# self-upgrade no
# system arch=ppc64 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 175
# 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-11-23 10:30.28 ---> using "ee8ebae6f8340d3d08c0c7214b968def1b318d515fd41dbec2c74ec04abb66a8" 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-11-23 10:30.28 ---> using "9ed3fe2a86a18c42c51adb8dd5ae76161f7bbf7740308fbfb35b55f651e75180" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-23 10:33.49 ---> saved as "050d082d18537a4fbc4f81862787378f482520e7f6b3251d7dac051099cd6dc9"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-23 10:34.07 ---> saved as "c367353e9713e8b9da4504d551103982858528df7af27c3dca5bc291a599090b"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main ppc64el Packages [9508 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main ppc64el Packages [69.3 kB]
- Fetched 9808 kB in 8s (1258 kB/s)
- Reading package lists...
-
2025-11-23 10:34.16 ---> saved as "d9da01cccf07e42dffa74a9f0ef01a047e5fc73c5adfe0cfc79afd256e901859"
/home/opam: (run (shell "opam pin add -k version -yn lmdb.1.0 1.0"))
lmdb is now pinned to version 1.0
2025-11-23 10:34.17 ---> saved as "b6a48554376ff54c5b7d2015c1c547ea15e398c9f21999c7b553af20d32abe21"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lmdb.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lmdb.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lmdb.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install bigstringaf 0.10.0 [required by lmdb]
- install conf-pkg-config 4 [required by lmdb]
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.20.2 [required by lmdb]
- install dune-configurator 3.20.2 [required by lmdb]
- install lmdb 1.0 (pinned)
The following system packages will first need to be installed:
liblmdb-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" "liblmdb-dev" "pkg-config"
- Selecting previously unselected package liblmdb0:ppc64el.
- (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 ... 20597 files and directories currently installed.)
- Preparing to unpack .../0-liblmdb0_0.9.31-1+b2_ppc64el.deb ...
- Unpacking liblmdb0:ppc64el (0.9.31-1+b2) ...
- Selecting previously unselected package liblmdb-dev:ppc64el.
- Preparing to unpack .../1-liblmdb-dev_0.9.31-1+b2_ppc64el.deb ...
- Unpacking liblmdb-dev:ppc64el (0.9.31-1+b2) ...
- Selecting previously unselected package libpkgconf3:ppc64el.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_ppc64el.deb ...
- Unpacking libpkgconf3:ppc64el (1.8.1-4) ...
- Selecting previously unselected package lmdb-doc.
- Preparing to unpack .../3-lmdb-doc_0.9.31-1_all.deb ...
- Unpacking lmdb-doc (0.9.31-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../4-pkgconf-bin_1.8.1-4_ppc64el.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:ppc64el.
- Preparing to unpack .../5-pkgconf_1.8.1-4_ppc64el.deb ...
- Unpacking pkgconf:ppc64el (1.8.1-4) ...
- Selecting previously unselected package pkg-config:ppc64el.
- Preparing to unpack .../6-pkg-config_1.8.1-4_ppc64el.deb ...
- Unpacking pkg-config:ppc64el (1.8.1-4) ...
- Setting up liblmdb0:ppc64el (0.9.31-1+b2) ...
- Setting up lmdb-doc (0.9.31-1) ...
- Setting up libpkgconf3:ppc64el (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up liblmdb-dev:ppc64el (0.9.31-1+b2) ...
- Setting up pkgconf:ppc64el (1.8.1-4) ...
- Setting up pkg-config:ppc64el (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigstringaf.0.10.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
-> retrieved lmdb.1.0 (cached)
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed lmdb.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-23 10:34.51 ---> saved as "734f77338eb1d6147a714da1915cc822cfdb334a983c8009a804edb6c8222021"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lmdb.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lmdb 1.0 (pinned)
=== install 12 packages
- install alcotest 1.9.1 [required by lmdb]
- install astring 0.8.5 [required by alcotest]
- install benchmark 1.7 [required by lmdb]
- install cmdliner 2.0.0 [required by alcotest]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install re 1.14.0 [required by alcotest]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved benchmark.1.7 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.0.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> installed benchmark.1.7
-> retrieved lmdb.1.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> removed lmdb.1.0
-> installed cmdliner.2.0.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
[ERROR] The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 175".
#=== ERROR while compiling lmdb.1.0 ===========================================#
# context 2.5.0~beta1 | linux/ppc64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/Drup/ocaml-lmdb/archive/1.0.tar.gz)
# path ~/.opam/4.14/.opam-switch/build/lmdb.1.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p lmdb -j 175
# exit-code 1
# env-file ~/.opam/log/lmdb-7-eb2404.env
# output-file ~/.opam/log/lmdb-7-eb2404.out
### output ###
# File "tests/dune", line 14, characters 7-11:
# 14 | (name test)
# ^^^^
# (cd _build/default/tests && ./test.exe --color=always -q)
# Version: LMDB 0.9.31: (July 10, 2023)
# Or: (0,9,31)
# OCaml Version: 4.14.2
# Testing `Lmdb'.
# This run has ID `BYG80N3R'.
#
# [OK] capabilities 0 capabilities.
# [OK] types 0 value restriction.
# [OK] types 1 can read from writable.
# [OK] types 2 ro txn on rw env.
# [OK] map 0 add uni.
# [OK] map 1 add dup.
# [OK] map 2 set uni.
# [FAIL] map 3 set dup.
# [OK] map 4 get uni.
# [FAIL] map 5 get dup.
# [OK] map 6 remove.
# [OK] cursor 0 fold_left uni.
# [OK] cursor 1 fold_right uni.
# [OK] cursor 2 iter uni.
# [OK] cursor 3 fold_left dup.
# [OK] cursor 4 fold_right dup.
# [OK] cursor 5 iter dup.
# [OK] cursor 6 fold_left_all.
# [OK] cursor 7 fold_right_all.
# [OK] cursor 8 iter_all.
# [OK] cursor 9 add uni.
# [OK] cursor 10 add dup.
# [OK] cursor 11 set uni.
# [FAIL] cursor 12 set dup.
# [OK] cursor 13 get uni.
# [FAIL] cursor 14 get dup.
# [OK] cursor 15 remove.
# [OK] cursor 16 walk uni.
# [OK] cursor 17 walk dup.
# [OK] cursor 18 first/last get first/last val...
# [OK] cursor 19 *_all.
# [FAIL] cursor 20 get_multiple.
# [OK] cursor 21 wrong map.
# [FAIL] Int 0 int32_be.
# [FAIL] Int 1 int32_le.
# [FAIL] Int 2 int64_be.
# [FAIL] Int 3 int64_le.
# [OK] regression tests 0 unnamed dbi.
# [OK] regression tests 1 dup unnamed dbi.
# [OK] transaction 0 abort.
# [OK] transaction 1 wrong envirronment.
# [OK] transaction 2 MAP_FULL triggered by txn_com...
# [OK] transaction 3 MAP_FULL triggered by Map.add.
# [OK] transaction 4 MAP_FULL not passed on to Txn...
# [FAIL] threaded GC stress 0 stress 1s.
# [SKIP] Problem reports 0 #15.
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] map 3 set dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_map.(fun) in file "tests/test.ml", line 145, characters 6-27
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/map.003.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] map 5 get dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_map.(fun) in file "tests/test.ml", line 145, characters 6-27
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_map.(fun) in file "tests/test.ml", line 154, characters 6-27
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/map.005.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] cursor 12 set dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Cursor.set in file "src/lmdb.ml", line 701, characters 4-37
# Called from Test.test_cursor.(fun) in file "tests/test.ml", line 302, characters 6-30
# Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
# Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.012.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] cursor 14 get dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT get returns first value
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Cursor.set in file "src/lmdb.ml", line 701, characters 4-37
# Called from Test.test_cursor.(fun) in file "tests/test.ml", line 302, characters 6-30
# Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
# Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.014.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] cursor 20 get_multiple. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Cursor.put_raw_key in file "src/lmdb.ml", line 666, characters 6-39
# Called from Test.test_cursor.(fun) in file "tests/test.ml", line 407, characters 8-46
# Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
# Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.020.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 0 int32_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 1 int32_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.001.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 2 int64_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.002.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 3 int64_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.003.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] threaded GC stress 0 stress 1s. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb.Error(MDB_DBS_FULL: Environment maxdbs limit reached)
# Raised by primitive operation at Lmdb.Map.create.(fun) in file "src/lmdb.ml", line 328, characters 16-43
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Lmdb.Map.create in file "src/lmdb.ml", line 327, characters 6-528
# Called from Test.test_stress.stress in file "tests/test.ml", line 464, characters 6-122
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/threaded GC stress.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
# Full test results in `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb'.
# 10 failures! in 0.026s. 45 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build lmdb 1.0
+-
+- The following changes have been performed
| - remove lmdb 1.0
| - install alcotest 1.9.1
| - install astring 0.8.5
| - install benchmark 1.7
| - install cmdliner 2.0.0
| - install fmt 0.11.0
| - install ocaml-syntax-shims 1.0.0
| - install ocamlbuild 0.16.1
| - install ocamlfind 1.9.8
| - install re 1.14.0
| - install stdlib-shims 0.3.0
| - install topkg 1.1.1
| - install uutf 1.0.4
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20251123103451.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2025-11-23 10:35.10 ---> saved as "18f3685a1fd59daa25f3286233c64b43eb223ebaf11526b3307bde3935bb4c84"
/home/opam: (run (shell "opam reinstall --with-test --verbose lmdb.1.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'lmdb.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lmdb.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install lmdb 1.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/3: [lmdb.1.0: extract]
-> retrieved lmdb.1.0 (cached)
Processing 2/3: [lmdb: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "lmdb" "-j" "175" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lmdb.1.0)
Processing 2/3: [lmdb: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "lmdb" "-j" "175" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lmdb.1.0)
- File "tests/dune", line 14, characters 7-11:
- 14 | (name test)
- ^^^^
- (cd _build/default/tests && ./test.exe --color=always -q)
- Version: LMDB 0.9.31: (July 10, 2023)
- Or: (0,9,31)
- OCaml Version: 4.14.2
- Testing `Lmdb'.
- This run has ID `M12RESRV'.
-
- [OK] capabilities 0 capabilities.
- [OK] types 0 value restriction.
- [OK] types 1 can read from writable.
- [OK] types 2 ro txn on rw env.
- [OK] map 0 add uni.
- [OK] map 1 add dup.
- [OK] map 2 set uni.
- [FAIL] map 3 set dup.
- [OK] map 4 get uni.
- [FAIL] map 5 get dup.
- [OK] map 6 remove.
- [OK] cursor 0 fold_left uni.
- [OK] cursor 1 fold_right uni.
- [OK] cursor 2 iter uni.
- [OK] cursor 3 fold_left dup.
- [OK] cursor 4 fold_right dup.
- [OK] cursor 5 iter dup.
- [OK] cursor 6 fold_left_all.
- [OK] cursor 7 fold_right_all.
- [OK] cursor 8 iter_all.
- [OK] cursor 9 add uni.
- [OK] cursor 10 add dup.
- [OK] cursor 11 set uni.
- [FAIL] cursor 12 set dup.
- [OK] cursor 13 get uni.
- [FAIL] cursor 14 get dup.
- [OK] cursor 15 remove.
- [OK] cursor 16 walk uni.
- [OK] cursor 17 walk dup.
- [OK] cursor 18 first/last get first/last val...
- [OK] cursor 19 *_all.
- [FAIL] cursor 20 get_multiple.
- [OK] cursor 21 wrong map.
- [FAIL] Int 0 int32_be.
- [FAIL] Int 1 int32_le.
- [FAIL] Int 2 int64_be.
- [FAIL] Int 3 int64_le.
- [OK] regression tests 0 unnamed dbi.
- [OK] regression tests 1 dup unnamed dbi.
- [OK] transaction 0 abort.
- [OK] transaction 1 wrong envirronment.
- [OK] transaction 2 MAP_FULL triggered by txn_com...
- [OK] transaction 3 MAP_FULL triggered by Map.add.
- [OK] transaction 4 MAP_FULL not passed on to Txn...
- [FAIL] threaded GC stress 0 stress 1s.
- [SKIP] Problem reports 0 #15.
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] map 3 set dup. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_map.(fun) in file "tests/test.ml", line 145, characters 6-27
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/map.003.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] map 5 get dup. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_map.(fun) in file "tests/test.ml", line 145, characters 6-27
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_map.(fun) in file "tests/test.ml", line 154, characters 6-27
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/map.005.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] cursor 12 set dup. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Cursor.set in file "src/lmdb.ml", line 701, characters 4-37
- Called from Test.test_cursor.(fun) in file "tests/test.ml", line 302, characters 6-30
- Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
- Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
- Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.012.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] cursor 14 get dup. │
- └──────────────────────────────────────────────────────────────────────────────┘
- ASSERT get returns first value
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Cursor.set in file "src/lmdb.ml", line 701, characters 4-37
- Called from Test.test_cursor.(fun) in file "tests/test.ml", line 302, characters 6-30
- Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
- Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
- Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.014.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] cursor 20 get_multiple. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Cursor.put_raw_key in file "src/lmdb.ml", line 666, characters 6-39
- Called from Test.test_cursor.(fun) in file "tests/test.ml", line 407, characters 8-46
- Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
- Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
- Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.020.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] Int 0 int32_be. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.000.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] Int 1 int32_le. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.001.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] Int 2 int64_be. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.002.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] Int 3 int64_le. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb__Lmdb_bindings.Map_full
- Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
- Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.003.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] threaded GC stress 0 stress 1s. │
- └──────────────────────────────────────────────────────────────────────────────┘
- [exception] Lmdb.Error(MDB_DBS_FULL: Environment maxdbs limit reached)
- Raised by primitive operation at Lmdb.Map.create.(fun) in file "src/lmdb.ml", line 328, characters 16-43
- Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
- Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
- Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
- Called from Lmdb.Map.create in file "src/lmdb.ml", line 327, characters 6-528
- Called from Test.test_stress.stress in file "tests/test.ml", line 464, characters 6-122
- Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
- Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
-
- Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/threaded GC stress.000.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
- Full test results in `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb'.
- 10 failures! in 0.023s. 45 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build lmdb 1.0
+-
- No changes have been performed
[ERROR] The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 175".
#=== ERROR while compiling lmdb.1.0 ===========================================#
# context 2.5.0~beta1 | linux/ppc64 | ocaml-base-compiler.4.14.2 | pinned(https://github.com/Drup/ocaml-lmdb/archive/1.0.tar.gz)
# path ~/.opam/4.14/.opam-switch/build/lmdb.1.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p lmdb -j 175
# exit-code 1
# env-file ~/.opam/log/lmdb-7-52ec22.env
# output-file ~/.opam/log/lmdb-7-52ec22.out
### output ###
# File "tests/dune", line 14, characters 7-11:
# 14 | (name test)
# ^^^^
# (cd _build/default/tests && ./test.exe --color=always -q)
# Version: LMDB 0.9.31: (July 10, 2023)
# Or: (0,9,31)
# OCaml Version: 4.14.2
# Testing `Lmdb'.
# This run has ID `M12RESRV'.
#
# [OK] capabilities 0 capabilities.
# [OK] types 0 value restriction.
# [OK] types 1 can read from writable.
# [OK] types 2 ro txn on rw env.
# [OK] map 0 add uni.
# [OK] map 1 add dup.
# [OK] map 2 set uni.
# [FAIL] map 3 set dup.
# [OK] map 4 get uni.
# [FAIL] map 5 get dup.
# [OK] map 6 remove.
# [OK] cursor 0 fold_left uni.
# [OK] cursor 1 fold_right uni.
# [OK] cursor 2 iter uni.
# [OK] cursor 3 fold_left dup.
# [OK] cursor 4 fold_right dup.
# [OK] cursor 5 iter dup.
# [OK] cursor 6 fold_left_all.
# [OK] cursor 7 fold_right_all.
# [OK] cursor 8 iter_all.
# [OK] cursor 9 add uni.
# [OK] cursor 10 add dup.
# [OK] cursor 11 set uni.
# [FAIL] cursor 12 set dup.
# [OK] cursor 13 get uni.
# [FAIL] cursor 14 get dup.
# [OK] cursor 15 remove.
# [OK] cursor 16 walk uni.
# [OK] cursor 17 walk dup.
# [OK] cursor 18 first/last get first/last val...
# [OK] cursor 19 *_all.
# [FAIL] cursor 20 get_multiple.
# [OK] cursor 21 wrong map.
# [FAIL] Int 0 int32_be.
# [FAIL] Int 1 int32_le.
# [FAIL] Int 2 int64_be.
# [FAIL] Int 3 int64_le.
# [OK] regression tests 0 unnamed dbi.
# [OK] regression tests 1 dup unnamed dbi.
# [OK] transaction 0 abort.
# [OK] transaction 1 wrong envirronment.
# [OK] transaction 2 MAP_FULL triggered by txn_com...
# [OK] transaction 3 MAP_FULL triggered by Map.add.
# [OK] transaction 4 MAP_FULL not passed on to Txn...
# [FAIL] threaded GC stress 0 stress 1s.
# [SKIP] Problem reports 0 #15.
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] map 3 set dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_map.(fun) in file "tests/test.ml", line 145, characters 6-27
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/map.003.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] map 5 get dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_map.(fun) in file "tests/test.ml", line 145, characters 6-27
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_map.(fun) in file "tests/test.ml", line 154, characters 6-27
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/map.005.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] cursor 12 set dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Cursor.set in file "src/lmdb.ml", line 701, characters 4-37
# Called from Test.test_cursor.(fun) in file "tests/test.ml", line 302, characters 6-30
# Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
# Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.012.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] cursor 14 get dup. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT get returns first value
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Cursor.set in file "src/lmdb.ml", line 701, characters 4-37
# Called from Test.test_cursor.(fun) in file "tests/test.ml", line 302, characters 6-30
# Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
# Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.014.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] cursor 20 get_multiple. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Cursor.put_raw_key in file "src/lmdb.ml", line 666, characters 6-39
# Called from Test.test_cursor.(fun) in file "tests/test.ml", line 407, characters 8-46
# Called from Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 467, characters 10-18
# Re-raised at Lmdb.Cursor.go.(fun) in file "src/lmdb.ml", line 474, characters 6-15
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/cursor.020.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 0 int32_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 1 int32_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.001.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 2 int64_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.002.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 3 int64_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb__Lmdb_bindings.Map_full
# Raised by primitive operation at Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 445, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 102, characters 6-24
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Test.test_int.make_test.(fun).loop in file "tests/test.ml", line 443, characters 20-55
# Called from Test.test_int.make_test.(fun) in file "tests/test.ml", line 449, characters 9-16
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.003.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] threaded GC stress 0 stress 1s. │
# └──────────────────────────────────────────────────────────────────────────────┘
# [exception] Lmdb.Error(MDB_DBS_FULL: Environment maxdbs limit reached)
# Raised by primitive operation at Lmdb.Map.create.(fun) in file "src/lmdb.ml", line 328, characters 16-43
# Called from Lmdb.Txn.go in file "src/lmdb.ml", line 100, characters 10-15
# Re-raised at Lmdb.Txn.go in file "src/lmdb.ml", line 112, characters 6-15
# Called from Lmdb.Txn.trivial in file "src/lmdb.ml", line 124, characters 12-23
# Called from Lmdb.Map.create in file "src/lmdb.ml", line 327, characters 6-528
# Called from Test.test_stress.stress in file "tests/test.ml", line 464, characters 6-122
# Called from Alcotest_engine__Core.Make.protect_test.(fun) in file "src/alcotest-engine/core.ml", line 186, characters 17-23
# Called from Alcotest_engine__Monad.Identity.catch in file "src/alcotest-engine/monad.ml", line 24, characters 31-35
#
# Logs saved to `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/threaded GC stress.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
# Full test results in `~/.opam/4.14/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb'.
# 10 failures! in 0.023s. 45 tests run.
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose lmdb.1.0' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose lmdb.1.0;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'lmdb.1.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2025-11-23 10:35.56: Job failed: Failed: Build failed
2025-11-23 10:35.56: Log analysis:
2025-11-23 10:35.56: >>>
[ERROR] The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 175".
(score = 20)
2025-11-23 10:35.56: >>>
[ERROR] The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 175".
(score = 20)
2025-11-23 10:35.56: The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 175".