- github
- ocaml
- opam-repository
- a9b8a0
- compilers,4.14,dune.3.21.0~alpha2,revdeps,extlib.1.7.8
(not at the head of any monitored branch or PR)
2025-12-09 07:39.23: New job: test extlib.1.7.8 with dune.3.21.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29042/head (a9b8a0d0db631d21208bd4ab7355e867d7ecf88d)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29042/head" && git reset --hard a9b8a0d0
git fetch origin master
git merge --no-edit 2e91c1385fa6ee7c38e1108967fe3bf9ccba52f6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.21.0~alpha2 3.21.0~alpha2
RUN opam reinstall dune.3.21.0~alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.21.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall extlib.1.7.8; \
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" != 'extlib.1.7.8' && 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 extlib.1.7.8) || true
RUN opam reinstall --with-test --verbose extlib.1.7.8; \
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" != 'extlib.1.7.8' && 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-12-09 07:39.23: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune.3.21.0~alpha2-extlib.1.7.8-a9b8a0d0db631d21208bd4ab7355e867d7ecf88d"
2025-12-09 07:39.23: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.21.0~alpha2 3.21.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.21.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall extlib.1.7.8;\
\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\" != 'extlib.1.7.8' && 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 extlib.1.7.8) || true"))
(run (shell "opam reinstall --with-test --verbose extlib.1.7.8;\
\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\" != 'extlib.1.7.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-09 07:39.23: Waiting for resource in pool OCluster
2025-12-09 22:10.40: Waiting for worker…
2025-12-09 22:14.40: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files: 65% (12370/19007)
Updating files: 66% (12545/19007)
Updating files: 67% (12735/19007)
Updating files: 68% (12925/19007)
Updating files: 69% (13115/19007)
Updating files: 70% (13305/19007)
Updating files: 71% (13495/19007)
Updating files: 72% (13686/19007)
Updating files: 73% (13876/19007)
Updating files: 74% (14066/19007)
Updating files: 75% (14256/19007)
Updating files: 76% (14446/19007)
Updating files: 77% (14636/19007)
Updating files: 78% (14826/19007)
Updating files: 79% (15016/19007)
Updating files: 80% (15206/19007)
Updating files: 81% (15396/19007)
Updating files: 82% (15586/19007)
Updating files: 83% (15776/19007)
Updating files: 84% (15966/19007)
Updating files: 85% (16156/19007)
Updating files: 86% (16347/19007)
Updating files: 87% (16537/19007)
Updating files: 88% (16727/19007)
Updating files: 89% (16917/19007)
Updating files: 90% (17107/19007)
Updating files: 91% (17297/19007)
Updating files: 92% (17487/19007)
Updating files: 93% (17677/19007)
Updating files: 94% (17867/19007)
Updating files: 95% (18057/19007)
Updating files: 96% (18247/19007)
Updating files: 97% (18437/19007)
Updating files: 98% (18627/19007)
Updating files: 99% (18817/19007)
Updating files: 100% (19007/19007)
Updating files: 100% (19007/19007), done.
HEAD is now at 2e91c1385f Merge pull request #29043 from hannesm/mirage-kv
Merge made by the 'ort' strategy.
.../chrome-trace/chrome-trace.3.21.0~alpha2/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0~alpha2/opam | 54 ++++++++++++++++
.../dune-build-info.3.21.0~alpha2/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0~alpha2/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0~alpha2/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0~alpha2/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0~alpha2/opam | 39 +++++++++++
packages/dune/dune.3.21.0~alpha2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0~alpha2/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0~alpha2/opam | 40 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0~alpha2/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0~alpha2/opam | 48 ++++++++++++++
.../top-closure/top-closure.3.21.0~alpha2/opam | 39 +++++++++++
packages/xdg/xdg.3.21.0~alpha2/opam | 41 ++++++++++++
17 files changed, 787 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.21.0~alpha2/opam
create mode 100644 packages/dune/dune.3.21.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.21.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.21.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.21.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.21.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.21.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.21.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
2025-12-09 22:14.49 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" 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-12-09 22:14.49 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" 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-12-09 22:14.49 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.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-12-09 22:14.49 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" 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-12-09 22:14.49 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-09 22:14.51 ---> using "b1d8376b8854c122e4370c6ffb8956d8f719398d4349ee07c276d2dcc6f801f9" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-09 22:14.51 ---> using "9a99fafcbc8abe6d428ee55266ff1d7f19ca4090f80c3937d2d008378a0d44a7" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [81.7 kB]
- Fetched 172 kB in 0s (970 kB/s)
- Reading package lists...
-
2025-12-09 22:14.51 ---> using "dfdd061baff398ee2660022be07bc73f36114859cfe0e06f6537eb36b6569dcb" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0~alpha2 3.21.0~alpha2"))
dune is now pinned to version 3.21.0~alpha2
2025-12-09 22:14.51 ---> using "9d74388dfd340d188909cdf0c4823b6581deb2050d5ff4ccb5bfd0c031111b6f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.21.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.21.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.21.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0~alpha2 (cached)
-> installed dune.3.21.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 22:14.51 ---> using "0510ef6b70a4dabc7f07f5987a056c1fb9750e839e3f12086bd1e7ee2e1c590b" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall extlib.1.7.8;\
\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\" != 'extlib.1.7.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
extlib.1.7.8 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install base-bytes base [required by extlib]
- install cppo 1.8.0 [required by extlib]
- install extlib 1.7.8
- install ocamlfind 1.9.8 [required by extlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0 (cached)
-> retrieved extlib.1.7.8 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed cppo.1.8.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed extlib.1.7.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 22:15.14 ---> saved as "6aae1a7c301177f94acfe38cb1512b20902c4198245f469226b1d0a7701eed18"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test extlib.1.7.8) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile extlib 1.7.8
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved extlib.1.7.8 (https://opam.ocaml.org/cache)
-> removed extlib.1.7.8
-> installed extlib.1.7.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 22:15.38 ---> saved as "27c0cc0bbfa916bea4a3e242d5263fa4037cdd8261bc82cebbfea4aeda7bfc07"
/home/opam: (run (shell "opam reinstall --with-test --verbose extlib.1.7.8;\
\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\" != 'extlib.1.7.8' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile extlib 1.7.8
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [extlib.1.7.8: extract]
-> retrieved extlib.1.7.8 (cached)
Processing 2/4: [extlib: make build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "minimal=1" "build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8)
- fatal: not a git repository: '.git'
- make -C src build
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -i extBytes.ml > extBytes.mli
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extBytes.mli extBytes.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c enum.mli enum.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c bitSet.mli bitSet.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c dynArray.mli dynArray.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extArray.mli extArray.ml
- File "extArray.ml", line 1:
- Alert deprecated: make_float
- Use Array.create_float/ArrayLabels.create_float instead.
- File "array.mli", lines 75-77, characters 0-63:
- Definition
- File "extArray.mli", line 121, characters 2-37:
- Expected signature
- File "extArray.ml", line 1:
- Alert deprecated: create
- Use Array.make/ArrayLabels.make instead.
- File "array.mli", lines 66-67, characters 0-65:
- Definition
- File "extArray.mli", line 153, characters 2-60:
- Expected signature
- File "extArray.ml", line 1:
- Alert deprecated: create_matrix
- Use Array.make_matrix/ArrayLabels.make_matrix instead.
- File "array.mli", lines 103-105, characters 0-61:
- Definition
- File "extArray.mli", line 156, characters 2-56:
- Expected signature
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extHashtbl.mli extHashtbl.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extList.mli extList.ml
- File "extList.ml", line 410, characters 15-33:
- 408 | ......
- 409 |
- 410 | .......t ?(cmp=Pervasives.........................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extString.mli extString.ml
- File "extString.ml", line 1:
- Alert deprecated: set
- Use Bytes.set/BytesLabels.set instead.
- File "string.mli", lines 412-413, characters 0-63:
- Definition
- File "extString.mli", line 179, characters 2-42:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: create
- Use Bytes.create/BytesLabels.create instead.
- File "string.mli", lines 403-404, characters 0-69:
- Definition
- File "extString.mli", line 180, characters 2-29:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: copy
- Strings now immutable: no need to copy
- File "string.mli", lines 432-433, characters 0-63:
- Definition
- File "extString.mli", line 182, characters 2-29:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: fill
- Use Bytes.fill/BytesLabels.fill instead.
- File "string.mli", lines 439-440, characters 0-65:
- Definition
- File "extString.mli", line 184, characters 2-50:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: uppercase
- Use String.uppercase_ascii/StringLabels.uppercase_ascii instead.
- File "string.mli", lines 449-451, characters 0-71:
- Definition
- File "extString.mli", line 200, characters 2-34:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "string.mli", lines 458-460, characters 0-71:
- Definition
- File "extString.mli", line 201, characters 2-34:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "string.mli", lines 467-469, characters 0-73:
- Definition
- File "extString.mli", line 202, characters 2-35:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "string.mli", lines 475-477, characters 0-77:
- Definition
- File "extString.mli", line 203, characters 2-37:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: unsafe_set
- File "string.mli", lines 608-609, characters 0-22:
- Definition
- File "extString.mli", line 219, characters 2-49:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: unsafe_fill
- File "string.mli", lines 613-615, characters 0-22:
- Definition
- File "extString.mli", line 221, characters 2-57:
- Expected signature
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extBuffer.mli extBuffer.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c global.mli global.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c IO.mli IO.ml
- File "IO.ml", line 313, characters 14-30:
- 313 | = Pervasives.input ch s p l in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 317, characters 26-45:
- 317 | ..........................lose_in ch);
- | }
- |
- 317 | l......................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 323, characters 31-48:
- 323 | ut = (fun s p l -> Pervasives.output ch s p l; l);
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 324, characters 27-47:
- 324 | ...........................lose_out ch);
- 324 | ou..........................................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 325, characters 27-43:
- 325 | ...........................lush ch);
- | }
- |
- 325 | l.................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 792, characters 22-32:
- 790 | ..............
- 791 |
- 792 | ......----------....................................................
- Warning 6 [labels-omitted]: label nbits was omitted in the application of this function.
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c option.mli option.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c pMap.mli pMap.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c std.mli std.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c refList.mli refList.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c optParse.mli optParse.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c dllist.mli dllist.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extLib.ml
- ocamlfind ocamlc -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -a -o extLib.cma extBytes.cmo enum.cmo bitSet.cmo dynArray.cmo extArray.cmo extHashtbl.cmo extList.cmo extString.cmo extBuffer.cmo global.cmo IO.cmo option.cmo pMap.cmo std.cmo refList.cmo optParse.cmo dllist.cmo extLib.cmo
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extBytes.mli extBytes.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c enum.mli enum.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c bitSet.mli bitSet.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c dynArray.mli dynArray.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extArray.mli extArray.ml
- File "extArray.ml", line 1:
- Alert deprecated: make_float
- Use Array.create_float/ArrayLabels.create_float instead.
- File "array.mli", lines 75-77, characters 0-63:
- Definition
- File "extArray.mli", line 121, characters 2-37:
- Expected signature
- File "extArray.ml", line 1:
- Alert deprecated: create
- Use Array.make/ArrayLabels.make instead.
- File "array.mli", lines 66-67, characters 0-65:
- Definition
- File "extArray.mli", line 153, characters 2-60:
- Expected signature
- File "extArray.ml", line 1:
- Alert deprecated: create_matrix
- Use Array.make_matrix/ArrayLabels.make_matrix instead.
- File "array.mli", lines 103-105, characters 0-61:
- Definition
- File "extArray.mli", line 156, characters 2-56:
- Expected signature
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extHashtbl.mli extHashtbl.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extList.mli extList.ml
- File "extList.ml", line 410, characters 15-33:
- 408 | ......
- 409 |
- 410 | .......t ?(cmp=Pervasives.........................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extString.mli extString.ml
- File "extString.ml", line 1:
- Alert deprecated: set
- Use Bytes.set/BytesLabels.set instead.
- File "string.mli", lines 412-413, characters 0-63:
- Definition
- File "extString.mli", line 179, characters 2-42:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: create
- Use Bytes.create/BytesLabels.create instead.
- File "string.mli", lines 403-404, characters 0-69:
- Definition
- File "extString.mli", line 180, characters 2-29:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: copy
- Strings now immutable: no need to copy
- File "string.mli", lines 432-433, characters 0-63:
- Definition
- File "extString.mli", line 182, characters 2-29:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: fill
- Use Bytes.fill/BytesLabels.fill instead.
- File "string.mli", lines 439-440, characters 0-65:
- Definition
- File "extString.mli", line 184, characters 2-50:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: uppercase
- Use String.uppercase_ascii/StringLabels.uppercase_ascii instead.
- File "string.mli", lines 449-451, characters 0-71:
- Definition
- File "extString.mli", line 200, characters 2-34:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "string.mli", lines 458-460, characters 0-71:
- Definition
- File "extString.mli", line 201, characters 2-34:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "string.mli", lines 467-469, characters 0-73:
- Definition
- File "extString.mli", line 202, characters 2-35:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "string.mli", lines 475-477, characters 0-77:
- Definition
- File "extString.mli", line 203, characters 2-37:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: unsafe_set
- File "string.mli", lines 608-609, characters 0-22:
- Definition
- File "extString.mli", line 219, characters 2-49:
- Expected signature
- File "extString.ml", line 1:
- Alert deprecated: unsafe_fill
- File "string.mli", lines 613-615, characters 0-22:
- Definition
- File "extString.mli", line 221, characters 2-57:
- Expected signature
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extBuffer.mli extBuffer.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c global.mli global.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c IO.mli IO.ml
- File "IO.ml", line 313, characters 14-30:
- 313 | = Pervasives.input ch s p l in
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 317, characters 26-45:
- 317 | ..........................lose_in ch);
- | }
- |
- 317 | l......................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 323, characters 31-48:
- 323 | ut = (fun s p l -> Pervasives.output ch s p l; l);
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 324, characters 27-47:
- 324 | ...........................lose_out ch);
- 324 | ou..........................................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 325, characters 27-43:
- 325 | ...........................lush ch);
- | }
- |
- 325 | l.................
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "IO.ml", line 792, characters 22-32:
- 790 | ..............
- 791 |
- 792 | ......----------....................................................
- Warning 6 [labels-omitted]: label nbits was omitted in the application of this function.
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c option.mli option.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c pMap.mli pMap.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c std.mli std.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c refList.mli refList.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c optParse.mli optParse.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c dllist.mli dllist.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -c extLib.ml
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -a -o extLib.cmxa extBytes.cmx enum.cmx bitSet.cmx dynArray.cmx extArray.cmx extHashtbl.cmx extList.cmx extString.cmx extBuffer.cmx global.cmx IO.cmx option.cmx pMap.cmx std.cmx refList.cmx optParse.cmx dllist.cmx extLib.cmx
- ocamlfind ocamlopt -pp "cppo -D \"OCAML 414\" -D WITH_BYTES" -g -bin-annot -package bytes -shared -linkall extLib.cmxa -o extLib.cmxs
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
Processing 2/4: [extlib: make test]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "minimal=1" "test" (CWD=/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8)
- fatal: not a git repository: '.git'
- make -C test all run
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/test'
- make -C ../src all minimal=1
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
- make[2]: Nothing to be done for 'all'.
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
- ocamlfind ocamlc -linkall -linkpkg -package bytes -I ../src extLib.cma util.ml test_BitSet.ml test_Dllist.ml test_DynArray.ml test_ExtArray.ml test_ExtHashtbl.ml test_ExtList.ml test_ExtString.ml test_IO.ml runner.ml -o extlib_test
- File "util.ml", line 32, characters 12-25:
- 32 | let str = String.create len in
- ^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.create
- Use Bytes.create/BytesLabels.create instead.
- File "util.ml", line 35, characters 6-31:
- 35 | str.[i] <- random_char ()
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.set
- Use Bytes.set/BytesLabels.set instead.
- File "util.ml", line 42, characters 12-25:
- 42 | let str = String.create len in
- ^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.create
- Use Bytes.create/BytesLabels.create instead.
- File "util.ml", line 45, characters 6-31:
- 45 | str.[i] <- random_char ()
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.set
- Use Bytes.set/BytesLabels.set instead.
- File "util.ml", line 93, characters 26-42:
- 93 | | Some l -> List.mem (String.lowercase name) l
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "test_DynArray.ml", line 51, characters 26-38:
- 51 | DynArray.insert !d 0 (Array.create 42 "")
- ^^^^^^^^^^^^
- Alert deprecated: Stdlib.Array.create
- Use Array.make/ArrayLabels.make instead.
- File "test_ExtString.ml", line 103, characters 10-24:
- 103 | assert (String.replace s "karhu" "kalja" = (true, "kaljapullo"));
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "test_ExtString.ml", line 104, characters 10-24:
- 104 | assert (String.replace s "kalja" "karhu" = (false, s));
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "test_ExtString.ml", line 106, characters 10-24:
- 106 | assert (String.replace s "" "karhu" = (true, "karhu"^s));
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "test_ExtString.ml", line 107, characters 10-24:
- 107 | assert (String.replace "" "" "karhu" = (true, "karhu"))
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "runner.ml", line 7, characters 29-45:
- 7 | | _::l -> Some (List.map String.lowercase l)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- ./extlib_test
- Dllist
- simple - OK
- regression_1 - OK
- regression_2 - OK
- skip_both_ways - OK
- 4/4 tests succeeded.
- IO
- bits - OK
- i8 - OK
- u8 - OK
- i16 - OK
- u16 - OK
- i31 - OK
- real_i32 - OK
- i32 - OK
- 8/8 tests succeeded.
- ExtString
- starts_with - OK
- ends_with - OK
- map - OK
- lchop - OK
- rchop - OK
- split - OK
- replace_1 - OK
- strip - OK
- nsplit - OK
- 9/9 tests succeeded.
- ExtArray
- rev - OK
- rev_in_place - OK
- for_all - OK
- exists - OK
- mem - OK
- memq - OK
- find - OK
- findi - OK
- filter - OK
- partition - OK
- enum - OK
- map2 - OK
- 12/12 tests succeeded.
- DynArray
- triv - OK
- regr_1 - OK
- insert
- - OK
- simple_1 - OK
- simple_2 - OK
- 5/5 tests succeeded.
- ExtHashtbl
- map - OK
- 1/1 tests succeeded.
- ExtList
- iteri - OK
- mapi - OK
- exceptions - OK
- find_exc - OK
- findi - OK
- fold_right - OK
- fold_right2 - OK
- map - OK
- find_map_exn - OK
- make
- - OK
- 10/10 tests succeeded.
- BitSet
- basic - OK
- enum_1 - OK
- enum_2 - OK
- enum_3 - OK
- enum_regr_pz - OK
- intersect - OK
- diff - OK
- sym_diff - OK
- rnd_creation - OK
- empty - OK
- exceptions - OK
- compare - OK
- compare_2 - OK
- compare_3 - OK
- set_opers - OK
- unite - OK
- intersect_2 - OK
- differentiate - OK
- differentiate_sym - OK
- 19/19 tests succeeded.
-
- Overall 68/68 tests succeeded.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/test'
- make -C test opt run
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/test'
- make -C ../src opt minimal=1
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
- make[2]: Nothing to be done for 'opt'.
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
- ocamlfind ocamlopt -linkall -linkpkg -package bytes -I ../src extLib.cmxa util.ml test_BitSet.ml test_Dllist.ml test_DynArray.ml test_ExtArray.ml test_ExtHashtbl.ml test_ExtList.ml test_ExtString.ml test_IO.ml runner.ml -o extlib_test
- File "util.ml", line 32, characters 12-25:
- 32 | let str = String.create len in
- ^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.create
- Use Bytes.create/BytesLabels.create instead.
- File "util.ml", line 35, characters 6-31:
- 35 | str.[i] <- random_char ()
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.set
- Use Bytes.set/BytesLabels.set instead.
- File "util.ml", line 42, characters 12-25:
- 42 | let str = String.create len in
- ^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.create
- Use Bytes.create/BytesLabels.create instead.
- File "util.ml", line 45, characters 6-31:
- 45 | str.[i] <- random_char ()
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.set
- Use Bytes.set/BytesLabels.set instead.
- File "util.ml", line 93, characters 26-42:
- 93 | | Some l -> List.mem (String.lowercase name) l
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "test_DynArray.ml", line 51, characters 26-38:
- 51 | DynArray.insert !d 0 (Array.create 42 "")
- ^^^^^^^^^^^^
- Alert deprecated: Stdlib.Array.create
- Use Array.make/ArrayLabels.make instead.
- File "test_ExtString.ml", line 103, characters 10-24:
- 103 | assert (String.replace s "karhu" "kalja" = (true, "kaljapullo"));
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "test_ExtString.ml", line 104, characters 10-24:
- 104 | assert (String.replace s "kalja" "karhu" = (false, s));
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "test_ExtString.ml", line 106, characters 10-24:
- 106 | assert (String.replace s "" "karhu" = (true, "karhu"^s));
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "test_ExtString.ml", line 107, characters 10-24:
- 107 | assert (String.replace "" "" "karhu" = (true, "karhu"))
- ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels str, sub, by were omitted in the application of this function.
- File "runner.ml", line 7, characters 29-45:
- 7 | | _::l -> Some (List.map String.lowercase l)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- ./extlib_test
- Dllist
- simple - OK
- regression_1 - OK
- regression_2 - OK
- skip_both_ways - OK
- 4/4 tests succeeded.
- IO
- bits - OK
- i8 - OK
- u8 - OK
- i16 - OK
- u16 - OK
- i31 - OK
- real_i32 - OK
- i32 - OK
- 8/8 tests succeeded.
- ExtString
- starts_with - OK
- ends_with - OK
- map - OK
- lchop - OK
- rchop - OK
- split - OK
- replace_1 - OK
- strip - OK
- nsplit - OK
- 9/9 tests succeeded.
- ExtArray
- rev - OK
- rev_in_place - OK
- for_all - OK
- exists - OK
- mem - OK
- memq - OK
- find - OK
- findi - OK
- filter - OK
- partition - OK
- enum - OK
- map2 - OK
- 12/12 tests succeeded.
- DynArray
- triv - OK
- regr_1 - OK
- insert - OK
- simple_1 - OK
- simple_2 - OK
- 5/5 tests succeeded.
- ExtHashtbl
- map - OK
- 1/1 tests succeeded.
- ExtList
- iteri - OK
- mapi - OK
- exceptions - OK
- find_exc - OK
- findi - OK
- fold_right - OK
- fold_right2 - OK
- map - OK
- find_map_exn - OK
- make
- - OK
- 10/10 tests succeeded.
- BitSet
- basic - OK
- enum_1 - OK
- enum_2 - OK
- enum_3 - OK
- enum_regr_pz - OK
- intersect - OK
- diff - OK
- sym_diff - OK
- rnd_creation - OK
- empty - OK
- exceptions - OK
- compare - OK
- compare_2 - OK
- compare_3 - OK
- set_opers - OK
- unite - OK
- intersect_2 - OK
- differentiate - OK
- differentiate_sym - OK
- 19/19 tests succeeded.
-
- Overall 68/68 tests succeeded.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/test'
-> compiled extlib.1.7.8
-> removed extlib.1.7.8
Processing 4/4: [extlib: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "minimal=1" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8)
- fatal: not a git repository: '.git'
- make -C src VERSION=1.7.8 install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
- ocamlfind install -patch-version 1.7.8 extlib META extLib.cma extBytes.mli enum.mli bitSet.mli dynArray.mli extArray.mli extHashtbl.mli extList.mli extString.mli extBuffer.mli global.mli IO.mli option.mli pMap.mli std.mli refList.mli optParse.mli dllist.mli extBytes.cmi enum.cmi bitSet.cmi dynArray.cmi extArray.cmi extHashtbl.cmi extList.cmi extString.cmi extBuffer.cmi global.cmi IO.cmi option.cmi pMap.cmi std.cmi refList.cmi optParse.cmi dllist.cmi extLib.cmi -optional extLib.cmxa extBytes.cmx enum.cmx bitSet.cmx dynArray.cmx extArray.cmx extHashtbl.cmx extList.cmx extString.cmx extBuffer.cmx global.cmx IO.cmx option.cmx pMap.cmx std.cmx refList.cmx optParse.cmx dllist.cmx extLib.cmx extLib.cmxs extLib.a extLib.lib extBytes.cmt enum.cmt bitSet.cmt dynArray.cmt extArray.cmt extHashtbl.cmt extList.cmt extString.cmt extBuffer.cmt global.cmt IO.cmt option.cmt pMap.cmt std.cmt refList.cmt optParse.cmt dllist.cmt extLib.cmt extBytes.cmti enum.cmti bitSet.cmti dynArray.cmti extArray.cmti extHashtbl.cmti extList.cmti extString.cmti extBuffer.cmti global.cmti IO.cmti option.cmti pMap.cmti std.cmti refList.cmti optParse.cmti dllist.cmti extLib.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/dllist.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/optParse.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/refList.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/std.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/pMap.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/option.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/IO.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/global.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/extBuffer.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/extString.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/extList.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/extHashtbl.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/extArray.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/dynArray.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/bitSet.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/enum.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/extBytes.cmti
- Installed /home/opam/.opam/4.14/lib/extlib/extLib.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/dllist.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/optParse.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/refList.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/std.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/pMap.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/option.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/IO.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/global.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/extBuffer.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/extString.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/extList.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/extHashtbl.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/extArray.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/dynArray.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/bitSet.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/enum.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/extBytes.cmt
- Installed /home/opam/.opam/4.14/lib/extlib/extLib.a
- Installed /home/opam/.opam/4.14/lib/extlib/extLib.cmxs
- Installed /home/opam/.opam/4.14/lib/extlib/extLib.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/dllist.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/optParse.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/refList.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/std.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/pMap.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/option.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/IO.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/global.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/extBuffer.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/extString.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/extList.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/extHashtbl.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/extArray.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/dynArray.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/bitSet.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/enum.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/extBytes.cmx
- Installed /home/opam/.opam/4.14/lib/extlib/extLib.cmxa
- Installed /home/opam/.opam/4.14/lib/extlib/extLib.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/dllist.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/optParse.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/refList.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/std.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/pMap.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/option.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/IO.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/global.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/extBuffer.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/extString.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/extList.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/extHashtbl.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/extArray.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/dynArray.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/bitSet.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/enum.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/extBytes.cmi
- Installed /home/opam/.opam/4.14/lib/extlib/dllist.mli
- Installed /home/opam/.opam/4.14/lib/extlib/optParse.mli
- Installed /home/opam/.opam/4.14/lib/extlib/refList.mli
- Installed /home/opam/.opam/4.14/lib/extlib/std.mli
- Installed /home/opam/.opam/4.14/lib/extlib/pMap.mli
- Installed /home/opam/.opam/4.14/lib/extlib/option.mli
- Installed /home/opam/.opam/4.14/lib/extlib/IO.mli
- Installed /home/opam/.opam/4.14/lib/extlib/global.mli
- Installed /home/opam/.opam/4.14/lib/extlib/extBuffer.mli
- Installed /home/opam/.opam/4.14/lib/extlib/extString.mli
- Installed /home/opam/.opam/4.14/lib/extlib/extList.mli
- Installed /home/opam/.opam/4.14/lib/extlib/extHashtbl.mli
- Installed /home/opam/.opam/4.14/lib/extlib/extArray.mli
- Installed /home/opam/.opam/4.14/lib/extlib/dynArray.mli
- Installed /home/opam/.opam/4.14/lib/extlib/bitSet.mli
- Installed /home/opam/.opam/4.14/lib/extlib/enum.mli
- Installed /home/opam/.opam/4.14/lib/extlib/extBytes.mli
- Installed /home/opam/.opam/4.14/lib/extlib/extLib.cma
- Installed /home/opam/.opam/4.14/lib/extlib/META
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/extlib.1.7.8/src'
-> installed extlib.1.7.8
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 22:16.02 ---> saved as "3604b6005de52daa4df667bb9bd25de5c5cb1d2acb98a7e697e98f62389f0840"
Job succeeded
2025-12-09 22:16.49: Job succeeded