Build:
  1. 0
2025-12-07 16:17.26: New job: test ppx_parser.0.2.1, using opam 2.0
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29031/head (e3a5a492259d0b79f243d7da0a2c67779a8dd8a7)
                              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/29031/head" && git reset --hard e3a5a492
git fetch origin master
git merge --no-edit 2ab7464b16d46be89975bea0595240dd3fccf608
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam
RUN opam init --reinit -ni
RUN 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 depext -u || true
RUN opam pin add -k version -yn ppx_parser.0.2.1 0.2.1
RUN opam depext ppx_parser.0.2.1 && opam reinstall ppx_parser.0.2.1; \
    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" != 'ppx_parser.0.2.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam depext --with-test ppx_parser.0.2.1 && opam reinstall --with-test ppx_parser.0.2.1) || true
RUN opam depext --with-test ppx_parser.0.2.1 && opam reinstall --with-test --verbose ppx_parser.0.2.1; \
    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" != 'ppx_parser.0.2.1' && 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-07 16:17.26: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42-ppx_parser.0.2.1-e3a5a492259d0b79f243d7da0a2c67779a8dd8a7"
2025-12-07 16:17.26: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "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 depext -u || true"))
 (run (shell "opam pin add -k version -yn ppx_parser.0.2.1 0.2.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam depext ppx_parser.0.2.1 && opam reinstall ppx_parser.0.2.1;\
             \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\" != 'ppx_parser.0.2.1' && 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 depext --with-test ppx_parser.0.2.1 && opam reinstall --with-test ppx_parser.0.2.1) || true"))
 (run (shell  "opam depext --with-test ppx_parser.0.2.1 && opam reinstall --with-test --verbose ppx_parser.0.2.1;\
             \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\" != 'ppx_parser.0.2.1' && 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-07 16:17.26: Waiting for resource in pool OCluster
2025-12-07 16:17.27: Waiting for worker…
2025-12-07 16:17.30: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  94% (17949/18981)
Updating files:  95% (18032/18981)
Updating files:  96% (18222/18981)
Updating files:  97% (18412/18981)
Updating files:  98% (18602/18981)
Updating files:  99% (18792/18981)
Updating files: 100% (18981/18981)
Updating files: 100% (18981/18981), done.
HEAD is now at 2ab7464b16 Merge pull request #29022 from thatportugueseguy/release-passage-0.3.1
Updating 2ab7464b16..e3a5a49225
Fast-forward
 packages/ppx_parser/ppx_parser.0.2.1/opam | 52 +++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 packages/ppx_parser/ppx_parser.0.2.1/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42' locally
docker.io/ocaml/opam@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42: Pulling from ocaml/opam
53c88f1dfeb7: Already exists
f40653bbd569: Already exists
7810c66e401b: Already exists
d941667067ac: Already exists
6e099de50dbd: Already exists
45940f4cdce1: Already exists
cbbdea3b6efd: Already exists
4c34326b882a: Already exists
d8a1b7be7128: Already exists
b30719ba72c1: Already exists
eb031d51ba4a: Already exists
a59529ec7b26: Already exists
1049e4f3b9e4: Already exists
e2ab32c77566: Already exists
f6ef7bc31988: Already exists
28c3b5beaa3f: Already exists
83ebb7ec29e3: Already exists
186714418599: Already exists
5045c0de4fc9: Already exists
3312ff3bfd69: Already exists
335847f13b00: Already exists
4f4fb700ef54: Already exists
b7958021acdb: Already exists
d92ce1afae3a: Already exists
7842835bd039: Already exists
3a60e5befc90: Already exists
7efeca794a8f: Already exists
efc7f994cef1: Already exists
ba91afca1a0a: Already exists
8216b6db35fa: Already exists
229184d6690a: Already exists
40e4db8e45e7: Already exists
12fb3f269d42: Already exists
c0196b69a0ef: Already exists
b731bd241e4b: Already exists
53512a47261a: Already exists
b1be3290ddde: Already exists
fe5803a9f63d: Already exists
5cf61ec03f01: Already exists
d44c5e23965f: Already exists
90ef457de5f6: Pulling fs layer
a083513427ff: Pulling fs layer
44824355a76a: Pulling fs layer
e614a8301c85: Pulling fs layer
e614a8301c85: Waiting
a083513427ff: Download complete
44824355a76a: Verifying Checksum
44824355a76a: Download complete
e614a8301c85: Download complete
90ef457de5f6: Verifying Checksum
90ef457de5f6: Download complete
90ef457de5f6: Pull complete
a083513427ff: Pull complete
44824355a76a: Pull complete
e614a8301c85: Pull complete
Digest: sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
Status: Downloaded newer image for ocaml/opam@sha256:fddbf238ab4328743d25c83fb30c90359c9e4dc5f71c84c4d4b45ff7ccb90a42
2025-12-07 16:19.15 ---> using "fac428a8c7735f97c9831d58777f84ed5f5edf7a45e1d8d6ff738a3eabdf91c6" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.0 /usr/bin/opam"))
2025-12-07 16:19.15 ---> using "74f169e56b89b574e3e75fc60fa16558f8bfcd3fb2866e75bb68623f0e6cab71" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
[NOTE] Will configure 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.

[WARNING] Recommended dependencies -- most packages rely on these:
  - m4

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
default (at git+file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2025-12-07 16:19.15 ---> using "296d103825dd601aa8cdbacf5139eb248aa8b5f510514fff8606876774b6a3c3" from cache

/home/opam: (run (shell "opam config report"))
# opam config report
# opam-version      2.0.10 (adc1e1829a2bef5b240746df80341b508290fe3b) 
# self-upgrade      no
# system            arch=x86_64 os=linux os-distribution=debian os-version=13
# solver            builtin-mccs+glpk
# install-criteria  -removed,-count[version-lag,request],-count[version-lag,changed],-changed
# upgrade-criteria  -removed,-count[version-lag,solution],-new
# jobs              71
# repositories      1 (version-controlled)
# pinned            1 (version)
# current-switch    4.14
2025-12-07 16:19.15 ---> using "b1ba62bbc3aba6750ec86b9cb13dabb1af3b10a08daf22281aaae14a7f2dcafb" 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-07 16:19.15 ---> using "a4955a390fe747da509f4d0f8d7ea72450a4fe880b1af21a0aa3555d0689e421" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-07 16:19.37 ---> saved as "be700a3dee432f4016e91b92c1a8e595393ac2eda116ef4699e0b3ca98711499"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
default (at file:///home/opam/opam-repository): 
    [INFO] opam 2.1 and 2.2 include many performance and security improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)

2025-12-07 16:19.53 ---> saved as "5dfe57774b9f4489ba6f0788775bd2a5ff817dee2a8b2a08e9deae9d0a444fde"

/home/opam: (run (network host)
                 (shell "opam depext -u || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following command needs to be run through "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 (1511 kB/s)
Reading package lists...
# OS package update successful
2025-12-07 16:19.56 ---> saved as "dadc509d7666c77e03cff22e8f2cb89fb5950ed33ca3bb1890651ea025118a8c"

/home/opam: (run (shell "opam pin add -k version -yn ppx_parser.0.2.1 0.2.1"))
ppx_parser is now pinned to version 0.2.1
2025-12-07 16:19.57 ---> saved as "ae4f6fa2a00b1e320f5412a7b78251058a2d69c012a42ea39eeec5fd8feaebaa"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam depext ppx_parser.0.2.1 && opam reinstall ppx_parser.0.2.1;\
                        \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\" != 'ppx_parser.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
ppx_parser.0.2.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
  - install dune                3.20.2  [required by ppx_parser]
  - install stdlib-shims        0.3.0   [required by ppxlib]
  - install sexplib0            v0.17.0 [required by ppxlib]
  - install ppx_derivers        1.2.1   [required by ppxlib]
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install ppxlib              0.37.0  [required by ppx_parser]
  - install ppx_parser          0.2.1*
===== 7 to install =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[dune.3.20.2] found in cache
[ocaml-compiler-libs.v0.12.4] found in cache
[ppx_derivers.1.2.1] found in cache
[ppx_parser.0.2.1] found in cache
[ppxlib.0.37.0] found in cache
[sexplib0.v0.17.0] found in cache
[stdlib-shims.0.3.0] found in cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed dune.3.20.2
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.37.0
-> installed ppx_parser.0.2.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-07 16:21.11 ---> saved as "6fb4779702bc61fddbc53b980a5bbe1ad0a1b3c0746ca4aaf4afe5915ff53fb3"

/home/opam: (run (network host)
                 (shell "(opam depext --with-test ppx_parser.0.2.1 && opam reinstall --with-test ppx_parser.0.2.1) || true"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
  - install   camlp-streams      5.0.1  [required by ppx_parser]
  - install   ocamlbuild         0.16.1 [required by fmt, astring, uutf]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   cppo               1.8.0  [required by ppx_deriving]
  - install   ocamlfind          1.9.8  [required by ppx_deriving]
  - install   re                 1.14.0 [required by alcotest]
  - install   cmdliner           2.1.0  [required by alcotest]
  - install   topkg              1.1.1  [required by fmt, astring, uutf]
  - install   ppx_deriving       6.1.1  [required by ppx_parser]
  - install   uutf               1.0.4  [required by alcotest]
  - install   fmt                0.11.0 [required by alcotest]
  - install   astring            0.8.5  [required by alcotest]
  - install   alcotest           1.9.1  [required by ppx_parser]
  - recompile ppx_parser         0.2.1*
===== 13 to install | 1 to recompile =====

<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
[alcotest.1.9.1] downloaded from cache at https://opam.ocaml.org/cache
[astring.0.8.5] downloaded from cache at https://opam.ocaml.org/cache
[camlp-streams.5.0.1] downloaded from cache at https://opam.ocaml.org/cache
[cmdliner.2.1.0] downloaded from cache at https://opam.ocaml.org/cache
[cppo.1.8.0] downloaded from cache at https://opam.ocaml.org/cache
[fmt.0.11.0] downloaded from cache at https://opam.ocaml.org/cache
[ocaml-syntax-shims.1.0.0] downloaded from cache at https://opam.ocaml.org/cache
[ocamlbuild.0.16.1] downloaded from cache at https://opam.ocaml.org/cache
[ocamlfind.1.9.8] downloaded from cache at https://opam.ocaml.org/cache
[ppx_deriving.6.1.1] downloaded from cache at https://opam.ocaml.org/cache
[re.1.14.0] downloaded from cache at https://opam.ocaml.org/cache
[topkg.1.1.1] downloaded from cache at https://opam.ocaml.org/cache
[uutf.1.0.4] downloaded from cache at https://opam.ocaml.org/cache

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed camlp-streams.5.0.1
-> installed cppo.1.8.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> removed   ppx_parser.0.2.1
-> installed ocamlbuild.0.16.1
-> installed ppx_deriving.6.1.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed ppx_parser.0.2.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-07 16:21.43 ---> saved as "ccf1d0bd5ee06889a595e778bd193eab60af770c06f7f7e0b17e9471bb3c9a8d"

/home/opam: (run (shell  "opam depext --with-test ppx_parser.0.2.1 && opam reinstall --with-test --verbose ppx_parser.0.2.1;\
                        \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\" != 'ppx_parser.0.2.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
# Detecting depexts using vars: arch=x86_64, os=linux, os-distribution=debian, os-family=debian
# No extra OS packages requirements found.
# All required OS packages found.
The following actions will be performed:
  - recompile ppx_parser 0.2.1*

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/3: [ppx_parser: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_parser" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ppx_parser.0.2.1)
- (cd _build/default/test && ./test.exe)
- Testing `ppx_parser'.
- This run has ID `23QZQO6B'.
- 
-   [OK]          %parser          0   empty.
-   [OK]          %parser          1   empty_match.
-   [OK]          %parser          2   bind_stream.
-   [OK]          %parser          3   bind_stream_error.
-   [OK]          %parser          4   pop_any.
-   [OK]          %parser          5   identity.
-   [OK]          %parser          6   seq.
-   [OK]          %parser          7   no_bind_call.
-   [OK]          %let             0   alias.
-   [OK]          %let             1   call_alias.
-   [OK]          %let             2   let_ext.
-   [OK]          %let             3   anom_parser.
-   [OK]          %let             4   let_parser.
-   [OK]          %let             5   multi_bind.
-   [OK]          %let             6   multi_bind_w_args.
-   [OK]          %let             7   parser_calls.
-   [OK]          %let             8   or_pat_alias.
-   [OK]          %let             9   bind_pats.
-   [OK]          %let            10   peek_call_alternate.
-   [OK]          calc1            0   1+8+3.
-   [OK]          calc1            1   2*3*6.
-   [OK]          calc1            2   1+4*3+6+2+5*2.
-   [OK]          calc1            3   1+3^2*2^3.
-   [OK]          calc2            0   1 + 2 - 5 + 3.
-   [OK]          calc2            1   (1 + 2 + 3 * 4) - 567.
-   [OK]          calc2            2   1 + (3 * 2 + 1 + 5 / 2) * 8 - 3.
-   [OK]          parsers          0   consume_spaces.
-   [OK]          parsers          1   bind_const.
-   [OK]          parsers          2   count_consumed_spaces.
-   [OK]          parsers          3   consume_spaces_get_char_codes.
-   [OK]          parsers          4   consume_spaces_get_char_code_anonymous_p...
-   [OK]          parsers          5   consume_spaces_get_char_code_let_parser.
-   [OK]          parsers          6   split_tuples.
-   [OK]          parsers          7   split_record_tuple_fields.
-   [OK]          parsers          8   guards.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/ppx_parser.0.2.1/_build/default/test/_build/_tests/ppx_parser'.
- Test Successful in 0.006s. 35 tests run.
Processing  1/3: [ppx_parser: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "ppx_parser" "--create-install-files" "ppx_parser" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ppx_parser.0.2.1)
-> compiled  ppx_parser.0.2.1
-> removed   ppx_parser.0.2.1
-> installed ppx_parser.0.2.1
Done.
# Run eval $(opam env) to update the current shell environment
2025-12-07 16:22.00 ---> saved as "fd3dc4904e9da44afac41d2379f145b198455e0da3c3ee2ec28d63a711eba27c"
Job succeeded
2025-12-07 16:22.06: Job succeeded