(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 debian-12-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/27686/head" && git reset --hard a4ecc6f5
git fetch origin master
git merge --no-edit a8a89f62d8abd2a9f0cbb04826bfec1ef6b563e7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:431bfc146d8299ad3cd1512f91ec37999cfd96edd0bd36d5f04bb8d170006756
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 "\"debian-12\""; 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 "\"debian-12\""; 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:debian-12-ocaml-4.14@sha256:431bfc146d8299ad3cd1512f91ec37999cfd96edd0bd36d5f04bb8d170006756-sedlex.3.4-a4ecc6f5582f258cb732ff37479d3b36c0c70c0d"
2025-03-30 16:51.07: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:431bfc146d8299ad3cd1512f91ec37999cfd96edd0bd36d5f04bb8d170006756)
 (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 \"\\\"debian-12\\\"\"; 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 \"\\\"debian-12\\\"\"; 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.09: Waiting for worker…
2025-03-30 16:51.09: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  99% (22605/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:debian-12-ocaml-4.14@sha256:431bfc146d8299ad3cd1512f91ec37999cfd96edd0bd36d5f04bb8d170006756)
2025-03-30 16:51.32 ---> using "ea00b0715718382dc9364005d364581ab2944456bade06ca1f3498ce7ec7ca0c" 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-03-30 16:51.32 ---> using "5e67a1b5e5a093427bccdd53c04aeec4aaa8815dda536d53cc3bac7d22a5f02a" 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 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.

[NOTE] The 'jobs' option was reset, its value was 39 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=39 --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:51.32 ---> using "5bf2c87b7c78abe2a1d8a548baea02ae851b41568dcfbaba45fb30a63f9c6b4a" 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.4.0~alpha1~dev (fcce0c8d871702aabac0a216e45212ff004cfe79)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (local), 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-03-30 16:51.32 ---> using "d886b221e07ed04df648893bd916d9c803efc45c6f1138c0807f55b4c368fa9a" 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-03-30 16:51.32 ---> using "c3111b6b18b42a4ecf9482bbf5c1fb1fd10f0ddbd4612bd0cb6fac53f572a545" from cache

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

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [16.2 kB]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2025-03-27-1414.15-F-2025-03-27-1414.15.pdiff [187 B]
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2025-03-27-1414.15-F-2025-03-27-1414.15.pdiff [187 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [250 kB]
- Fetched 370 kB in 1s (635 kB/s)
- Reading package lists...
- 
2025-03-30 16:52.20 ---> saved as "9b79e02464b0612824a801c1f548ebf726b60b24a90e72ebe2442a3107c22e4d"

/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:52.22 ---> saved as "d78067f17033643182cf0c9af1bd45fa9746d9473e6cd73c4aedfeb6b32737a1"

/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 \"\\\"debian-12\\\"\"; 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.12.4      [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.12.4  (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.12.4
-> installed ppxlib.0.36.0
-> installed sedlex.3.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-30 16:53.14 ---> saved as "001d864e93c08c8b2e5a4f8a1ede09f234a44ea4974c18f1cc7ff767933bb091"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.3  (https://github.com/janestreet/base/archive/refs/tags/v0.16.3.tar.gz)
-> installed conf-bash.1
-> 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)
-> installed dune-configurator.3.17.2
-> retrieved jane-street-headers.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/jane-street-headers-v0.16.0.tar.gz)
-> retrieved jst-config.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/jst-config-v0.16.0.tar.gz)
-> installed jane-street-headers.v0.16.0
-> retrieved ppx_assert.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_assert-v0.16.0.tar.gz)
-> retrieved ppx_base.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_base-v0.16.0.tar.gz)
-> retrieved ppx_cold.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_cold-v0.16.0.tar.gz)
-> retrieved ppx_compare.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_compare-v0.16.0.tar.gz)
-> retrieved ppx_enumerate.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_enumerate-v0.16.0.tar.gz)
-> retrieved ppx_expect.v0.16.1  (https://github.com/janestreet/ppx_expect/archive/refs/tags/v0.16.1.tar.gz)
-> retrieved ppx_globalize.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_globalize-v0.16.0.tar.gz)
-> retrieved ppx_hash.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_hash-v0.16.0.tar.gz)
-> retrieved ppx_here.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_here-v0.16.0.tar.gz)
-> retrieved ppx_inline_test.v0.16.1  (https://github.com/janestreet/ppx_inline_test/archive/refs/tags/v0.16.1.tar.gz)
-> retrieved ppx_optcomp.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_optcomp-v0.16.0.tar.gz)
-> retrieved ppx_sexp_conv.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_sexp_conv-v0.16.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 re.1.12.0  (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> installed re.1.12.0
-> retrieved sexplib0.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz)
-> retrieved stdio.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/stdio-v0.16.0.tar.gz)
-> retrieved time_now.v0.16.0  (https://ocaml.janestreet.com/ocaml-core/v0.16/files/time_now-v0.16.0.tar.gz)
-> removed   sedlex.3.4
-> removed   ppxlib.0.36.0
-> removed   sexplib0.v0.17.0
-> installed sexplib0.v0.16.0
-> installed base.v0.16.3
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.1
-> installed sedlex.3.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-30 16:54.44 ---> saved as "307a400e2b90b14c6b6005374f5654450f568bc9933cfe00bdd3bf73aeb4cea7"

/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 \"\\\"debian-12\\\"\"; 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" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/sedlex.3.4)
- (cd _build/default/examples && ./repeat.exe)
- a
- 	Whitespace
- bcbc
- 	Whitespace
- d
- 	Whitespace
- ef
- 	Whitespace
- efef
- 	Whitespace
- efefef
- 	End
- (cd _build/default/examples && ./subtraction.exe)
- a
- 	Whitespace
- abc
- 	Whitespace
- abc
- 	Whitespace
- d
- 	Whitespace
- Other
- 	End
- (cd _build/default/examples && ./tokenizer.exe)
- Ident foobar
- Ident A123Bfoo
- Op ++
- Number 123
- Ident Xbar
- Op /
- Ident foo
- EOF
- (cd _build/default/examples && ./complement.exe)
- ULL??ULLU.
- (cd _build/default/examples && ./performance.exe)
- Execution time: 0.321613s
- (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 16:54.58 ---> saved as "d3957890497c75ec1efd4e18baeadbe88b70cdf47af7f70dd0d5aa5709666802"
Job succeeded
2025-03-30 16:55.05: Job succeeded