(not at the head of any monitored branch or PR)
2025-03-30 16:51.07: New job: test sedlex.3.4, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27686/head (a4ecc6f5582f258cb732ff37479d3b36c0c70c0d)
                              on fedora-41-ocaml-5.3/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/27686/head" && git reset --hard a4ecc6f5
git fetch origin master
git merge --no-edit a8a89f62d8abd2a9f0cbb04826bfec1ef6b563e7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-5.3@sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa
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 sedlex.3.4 3.4
RUN opam reinstall sedlex.3.4; \
    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 "\"fedora-41\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'sedlex.3.4' && 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 sedlex.3.4) || true
RUN opam reinstall --with-test --verbose sedlex.3.4; \
    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 "\"fedora-41\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'sedlex.3.4' && 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-03-30 16:51.07: Using cache hint "ocaml/opam:fedora-41-ocaml-5.3@sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa-sedlex.3.4-a4ecc6f5582f258cb732ff37479d3b36c0c70c0d"
2025-03-30 16:51.07: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-5.3@sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa)
 (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 sedlex.3.4 3.4"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall sedlex.3.4;\
             \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 \"\\\"fedora-41\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'sedlex.3.4' && 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 sedlex.3.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose sedlex.3.4;\
             \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 \"\\\"fedora-41\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'sedlex.3.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-03-30 16:51.07: Waiting for resource in pool OCluster
2025-03-30 16:51.10: Waiting for worker…
2025-03-30 16:51.15: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  98% (22535/22765)
Updating files:  99% (22538/22765)
Updating files: 100% (22765/22765)
Updating files: 100% (22765/22765), done.
HEAD is now at a8a89f62d8 Merge pull request #27687 from codinuum/diffast-20250328
Merge made by the 'ort' strategy.
 packages/fstar/fstar.2025.02.17/opam |  2 +-
 packages/fstar/fstar.2025.03.25/opam |  2 +-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam  |  2 +-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam  |  2 +-
 packages/sedlex/sedlex.3.4/opam      | 48 ++++++++++++++++++++++++++++++++++++
 5 files changed, 52 insertions(+), 4 deletions(-)
 create mode 100644 packages/sedlex/sedlex.3.4/opam

(from ocaml/opam:fedora-41-ocaml-5.3@sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa)
Unable to find image 'ocaml/opam:fedora-41-ocaml-5.3@sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa' locally
docker.io/ocaml/opam@sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa: Pulling from ocaml/opam
8adc910148cb: Pulling fs layer
8adc910148cb: Waiting
8adc910148cb: Verifying Checksum
8adc910148cb: Download complete
8adc910148cb: Pull complete
Digest: sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa
Status: Downloaded newer image for ocaml/opam@sha256:ef3f72c8f77d5bd1802ba619bd181ba96b634354cee21382099ee30964048baa
2025-03-30 16:55.23 ---> saved as "593a0e7f3cc5c07943f3703d7c6644dbb66d10c8c239912ec4ac1c43f8e0e7fb"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-03-30 16:55.23 ---> saved as "30e5639b63a2b5882a14cbd2530b24986f395faa0ba96a61477069e742f2a556"

/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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-30 16:56.26 ---> saved as "d3d43efdc2059411077f5557d0ce903599c22792e5d94a236b46f19093a516dd"

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.4.0~alpha1~dev (fcce0c8d871702aabac0a216e45212ff004cfe79)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=fedora os-version=41
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (local), 1 (version-controlled)
# pinned               1 (version)
# current-switch       5.3
# invariant            ["ocaml-base-compiler" {>= "5.3.0"}]
# compiler-packages    ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.3.0
2025-03-30 16:56.27 ---> saved as "eac1f0b54737f35707cdf30795f25bdef8cde9dc72b4113f9f04521bab9a7140"

/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-03-30 16:56.45 ---> saved as "350adbbaa34bf53b60afc6d9807915fd14e5bdc77007171ceef8f7f0c7dfa4ac"

/home/opam: (copy (src .) (dst opam-repository/))
2025-03-30 16:56.53 ---> saved as "d7434b3a1d2edb8895934355f5b9ec38960186fd1e0b154ee6b87fc9749b9cdf"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-30 16:57.39 ---> saved as "104977639764c608db89ac84d38b24d3b6b8bc3df9c06a6d6d9c2ab0ac52250b"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- Updating and loading repositories:
-  Fedora 41 - x86_64 - Updates           100% |  78.0 KiB/s |  24.1 KiB |  00m00s
-  Fedora 41 - x86_64                     100% | 170.9 KiB/s |  26.5 KiB |  00m00s
-  Fedora 41 - x86_64 - Updates           100% |   3.8 MiB/s |   3.9 MiB |  00m01s
- Repositories loaded.
- Metadata cache created.
2025-03-30 16:57.57 ---> saved as "e10c8ecc52271f34c94b9b0915719bef6895116f4cd60d500425749be500b126"

/home/opam: (run (shell "opam pin add -k version -yn sedlex.3.4 3.4"))
sedlex is now pinned to version 3.4
2025-03-30 16:57.58 ---> saved as "b4aeb549758eb3c31014d85cb9f20d3e3fda5685ab89bb47934f4f9f8d6889bb"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall sedlex.3.4;\
                        \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 \"\\\"fedora-41\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'sedlex.3.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
sedlex.3.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install dune                3.17.2       [required by sedlex]
  - install gen                 1.1          [required by sedlex]
  - install ocaml-compiler-libs v0.17.0      [required by ppxlib]
  - install ppx_derivers        1.2.1        [required by ppxlib]
  - install ppxlib              0.36.0       [required by sedlex]
  - install sedlex              3.4 (pinned)
  - install seq                 base         [required by gen]
  - install sexplib0            v0.17.0      [required by ppxlib]
  - install stdlib-shims        0.3.0        [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.17.2  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.36.0  (cached)
-> retrieved sedlex.3.4  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.17.2
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed gen.1.1
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppxlib.0.36.0
-> installed sedlex.3.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-30 16:58.54 ---> saved as "18a84208b88e75b4ddeaaa389df54998420c1cd09b1facef4d34bc8d0b25ee2c"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test sedlex.3.4) || true"))
The following actions will be performed:
=== downgrade 1 package
  - downgrade ppxlib                  0.36.0 to 0.35.0 [required by sedlex]
=== recompile 1 package
  - recompile sedlex                  3.4 (pinned)
=== install 21 packages
  - install   base                    v0.17.1          [required by ppx_expect]
  - install   csexp                   1.5.2            [required by dune-configurator]
  - install   dune-configurator       3.17.2           [required by base]
  - install   jane-street-headers     v0.17.0          [required by time_now]
  - install   jst-config              v0.17.0          [required by time_now]
  - install   ocaml_intrinsics_kernel v0.17.1          [required by base]
  - install   ppx_assert              v0.17.0          [required by jst-config]
  - install   ppx_base                v0.17.0          [required by time_now]
  - install   ppx_cold                v0.17.0          [required by ppx_base]
  - install   ppx_compare             v0.17.0          [required by ppx_base]
  - install   ppx_enumerate           v0.17.0          [required by ppx_base]
  - install   ppx_expect              v0.17.2          [required by sedlex]
  - install   ppx_globalize           v0.17.0          [required by ppx_base]
  - install   ppx_hash                v0.17.0          [required by ppx_base]
  - install   ppx_here                v0.17.0          [required by ppx_expect]
  - install   ppx_inline_test         v0.17.0          [required by ppx_expect]
  - install   ppx_optcomp             v0.17.0          [required by time_now]
  - install   ppx_sexp_conv           v0.17.0          [required by ppx_base]
  - install   ppxlib_jane             v0.17.2          [required by ppx_globalize, ppx_enumerate, ppx_hash]
  - install   stdio                   v0.17.0          [required by ppx_expect]
  - install   time_now                v0.17.0          [required by ppx_inline_test]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.17.1  (https://github.com/janestreet/base/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved csexp.1.5.2  (https://github.com/ocaml-dune/csexp/releases/download/1.5.2/csexp-1.5.2.tbz)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.17.2  (https://github.com/ocaml/dune/releases/download/3.17.2/dune-3.17.2.tbz)
-> retrieved jane-street-headers.v0.17.0  (https://github.com/janestreet/jane-street-headers/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved jst-config.v0.17.0  (https://github.com/janestreet/jst-config/archive/refs/tags/v0.17.0.tar.gz)
-> installed jane-street-headers.v0.17.0
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (https://github.com/janestreet/ocaml_intrinsics_kernel/archive/refs/tags/v0.17.1.tar.gz)
-> retrieved ppx_assert.v0.17.0  (https://github.com/janestreet/ppx_assert/archive/refs/tags/v0.17.0.tar.gz)
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved ppx_base.v0.17.0  (https://github.com/janestreet/ppx_base/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_cold.v0.17.0  (https://github.com/janestreet/ppx_cold/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_compare.v0.17.0  (https://github.com/janestreet/ppx_compare/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_enumerate.v0.17.0  (https://github.com/janestreet/ppx_enumerate/archive/refs/tags/v0.17.0.tar.gz)
-> installed dune-configurator.3.17.2
-> retrieved ppx_expect.v0.17.2  (https://github.com/janestreet/ppx_expect/archive/refs/tags/v0.17.2.tar.gz)
-> retrieved ppx_globalize.v0.17.0  (https://github.com/janestreet/ppx_globalize/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_hash.v0.17.0  (https://github.com/janestreet/ppx_hash/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_here.v0.17.0  (https://github.com/janestreet/ppx_here/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_inline_test.v0.17.0  (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_optcomp.v0.17.0  (https://github.com/janestreet/ppx_optcomp/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppx_sexp_conv.v0.17.0  (https://github.com/janestreet/ppx_sexp_conv/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved ppxlib.0.35.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.35.0/ppxlib-0.35.0.tbz)
-> retrieved ppxlib_jane.v0.17.2  (https://github.com/janestreet/ppxlib_jane/archive/refs/tags/v0.17.2.tar.gz)
-> retrieved stdio.v0.17.0  (https://github.com/janestreet/stdio/archive/refs/tags/v0.17.0.tar.gz)
-> retrieved time_now.v0.17.0  (https://github.com/janestreet/time_now/archive/refs/tags/v0.17.0.tar.gz)
-> installed base.v0.17.1
-> installed stdio.v0.17.0
-> removed   sedlex.3.4
-> removed   ppxlib.0.36.0
-> installed ppxlib.0.35.0
-> installed ppxlib_jane.v0.17.2
-> installed ppx_optcomp.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_globalize.v0.17.0
-> installed ppx_compare.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_sexp_conv.v0.17.0
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_base.v0.17.0
-> installed jst-config.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_inline_test.v0.17.0
-> installed ppx_expect.v0.17.2
-> installed sedlex.3.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-30 17:00.09 ---> saved as "b2d216c4be2fd583289f2411351f3290821ba8add94319354d48edbbe35e621a"

/home/opam: (run (shell  "opam reinstall --with-test --verbose sedlex.3.4;\
                        \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 \"\\\"fedora-41\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'sedlex.3.4' && 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 sedlex 3.4 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [sedlex: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "sedlex" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.3/.opam-switch/build/sedlex.3.4)
- (cd _build/default/examples && ./tokenizer.exe)
- Ident foobar
- Ident A123Bfoo
- Op ++
- Number 123
- Ident Xbar
- Op /
- Ident foo
- EOF
- (cd _build/default/examples && ./subtraction.exe)
- a
- 	Whitespace
- abc
- 	Whitespace
- abc
- 	Whitespace
- d
- 	Whitespace
- Other
- 	End
- (cd _build/default/examples && ./complement.exe)
- ULL??ULLU.
- (cd _build/default/examples && ./repeat.exe)
- a
- 	Whitespace
- bcbc
- 	Whitespace
- d
- 	Whitespace
- ef
- 	Whitespace
- efef
- 	Whitespace
- efefef
- 	End
- (cd _build/default/examples && ./performance.exe)
- Execution time: 0.471607s
- (cd _build/default/examples && ./regressions.exe)
- Testing Unicode regression: 15.0.0 => 16.0.0
- Code point 0x1171e missing in mn!
-> compiled  sedlex.3.4
-> removed   sedlex.3.4
-> installed sedlex.3.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-30 17:00.29 ---> saved as "505c7da384bc76d58303cd8b6ce4c7c72424a4bbb01140143ab041548246fd1d"
Job succeeded
2025-03-30 17:01.27: Job succeeded