(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-5.4/arm32v7
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-5.4@sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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-5.4@sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5-lmdb.1.0-8f00c13a54683097cc781d46df0c18b7f635d303"
2025-11-23 10:30.18: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5)
(shell /usr/bin/linux32 /bin/sh -c)
(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 okypous.caelum.ci.dev
All commits already cached
Updating files: 75% (14190/18820)
Updating files: 76% (14304/18820)
Updating files: 77% (14492/18820)
Updating files: 78% (14680/18820)
Updating files: 79% (14868/18820)
Updating files: 80% (15056/18820)
Updating files: 81% (15245/18820)
Updating files: 82% (15433/18820)
Updating files: 83% (15621/18820)
Updating files: 84% (15809/18820)
Updating files: 85% (15997/18820)
Updating files: 86% (16186/18820)
Updating files: 87% (16374/18820)
Updating files: 88% (16562/18820)
Updating files: 89% (16750/18820)
Updating files: 90% (16938/18820)
Updating files: 91% (17127/18820)
Updating files: 92% (17315/18820)
Updating files: 93% (17503/18820)
Updating files: 94% (17691/18820)
Updating files: 95% (17879/18820)
Updating files: 96% (18068/18820)
Updating files: 97% (18256/18820)
Updating files: 98% (18444/18820)
Updating files: 99% (18632/18820)
Updating files: 100% (18820/18820)
Updating files: 100% (18820/18820), done.
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-5.4@sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5' locally
docker.io/ocaml/opam@sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5: Pulling from ocaml/opam
1b661670a96f: Pulling fs layer
1b661670a96f: Verifying Checksum
1b661670a96f: Download complete
1b661670a96f: Pull complete
Digest: sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5
Status: Downloaded newer image for ocaml/opam@sha256:2c7669432e35038cb20777adb170e10b7b17e664e2f9dc2bb3c29c831cbb00f5
2025-11-23 10:30.27 ---> using "b641790398a11fe72a233862cefa16f4ff8b5f7bb8fa1fa8c0907e9731652d75" from cache
/: (shell /usr/bin/linux32 /bin/sh -c)
/: (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.27 ---> using "32eae8ae614cf2471cfd9154c9a856abd46233b056d691d6a36bf3d5f8214cf7" 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.
Continue? [Y/n] y
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.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-23 10:30.27 ---> using "f7abbb41016ea9aed738626f035143c3d9704226263887e2f7f4213311a37b79" 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=arm32 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 79
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-option-bytecode-only.1, ocaml-options-vanilla.1
# ocaml:native false
# ocaml:native-tools false
# ocaml:native-dynlink false
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0+bytecode-only
2025-11-23 10:30.27 ---> using "127d6003a08593080f688a7b41c1de4ea2a1cf9b05aacd0f8e470fcdb5243479" 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.27 ---> using "cf84daeb16b847282ba28770a93cb9c60d161674826e26f2b24515e7557791d7" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-23 10:30.35 ---> saved as "8d68e9149fe1f8d71eacd7eb9eb487d85ef8d76085b677b30e08780daf6ffaec"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-23 10:31.10 ---> saved as "23c0c3094208b69b5351fb82291e70d032a1d437e00efc06efb6069bcc6f4d08"
/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 armhf Packages [69.3 kB]
- Fetched 160 kB in 0s (864 kB/s)
- Reading package lists...
-
2025-11-23 10:31.11 ---> saved as "70859884b1115f7a23f10f167534fd7a0ffce55ce465f9838c383457d5492f77"
/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:31.12 ---> saved as "7d88a9eebd2feebc596233ffefbcd2297f48a607144f16af7c0880b3da1c8ef0"
/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:armhf.
- (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 ... 20379 files and directories currently installed.)
- Preparing to unpack .../0-liblmdb0_0.9.31-1+b2_armhf.deb ...
- Unpacking liblmdb0:armhf (0.9.31-1+b2) ...
- Selecting previously unselected package liblmdb-dev:armhf.
- Preparing to unpack .../1-liblmdb-dev_0.9.31-1+b2_armhf.deb ...
- Unpacking liblmdb-dev:armhf (0.9.31-1+b2) ...
- Selecting previously unselected package libpkgconf3:armhf.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_armhf.deb ...
- Unpacking libpkgconf3:armhf (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_armhf.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:armhf.
- Preparing to unpack .../5-pkgconf_1.8.1-4_armhf.deb ...
- Unpacking pkgconf:armhf (1.8.1-4) ...
- Selecting previously unselected package pkg-config:armhf.
- Preparing to unpack .../6-pkg-config_1.8.1-4_armhf.deb ...
- Unpacking pkg-config:armhf (1.8.1-4) ...
- Setting up liblmdb0:armhf (0.9.31-1+b2) ...
- Setting up lmdb-doc (0.9.31-1) ...
- Setting up libpkgconf3:armhf (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up liblmdb-dev:armhf (0.9.31-1+b2) ...
- Setting up pkgconf:armhf (1.8.1-4) ...
- Setting up pkg-config:armhf (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:32.31 ---> saved as "dfa719021a43d795b34e130c82dcba09125abc59ff1d9dee1cc1c2cc24e9f5e1"
/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)
-> installed benchmark.1.7
-> retrieved cmdliner.2.0.0 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> 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)
-> 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 cmdliner.2.0.0
-> installed ocamlfind.1.9.8
-> installed ocaml-syntax-shims.1.0.0
-> removed lmdb.1.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 79".
#=== ERROR while compiling lmdb.1.0 ===========================================#
# context 2.5.0~beta1 | linux/arm32 | ocaml-base-compiler.5.4.0 | pinned(https://github.com/Drup/ocaml-lmdb/archive/1.0.tar.gz)
# path ~/.opam/5.4/.opam-switch/build/lmdb.1.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p lmdb -j 79
# exit-code 1
# env-file ~/.opam/log/lmdb-7-2c069e.env
# output-file ~/.opam/log/lmdb-7-2c069e.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: 5.4.0
# Testing `Lmdb'.
# This run has ID `NXGAVT74'.
#
# [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.
# [OK] map 3 set dup.
# [OK] map 4 get uni.
# [OK] 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.
# [OK] cursor 12 set dup.
# [OK] cursor 13 get uni.
# [OK] 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.
# [OK] 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] Int 0 int32_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 1 int32_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.001.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 2 int64_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.002.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 3 int64_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.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 unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/threaded GC stress.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
# Full test results in `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb'.
# 5 failures! in 0.351s. 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/5.4/.opam-switch/backup/state-20251123103231.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
2025-11-23 10:33.00 ---> saved as "7633664d1b7e07fadfcfd564bc7f2bc1ed9ae705b8cc1103bdb169475207dd2a"
/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" "79" (CWD=/home/opam/.opam/5.4/.opam-switch/build/lmdb.1.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc -w -40 -safe-string -thread -g -bin-annot -bin-annot-occurrences -I src/.lmdb.objs/byte -I /home/opam/.opam/5.4/lib/bigstringaf -no-alias-deps -open Lmdb__ -o src/.lmdb.objs/byte/lmdb__Lmdb_bindings.cmi -c -intf src/lmdb_bindings.mli)
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc -w -40 -safe-string -thread -g -bin-annot -bin-annot-occurrences -I src/.lmdb.objs/byte -I /home/opam/.opam/5.4/lib/bigstringaf -cmi-file src/.lmdb.objs/byte/lmdb__Lmdb_bindings.cmi -no-alias-deps -open Lmdb__ -o src/.lmdb.objs/byte/lmdb__Lmdb_bindings.cmo -c -impl src/lmdb_bindings.ml)
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc -w -40 -safe-string -thread -g -bin-annot -bin-annot-occurrences -I src/.lmdb.objs/byte -I /home/opam/.opam/5.4/lib/bigstringaf -no-alias-deps -open Lmdb__ -o src/.lmdb.objs/byte/lmdb.cmi -c -intf src/lmdb.mli)
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc -w -40 -safe-string -thread -g -bin-annot -bin-annot-occurrences -I src/.lmdb.objs/byte -I /home/opam/.opam/5.4/lib/bigstringaf -cmi-file src/.lmdb.objs/byte/lmdb.cmi -no-alias-deps -open Lmdb__ -o src/.lmdb.objs/byte/lmdb.cmo -c -impl src/lmdb.ml)
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -pedantic -std=c99 -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigstringaf -o lmdb_stubs.o -c lmdb_stubs.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from lmdb_stubs.c:23:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- In file included from lmdb_stubs.c:27:
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:91:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 91 | CAMLnoret CAMLextern void caml_raise (value exception);
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:92:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 92 | CAMLnoret CAMLextern void caml_raise_constant (value exn_constr);
- | ^~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:93:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 93 | CAMLnoret CAMLextern void caml_raise_with_arg (value exn_constr, value arg);
- | ^~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:94:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 94 | CAMLnoret CAMLextern void caml_raise_with_args (value exn_constr,
- | ^~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:96:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 96 | CAMLnoret CAMLextern void caml_raise_with_string (value exn_constr,
- | ^~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:98:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 98 | CAMLnoret CAMLextern void caml_failwith (char const *msg);
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:99:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 99 | CAMLnoret CAMLextern void caml_failwith_value (value msg);
- | ^~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:100:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 100 | CAMLnoret CAMLextern void caml_invalid_argument (char const *msg);
- | ^~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:101:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 101 | CAMLnoret CAMLextern void caml_invalid_argument_value (value msg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:102:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 102 | CAMLnoret CAMLextern void caml_raise_out_of_memory (void);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:103:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 103 | CAMLnoret CAMLextern void caml_raise_stack_overflow (void);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:104:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 104 | CAMLnoret CAMLextern void caml_raise_sys_error (value);
- | ^~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:105:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 105 | CAMLnoret CAMLextern void caml_raise_end_of_file (void);
- | ^~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:106:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 106 | CAMLnoret CAMLextern void caml_raise_zero_divide (void);
- | ^~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:107:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 107 | CAMLnoret CAMLextern void caml_raise_not_found (void);
- | ^~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:108:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 108 | CAMLnoret CAMLextern void caml_array_bound_error (void);
- | ^~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/fail.h:109:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 109 | CAMLnoret CAMLextern void caml_raise_sys_blocked_io (void);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from lmdb_stubs.c:31:
- /home/opam/.opam/5.4/lib/ocaml/caml/unixsupport.h:104:6: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 104 | void caml_unix_error (int errcode, const char * cmdname, value arg);
- | ^~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/unixsupport.h:106:23: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 106 | CAMLnoret extern void caml_uerror (const char * cmdname, value arg);
- | ^~~~~~~~~~~
Processing 2/3: [lmdb: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "lmdb" "-j" "79" (CWD=/home/opam/.opam/5.4/.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: 5.4.0
- Testing `Lmdb'.
- This run has ID `WCCDCUBA'.
-
- [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.
- [OK] map 3 set dup.
- [OK] map 4 get uni.
- [OK] 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.
- [OK] cursor 12 set dup.
- [OK] cursor 13 get uni.
- [OK] 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.
- [OK] 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] Int 0 int32_be. │
- └──────────────────────────────────────────────────────────────────────────────┘
- ASSERT Ordering on keys
- FAIL Ordering on keys
- Called from unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
-
- Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.000.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] Int 1 int32_le. │
- └──────────────────────────────────────────────────────────────────────────────┘
- ASSERT Ordering on keys
- FAIL Ordering on keys
- Called from unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
-
- Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.001.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] Int 2 int64_be. │
- └──────────────────────────────────────────────────────────────────────────────┘
- ASSERT Ordering on keys
- FAIL Ordering on keys
- Called from unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
-
- Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.002.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
- ┌──────────────────────────────────────────────────────────────────────────────┐
- │ [FAIL] Int 3 int64_le. │
- └──────────────────────────────────────────────────────────────────────────────┘
- ASSERT Ordering on keys
- FAIL Ordering on keys
- Called from unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
-
- Logs saved to `~/.opam/5.4/.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 unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
- Called from unknown location
-
- Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/threaded GC stress.000.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
- Full test results in `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb'.
- 5 failures! in 0.274s. 45 tests run.
[ERROR] The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 79".
#=== ERROR while compiling lmdb.1.0 ===========================================#
# context 2.5.0~beta1 | linux/arm32 | ocaml-base-compiler.5.4.0 | pinned(https://github.com/Drup/ocaml-lmdb/archive/1.0.tar.gz)
# path ~/.opam/5.4/.opam-switch/build/lmdb.1.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune runtest -p lmdb -j 79
# exit-code 1
# env-file ~/.opam/log/lmdb-7-931387.env
# output-file ~/.opam/log/lmdb-7-931387.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: 5.4.0
# Testing `Lmdb'.
# This run has ID `WCCDCUBA'.
#
# [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.
# [OK] map 3 set dup.
# [OK] map 4 get uni.
# [OK] 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.
# [OK] cursor 12 set dup.
# [OK] cursor 13 get uni.
# [OK] 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.
# [OK] 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] Int 0 int32_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 1 int32_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.001.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 2 int64_be. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/Int.002.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
#
# ┌──────────────────────────────────────────────────────────────────────────────┐
# │ [FAIL] Int 3 int64_le. │
# └──────────────────────────────────────────────────────────────────────────────┘
# ASSERT Ordering on keys
# FAIL Ordering on keys
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.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 unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
# Called from unknown location
#
# Logs saved to `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb/threaded GC stress.000.output'.
# ──────────────────────────────────────────────────────────────────────────────
#
# Full test results in `~/.opam/5.4/.opam-switch/build/lmdb.1.0/_build/default/tests/_build/_tests/Lmdb'.
# 5 failures! in 0.274s. 45 tests run.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build lmdb 1.0
+-
- No changes have been performed
# 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/linux32" "/bin/sh" "-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:33.17: Job failed: Failed: Build failed
2025-11-23 10:33.17: Log analysis:
2025-11-23 10:33.17: >>>
[ERROR] The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 79".
(score = 20)
2025-11-23 10:33.17: >>>
[ERROR] The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 79".
(score = 20)
2025-11-23 10:33.17: The compilation of lmdb.1.0 failed at "dune runtest -p lmdb -j 79".