Build:
  1. 0
2026-03-25 13:14.59: New job: test libdash.0.3 with ocaml-compiler.5.4.0~rc1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              on debian-13-ocaml-5.4/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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1; \
    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" != 'ocaml-compiler.5.4.0~rc1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall libdash.0.3; \
    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" != 'libdash.0.3' && 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 libdash.0.3) || true
RUN opam reinstall --with-test --verbose libdash.0.3; \
    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" != 'libdash.0.3' && 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 .

2026-03-25 13:14.59: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~rc1-libdash.0.3-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.59: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
             \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\" != 'ocaml-compiler.5.4.0~rc1' && 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 libdash.0.3;\
             \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\" != 'libdash.0.3' && 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 libdash.0.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose libdash.0.3;\
             \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\" != 'libdash.0.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-25 13:14.59: Waiting for resource in pool OCluster
2026-03-25 20:56.09: Waiting for worker…
2026-03-25 20:58.03: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  51% (9572/18520)
Updating files:  52% (9631/18520)
Updating files:  53% (9816/18520)
Updating files:  54% (10001/18520)
Updating files:  55% (10186/18520)
Updating files:  56% (10372/18520)
Updating files:  57% (10557/18520)
Updating files:  58% (10742/18520)
Updating files:  59% (10927/18520)
Updating files:  60% (11112/18520)
Updating files:  61% (11298/18520)
Updating files:  62% (11483/18520)
Updating files:  63% (11668/18520)
Updating files:  64% (11853/18520)
Updating files:  65% (12038/18520)
Updating files:  66% (12224/18520)
Updating files:  67% (12409/18520)
Updating files:  68% (12594/18520)
Updating files:  69% (12779/18520)
Updating files:  70% (12964/18520)
Updating files:  71% (13150/18520)
Updating files:  72% (13335/18520)
Updating files:  73% (13520/18520)
Updating files:  74% (13705/18520)
Updating files:  75% (13890/18520)
Updating files:  76% (14076/18520)
Updating files:  77% (14261/18520)
Updating files:  78% (14446/18520)
Updating files:  79% (14631/18520)
Updating files:  80% (14816/18520)
Updating files:  81% (15002/18520)
Updating files:  82% (15187/18520)
Updating files:  83% (15372/18520)
Updating files:  84% (15557/18520)
Updating files:  85% (15742/18520)
Updating files:  86% (15928/18520)
Updating files:  87% (16113/18520)
Updating files:  88% (16298/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6' locally
docker.io/ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
f6cbd774d654: Already exists
b40777a84cca: Already exists
7bb5edb9c889: Already exists
020670bcefab: Already exists
46df05d0db83: Already exists
45bde7b38933: Already exists
b4d63fa01ada: Already exists
Digest: sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
Status: Downloaded newer image for ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
2026-03-25 20:58.30 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 20:58.30 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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
2026-03-25 20:58.30 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-25 20:58.30 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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/"))
2026-03-25 20:58.30 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 20:58.32 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 20:58.32 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 2s (4723 kB/s)
- Reading package lists...
- 
2026-03-25 20:58.32 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
ocaml-compiler is now pinned to version 5.4.0~rc1
2026-03-25 20:58.32 ---> using "27ab7a5f0bff149d4782fba34c0f12f25c2745e4b7ce18ded4528e7b01215403" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
                        \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\" != 'ocaml-compiler.5.4.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~rc1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)              [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~rc1 (pinned)
=== recompile 6 packages
  - recompile base-domains        base                        [uses ocaml]
  - recompile base-effects        base                        [uses ocaml]
  - recompile base-nnp            base                        [uses base-domains]
  - recompile ocaml               5.4.0                       [uses ocaml-base-compiler]
  - recompile ocaml-config        3                           [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                       [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~rc1+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~rc1  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~rc1
-> installed ocaml-variants.5.4.0~rc1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~rc1+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 20:58.32 ---> using "b49b6ed909e77c558f677915e871ebeabba006ff37f3f132a79670cd2a9f5db8" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall libdash.0.3;\
                        \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\" != 'libdash.0.3' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
libdash.0.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 30 packages
  - install atd               2.16.0   [required by atdgen]
  - install atdgen            2.15.0   [required by libdash]
  - install atdgen-runtime    2.16.0   [required by atdgen]
  - install biniou            1.2.2    [required by atdgen]
  - install camlp-streams     5.0.1    [required by biniou]
  - install cmdliner          2.1.0    [required by atd]
  - install conf-aclocal      2        [required by libdash]
  - install conf-autoconf     0.2      [required by libdash]
  - install conf-automake     1        [required by conf-aclocal]
  - install conf-libffi       2.0.0    [required by ctypes-foreign]
  - install conf-libtool      1        [required by libdash]
  - install conf-pkg-config   4        [required by ctypes-foreign]
  - install csexp             1.5.2    [required by dune-configurator]
  - install ctypes            0.24.0   [required by libdash]
  - install ctypes-foreign    0.24.0   [required by libdash]
  - install dune              3.22.0   [required by ctypes, atdgen, ctypes-foreign]
  - install dune-configurator 3.22.0   [required by ctypes, ctypes-foreign]
  - install easy-format       1.3.4    [required by atd]
  - install integers          0.7.0    [required by ctypes]
  - install libdash           0.3
  - install menhir            20260209 [required by atd]
  - install menhirCST         20260209 [required by menhir]
  - install menhirGLR         20260209 [required by menhir]
  - install menhirLib         20260209 [required by menhir]
  - install menhirSdk         20260209 [required by menhir]
  - install ocamlfind         1.9.8    [required by libdash]
  - install re                1.14.0   [required by atdgen]
  - install seq               base     [required by yojson]
  - install stdlib-shims      0.3.0    [required by integers]
  - install yojson            2.2.2    [required by atdgen]

The following system packages will first need to be installed:
    autoconf automake libffi-dev libtool pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "automake" "libffi-dev" "libtool" "pkg-config"
- Selecting previously unselected package libmagic-mgc.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../00-libmagic-mgc_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic-mgc (1:5.46-5) ...
- Selecting previously unselected package libmagic1t64:amd64.
- Preparing to unpack .../01-libmagic1t64_1%3a5.46-5_amd64.deb ...
- Unpacking libmagic1t64:amd64 (1:5.46-5) ...
- Selecting previously unselected package file.
- Preparing to unpack .../02-file_1%3a5.46-5_amd64.deb ...
- Unpacking file (1:5.46-5) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../03-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../04-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../05-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../06-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../07-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../08-libltdl7_2.5.4-4_amd64.deb ...
- Unpacking libltdl7:amd64 (2.5.4-4) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../09-libltdl-dev_2.5.4-4_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.5.4-4) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../10-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../11-libtool_2.5.4-4_all.deb ...
- Unpacking libtool (2.5.4-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../12-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../13-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../14-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libmagic-mgc (1:5.46-5) ...
- Setting up libmagic1t64:amd64 (1:5.46-5) ...
- Setting up m4 (1.4.19-8) ...
- Setting up file (1:5.46-5) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libltdl7:amd64 (2.5.4-4) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libtool (2.5.4-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libltdl-dev:amd64 (2.5.4-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved atd.2.16.0, atdgen-runtime.2.16.0  (cached)
-> retrieved atdgen.2.15.0  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.24.0, ctypes-foreign.0.24.0  (cached)
-> installed conf-autoconf.0.2
-> installed conf-libtool.1
-> installed conf-pkg-config.4
-> installed conf-libffi.2.0.0
-> installed conf-automake.1
-> installed conf-aclocal.2
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved libdash.0.3  (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved yojson.2.2.2  (cached)
-> installed ocamlfind.1.9.8
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> installed easy-format.1.3.4
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed re.1.14.0
-> installed stdlib-shims.0.3.0
-> installed yojson.2.2.2
-> installed biniou.1.2.2
-> installed integers.0.7.0
-> installed atdgen-runtime.2.16.0
-> installed dune-configurator.3.22.0
-> installed ctypes.0.24.0
-> installed menhir.20260209
-> installed ctypes-foreign.0.24.0
-> installed atd.2.16.0
-> installed atdgen.2.15.0
-> installed libdash.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 21:02.46 ---> saved as "201751f478a5b00bfbd4a0a3809c92376d59f0ed556c545cc6c5fa395519f5af"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test libdash.0.3) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile libdash 0.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved libdash.0.3  (https://opam.ocaml.org/cache)
-> removed   libdash.0.3
-> installed libdash.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 21:05.19 ---> saved as "4a6ba998737be34f69709c35d412bb9768085b4aa65365ad3b260ef60c8dfcf2"

/home/opam: (run (shell  "opam reinstall --with-test --verbose libdash.0.3;\
                        \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\" != 'libdash.0.3' && 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 libdash 0.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [libdash.0.3: extract]
-> retrieved libdash.0.3  (cached)
Processing  2/4: [libdash: libtoolize]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "libtoolize" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- libtoolize: putting auxiliary files in '.'.
- libtoolize: linking file './ltmain.sh'
- libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
- libtoolize: linking file 'm4/libtool.m4'
- libtoolize: linking file 'm4/ltoptions.m4'
- libtoolize: linking file 'm4/ltsugar.m4'
- libtoolize: linking file 'm4/ltversion.m4'
- libtoolize: linking file 'm4/lt~obsolete.m4'
Processing  2/4: [libdash: aclocal]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "aclocal" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
Processing  2/4: [libdash: autoheader]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "autoheader" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
Processing  2/4: [libdash: automake]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "automake" "--add-missing" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- configure.ac:15: installing './ar-lib'
- configure.ac:10: installing './compile'
- configure.ac:196: installing './config.guess'
- configure.ac:196: installing './config.sub'
- configure.ac:2: installing './install-sh'
- configure.ac:2: installing './missing'
- src/Makefile.am: installing './depcomp'
Processing  2/4: [libdash: autoconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "autoconf" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- configure.ac:196: warning: The macro 'AC_PROG_LIBTOOL' is obsolete.
- configure.ac:196: You should run autoupdate.
- m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from...
- configure.ac:196: the top level
Processing  2/4: [libdash: mkdir _build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "mkdir" "_build" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
Processing  2/4: [libdash: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether sleep supports fractional seconds... yes
- checking filesystem timestamp resolution... 0.01
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking xargs -n works... yes
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... 
- none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... 
- yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for wchar.h... yes
- checking for minix/config.h... no
- checking whether it is safe to define __EXTENSIONS__... yes
- checking whether _XOPEN_SOURCE should be defined... no
- checking for bison... no
- checking for byacc... no
- checking for ar... ar
- checking the archiver (ar) interface... ar
- checking for build system compiler... gcc
- checking for __attribute__((__alias__()))... 
- yes
- checking for alloca.h... yes
- checking for paths.h... yes
- checking for gcc options needed to detect all undeclared functions... none needed
- checking whether _PATH_BSHELL is declared... yes
- checking whether _PATH_DEVNULL is declared... yes
- checking whether _PATH_TTY is declared... yes
- checking whether isblank is declared... 
- yes
- checking size of intmax_t... 8
- checking size of long long int... 8
- checking whether PRIdMAX is declared... yes
- checking for bsearch... yes
- checking for faccessat... 
- yes
- checking for getpwnam... yes
- checking for getrlimit... yes
- checking for isalpha... yes
- checking for killpg... yes
- checking for mempcpy... yes
- checking for sigsetmask... yes
- checking for stpcpy... 
- yes
- checking for strchrnul... yes
- checking for strsignal... yes
- checking for strtod... yes
- checking for strtoimax... yes
- checking for strtoumax... 
- yes
- checking for sysconf... yes
- checking for signal... yes
- checking for stat64... yes
- checking for open64... yes
- checking for stat::st_mtim... yes
- checking build system type... 
- x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for ranlib... ranlib
- checking for archiver @FILE support... @
- checking for strip... strip
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... 
- GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating src/Makefile
- config.status: creating config.h
- config.status: executing depfiles commands
- config.status: executing libtool commands
Processing  2/4: [libdash: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- make  all-recursive
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
- Making all in src
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
-   CC       builtins.def
-   GEN      builtins.h
-   CC       mknodes
-   GEN      nodes.h
-   GEN      token.h
-   CC       mksyntax
-   GEN      syntax.h
- make  all-am
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
-   CC       dash-alias.o
-   CC       dash-arith_yacc.o
-   CC       dash-arith_yylex.o
-   CC       dash-cd.o
-   CC       dash-error.o
-   CC       dash-eval.o
-   CC       dash-exec.o
-   CC       dash-expand.o
-   CC       dash-histedit.o
-   CC       dash-input.o
-   CC       dash-jobs.o
-   CC       dash-mail.o
-   CC       dash-main.o
-   CC       dash-memalloc.o
-   CC       dash-miscbltin.o
-   CC       dash-mystring.o
-   CC       dash-options.o
-   CC       dash-parser.o
-   CC       dash-redir.o
-   CC       dash-show.o
-   CC       dash-trap.o
-   CC       dash-output.o
-   CC       bltin/dash-printf.o
-   CC       dash-system.o
-   CC       bltin/dash-test.o
-   CC       bltin/dash-times.o
-   CC       dash-var.o
-   CC       builtins.o
-   CC       mkinit
-   GEN      init.c
-   CC       init.o
-   CC       nodes.o
-   CC       mksignames
-   GEN      signames.c
-   CC       signames.o
-   CC       syntax.o
-   CCLD     dash
-   CC       alias.o
-   CC       arith_yacc.o
-   CC       arith_yylex.o
-   CC       cd.o
-   CC       error.o
-   CC       eval.o
-   CC       exec.o
-   CC       expand.o
-   CC       histedit.o
-   CC       input.o
-   CC       jobs.o
-   CC       mail.o
-   CC       main.o
- main.c:278:1: warning: 'read_profile' defined but not used [-Wunused-function]
-   278 | read_profile(const char *name)
-       | ^~~~~~~~~~~~
-   CC       memalloc.o
-   CC       miscbltin.o
-   CC       mystring.o
-   CC       options.o
-   CC       parser.o
-   CC       redir.o
-   CC       show.o
-   CC       trap.o
-   CC       output.o
-   CC       bltin/printf.o
-   CC       system.o
-   CC       bltin/test.o
-   CC       bltin/times.o
-   CC       var.o
-   AR       libdash.a
-   CC       libdash_la-alias.lo
-   CC       libdash_la-arith_yacc.lo
-   CC       libdash_la-arith_yylex.lo
-   CC       libdash_la-cd.lo
-   CC       libdash_la-error.lo
-   CC       libdash_la-eval.lo
-   CC       libdash_la-exec.lo
-   CC       libdash_la-expand.lo
-   CC       libdash_la-histedit.lo
-   CC       libdash_la-input.lo
-   CC       libdash_la-jobs.lo
-   CC       libdash_la-mail.lo
-   CC       libdash_la-main.lo
- main.c:278:1: warning: 'read_profile' defined but not used [-Wunused-function]
-   278 | read_profile(const char *name)
-       | ^~~~~~~~~~~~
-   CC       libdash_la-memalloc.lo
-   CC       libdash_la-miscbltin.lo
-   CC       libdash_la-mystring.lo
-   CC       libdash_la-options.lo
-   CC       libdash_la-parser.lo
-   CC       libdash_la-redir.lo
-   CC       libdash_la-show.lo
-   CC       libdash_la-trap.lo
-   CC       libdash_la-output.lo
-   CC       bltin/libdash_la-printf.lo
-   CC       libdash_la-system.lo
-   CC       bltin/libdash_la-test.lo
-   CC       bltin/libdash_la-times.lo
-   CC       libdash_la-var.lo
-   CC       libdash_la-builtins.lo
-   CC       libdash_la-init.lo
-   CC       libdash_la-nodes.lo
-   CC       libdash_la-signames.lo
-   CC       libdash_la-syntax.lo
-   CCLD     libdash.la
-   CC       dlldash_la-alias.lo
-   CC       dlldash_la-arith_yacc.lo
-   CC       dlldash_la-arith_yylex.lo
-   CC       dlldash_la-cd.lo
-   CC       dlldash_la-error.lo
-   CC       dlldash_la-eval.lo
-   CC       dlldash_la-exec.lo
-   CC       dlldash_la-expand.lo
-   CC       dlldash_la-histedit.lo
-   CC       dlldash_la-input.lo
-   CC       dlldash_la-jobs.lo
-   CC       dlldash_la-mail.lo
-   CC       dlldash_la-main.lo
- main.c:278:1: warning: 'read_profile' defined but not used [-Wunused-function]
-   278 | read_profile(const char *name)
-       | ^~~~~~~~~~~~
-   CC       dlldash_la-memalloc.lo
-   CC       dlldash_la-miscbltin.lo
-   CC       dlldash_la-mystring.lo
-   CC       dlldash_la-options.lo
-   CC       dlldash_la-parser.lo
-   CC       dlldash_la-redir.lo
-   CC       dlldash_la-show.lo
-   CC       dlldash_la-trap.lo
-   CC       dlldash_la-output.lo
-   CC       bltin/dlldash_la-printf.lo
-   CC       dlldash_la-system.lo
-   CC       bltin/dlldash_la-test.lo
-   CC       bltin/dlldash_la-times.lo
-   CC       dlldash_la-var.lo
-   CC       dlldash_la-builtins.lo
-   CC       dlldash_la-init.lo
-   CC       dlldash_la-nodes.lo
-   CC       dlldash_la-signames.lo
-   CC       dlldash_la-syntax.lo
-   CCLD     dlldash.la
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
Processing  2/4: [libdash: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- Making install in src
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
- make  install-am
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
- make[3]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
-  /usr/bin/mkdir -p '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib'
-  /bin/bash ../libtool   --mode=install /usr/bin/install -c   libdash.la dlldash.la '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib'
- libtool: install: /usr/bin/install -c .libs/libdash.so.0.0.0 /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib/libdash.so.0.0.0
- libtool: install: (cd /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f libdash.so.0.0.0 libdash.so.0 || { rm -f libdash.so.0 && ln -s libdash.so.0.0.0 libdash.so.0; }; })
- libtool: install: (cd /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f libdash.so.0.0.0 libdash.so || { rm -f libdash.so && ln -s libdash.so.0.0.0 libdash.so; }; })
- libtool: install: /usr/bin/install -c .libs/libdash.lai /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib/libdash.la
- libtool: install: /usr/bin/install -c .libs/dlldash.so.0.0.0 /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib/dlldash.so.0.0.0
- libtool: install: (cd /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f dlldash.so.0.0.0 dlldash.so.0 || { rm -f dlldash.so.0 && ln -s dlldash.so.0.0.0 dlldash.so.0; }; })
- libtool: install: (cd /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib && { ln -s -f dlldash.so.0.0.0 dlldash.so || { rm -f dlldash.so && ln -s dlldash.so.0.0.0 dlldash.so; }; })
- libtool: install: /usr/bin/install -c .libs/dlldash.lai /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib/dlldash.la
- libtool: finish: PATH="/home/opam/.opam/5.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib
- ----------------------------------------------------------------------
- Libraries have been installed in:
-    /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib
- 
- If you ever happen to want to link against installed libraries
- in a given directory, LIBDIR, you must either use libtool, and
- specify the full pathname of the library, or use the '-LLIBDIR'
- flag during linking and do at least one of the following:
-    - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
-      during execution
-    - add LIBDIR to the 'LD_RUN_PATH' environment variable
-      during linking
-    - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
-    - have your system administrator add LIBDIR to '/etc/ld.so.conf'
- 
- See any operating system documentation about shared libraries for
- more information, such as the ld(1) and ld.so(8) manual pages.
- ----------------------------------------------------------------------
-  /usr/bin/mkdir -p '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/bin'
-   /bin/bash ../libtool   --mode=install /usr/bin/install -c dash '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/bin'
- libtool: install: /usr/bin/install -c dash /home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/bin/dash
-  /usr/bin/mkdir -p '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib'
-  /usr/bin/install -c -m 644  libdash.a '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib'
-  ( cd '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib' && ranlib libdash.a )
-  /usr/bin/mkdir -p '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/share/man/man1'
-  /usr/bin/install -c -m 644 dash.1 '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/share/man/man1'
- make[3]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/src'
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
- make[2]: Nothing to be done for 'install-exec-am'.
- make[2]: Nothing to be done for 'install-data-am'.
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3'
Processing  2/4: [libdash: ocaml/mk_meta.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml/mk_meta.sh" "/home/opam/.opam/5.4/lib/libdash" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
Processing  2/4: [libdash: make ocaml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "ocaml" "all" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/ocaml'
- ocamlfind ocamlmklib -g -package str,ctypes,ctypes.foreign -L/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib -ldash dash.mli dash.ml ast.mli ast.ml -o dash
- ./mk_meta.sh
- atdgen -j -j-std ast_atd.atd
- sed -i -e '/type char = Ast.char/d' ast_atd_j.ml
- sed -i -e '/type char = Ast.char/d' ast_atd_j.mli
- mv ast_atd_j.ml ast_json.ml
- mv ast_atd_j.mli ast_json.mli
- ocamlfind ocamlopt -g -thread -package threads,str,atdgen,ctypes,ctypes.foreign -linkpkg -cclib -L/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib -cclib -ldash dash.cmxa ast_json.mli ast_json.ml shell_to_json.ml -o shell_to_json
- ocamlfind ocamlopt -g -thread -package threads,str,atdgen,ctypes,ctypes.foreign -linkpkg -cclib -L/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/_build/lib -cclib -ldash dash.cmxa ast_json.mli ast_json.ml json_to_shell.ml -o json_to_shell
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/ocaml'
Processing  2/4: [libdash: ./mk_dot_install.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./mk_dot_install.sh" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
Processing  2/4: [libdash: ./ldconfig.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./ldconfig.sh" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
Processing  2/4: [libdash: make ocaml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "ocaml" "test" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3)
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/ocaml'
- PASS '../test/tests/weird_tilde.sh'
- PASS '../test/tests/timeout3' (two runs to fixpoint)
- PASS '../test/tests/tilde_arith'
- PASS '../test/tests/test.sh'
- PASS '../test/tests/syntax' (two runs to fixpoint)
- PASS '../test/tests/send_emails.sh'
- PASS '../test/tests/run_lda.sh'
- PASS '../test/tests/run_grader.sh'
- PASS '../test/tests/redir_indirect' (two runs to fixpoint)
- PASS '../test/tests/grade.sh'
- PASS '../test/tests/grab_submissions.sh'
- PASS '../test/tests/for_spaces.sh'
- PASS '../test/tests/escaping'
- PASS '../test/tests/empty_case'
- PASS '../test/tests/diverge.sh'
- PASS '../test/tests/builtin.trap.exitcode.test'
- PASS '../test/tests/braces_amp.sh' (two runs to fixpoint)
- PASS '../test/tests/backslash' (two runs to fixpoint)
- PASS '../test/tests/aaaa_single'
- PASS '../test/tests/aaaa'
- PASS '../test/pash_tests/wrap_cat.sh'
- PASS '../test/pash_tests/worker.sh'
- PASS '../test/pash_tests/wf_env_test.sh'
- PASS '../test/pash_tests/wf.sh'
- PASS '../test/pash_tests/web-index.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/web-index-aux.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/wc.sh'
- PASS '../test/pash_tests/wait_for_output_and_sigpipe_rest.sh'
- PASS '../test/pash_tests/var_assgn.sh'
- PASS '../test/pash_tests/update-img.sh'
- PASS '../test/pash_tests/unsafe2.sh'
- PASS '../test/pash_tests/unsafe1.sh'
- PASS '../test/pash_tests/unsafe0.sh'
- PASS '../test/pash_tests/unparsing-special-chars.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/unix50.sh'
- PASS '../test/pash_tests/uniq.sh'
- PASS '../test/pash_tests/uniq-c.2.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/trim_primers.sh'
- PASS '../test/pash_tests/trigrams.sh'
- PASS '../test/pash_tests/trap.sh'
- PASS '../test/pash_tests/tr_cs_wc_test.sh'
- PASS '../test/pash_tests/tr-test.sh'
- PASS '../test/pash_tests/topn_env_test.sh'
- PASS '../test/pash_tests/topn.sh'
- PASS '../test/pash_tests/top-n.sh'
- PASS '../test/pash_tests/to_mp3.sh'
- PASS '../test/pash_tests/tilde.sh'
- PASS '../test/pash_tests/test1.sh'
- PASS '../test/pash_tests/test.sh'
- PASS '../test/pash_tests/test-common.sh'
- PASS '../test/pash_tests/temp_test.sh'
- PASS '../test/pash_tests/temp-analytics.sh'
- PASS '../test/pash_tests/tee_web_index_bug.sh'
- PASS '../test/pash_tests/tailprogs.sh'
- PASS '../test/pash_tests/tail.sh'
- PASS '../test/pash_tests/symtab-sha.sh'
- PASS '../test/pash_tests/suggest-ec2.sh'
- PASS '../test/pash_tests/star-escape.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/split_pcap.sh'
- PASS '../test/pash_tests/spell_env_test.sh'
- PASS '../test/pash_tests/spell.sh'
- PASS '../test/pash_tests/spell-grep.sh'
- PASS '../test/pash_tests/sort_env_test.sh'
- PASS '../test/pash_tests/sort_env_small.sh'
- PASS '../test/pash_tests/sort_env.sh'
- PASS '../test/pash_tests/sort.sh'
- PASS '../test/pash_tests/sort-sort.sh'
- PASS '../test/pash_tests/sort-opt_env.sh'
- PASS '../test/pash_tests/sort-opt.sh'
- PASS '../test/pash_tests/sine.sh'
- PASS '../test/pash_tests/shortest_scripts_env_test.sh'
- PASS '../test/pash_tests/shortest_scripts.sh'
- PASS '../test/pash_tests/shortest-scripts.sh'
- PASS '../test/pash_tests/setup.sh'
- PASS '../test/pash_tests/setup-dspash.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/set_bug.sh'
- PASS '../test/pash_tests/set.sh'
- PASS '../test/pash_tests/set-v.sh'
- PASS '../test/pash_tests/set-e.sh'
- PASS '../test/pash_tests/set-e-3.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/set-e-2.sh'
- PASS '../test/pash_tests/set-diff_env_test.sh'
- PASS '../test/pash_tests/set-diff.sh'
- PASS '../test/pash_tests/set-dash-v-x.sh'
- PASS '../test/pash_tests/send_emails.sh'
- PASS '../test/pash_tests/sed-test.sh'
- PASS '../test/pash_tests/search.sh'
- PASS '../test/pash_tests/safe7.sh'
- PASS '../test/pash_tests/safe5.sh'
- PASS '../test/pash_tests/safe4.sh'
- PASS '../test/pash_tests/safe3.sh'
- PASS '../test/pash_tests/safe2.sh'
- PASS '../test/pash_tests/safe1.sh'
- PASS '../test/pash_tests/safe0.sh'
- PASS '../test/pash_tests/run_tests.sh'
- PASS '../test/pash_tests/run_lda.sh'
- PASS '../test/pash_tests/run_grader.sh'
- PASS '../test/pash_tests/run_evaluation.sh'
- PASS '../test/pash_tests/run_all_benchmarks.sh'
- PASS '../test/pash_tests/round_trip.sh'
- PASS '../test/pash_tests/remove_adapter.sh'
- PASS '../test/pash_tests/remote_write.sh'
- PASS '../test/pash_tests/remote_read.sh'
- PASS '../test/pash_tests/redirect_wrapper.sh'
- PASS '../test/pash_tests/redirect_stdin_to.sh'
- PASS '../test/pash_tests/redirect.sh'
- PASS '../test/pash_tests/redir-var-test.sh'
- PASS '../test/pash_tests/readonly.sh'
- PASS '../test/pash_tests/raw-r-sort.sh'
- PASS '../test/pash_tests/r-wc.sh'
- PASS '../test/pash_tests/r-sort.sh'
- PASS '../test/pash_tests/r-shortest-scripts.sh'
- PASS '../test/pash_tests/r-minimal_grep.sh'
- PASS '../test/pash_tests/r-bell_grep.sh'
- PASS '../test/pash_tests/proginf.sh'
- PASS '../test/pash_tests/pretty_print_json.sh'
- PASS '../test/pash_tests/pkg.sh'
- PASS '../test/pash_tests/pcap_bench.sh'
- PASS '../test/pash_tests/pcap.sh'
- PASS '../test/pash_tests/pash_runtime_shell_to_pash.sh'
- PASS '../test/pash_tests/pash_runtime_complete_execution.sh'
- PASS '../test/pash_tests/pash_ptempfile_name.sh'
- PASS '../test/pash_tests/pash_declare_vars.sh'
- PASS '../test/pash_tests/parse.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/page-per-line.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/page-count.sh'
- PASS '../test/pash_tests/pacaur.sh'
- PASS '../test/pash_tests/pa.sh'
- PASS '../test/pash_tests/p2.sh'
- PASS '../test/pash_tests/p1.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/no_in_script.sh'
- PASS '../test/pash_tests/nginx.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/nfa-regex.sh'
- PASS '../test/pash_tests/newline_in_var.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/mk_dot_install.sh'
- PASS '../test/pash_tests/minimal_sort_env_test.sh'
- PASS '../test/pash_tests/minimal_sort.sh'
- PASS '../test/pash_tests/minimal_grep_stdin.sh'
- PASS '../test/pash_tests/minimal_grep_env_test.sh'
- PASS '../test/pash_tests/minimal_grep.sh'
- PASS '../test/pash_tests/micro_10_env_test.sh'
- PASS '../test/pash_tests/micro_1000_env_test.sh'
- PASS '../test/pash_tests/micro_1000.sh'
- PASS '../test/pash_tests/micro_10.sh'
- PASS '../test/pash_tests/merge-wc.sh'
- PASS '../test/pash_tests/merge-uniq.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/max-temp.sh'
- PASS '../test/pash_tests/max-temp-process.sh'
- PASS '../test/pash_tests/max-temp-preprocess.sh'
- PASS '../test/pash_tests/make-ec2.sh'
- PASS '../test/pash_tests/loop1.sh'
- PASS '../test/pash_tests/longest-man.sh'
- PASS '../test/pash_tests/ldconfig.sh'
- PASS '../test/pash_tests/install-deps.sh'
- PASS '../test/pash_tests/innefficient_auto_split.sh'
- PASS '../test/pash_tests/incr.sh'
- PASS '../test/pash_tests/img_convert.sh'
- PASS '../test/pash_tests/identity.sh'
- PASS '../test/pash_tests/heredoc1.sh'
- PASS '../test/pash_tests/hello-world.sh'
- PASS '../test/pash_tests/head_deadlock_fixed_2.sh'
- PASS '../test/pash_tests/head_deadlock_fixed3.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/head_deadlock_fixed.sh'
- PASS '../test/pash_tests/head_deadlock.sh'
- PASS '../test/pash_tests/head.sh'
- PASS '../test/pash_tests/grep_f_script.sh'
- PASS '../test/pash_tests/grep_env_test.sh'
- PASS '../test/pash_tests/grep.sh'
- PASS '../test/pash_tests/grep-test.sh'
- PASS '../test/pash_tests/grade.sh'
- PASS '../test/pash_tests/grab_submissions.sh'
- PASS '../test/pash_tests/get_type_count.sh'
- PASS '../test/pash_tests/get_results.sh'
- PASS '../test/pash_tests/get_hash.sh'
- PASS '../test/pash_tests/get-summary.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/genquality.sh'
- PASS '../test/pash_tests/genomics.sh'
- PASS '../test/pash_tests/generate_single_chrom.sh'
- PASS '../test/pash_tests/gen_pl.sh'
- PASS '../test/pash_tests/gen_data.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/fun-def.sh'
- PASS '../test/pash_tests/for_spaces.sh'
- PASS '../test/pash_tests/for_loop_simple_env_test.sh'
- PASS '../test/pash_tests/for_loop_simple.sh'
- PASS '../test/pash_tests/for-loop.sh'
- PASS '../test/pash_tests/for-echo.sh'
- PASS '../test/pash_tests/export_var_script.sh'
- PASS '../test/pash_tests/expand-u.sh'
- PASS '../test/pash_tests/expand-u-positional.sh'
- PASS '../test/pash_tests/exit_code.sh'
- PASS '../test/pash_tests/execute_unix_benchmarks.sh'
- PASS '../test/pash_tests/exec-redirections.sh'
- PASS '../test/pash_tests/escape-madness.sh'
- PASS '../test/pash_tests/encrypt_files.sh'
- PASS '../test/pash_tests/echo_args.sh'
- PASS '../test/pash_tests/eager_test.sh'
- PASS '../test/pash_tests/eager.sh'
- PASS '../test/pash_tests/eager-no-task-par.sh'
- PASS '../test/pash_tests/drain_stream.sh'
- PASS '../test/pash_tests/double_sort_env_test.sh'
- PASS '../test/pash_tests/double_sort.sh'
- PASS '../test/pash_tests/diverge.sh'
- PASS '../test/pash_tests/distrotest_funs.sh'
- PASS '../test/pash_tests/distrotest_env.sh'
- PASS '../test/pash_tests/distrotest.sh'
- PASS '../test/pash_tests/distro-deps.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/distributed.sh'
- PASS '../test/pash_tests/diff_env_test.sh'
- PASS '../test/pash_tests/diff.sh'
- PASS '../test/pash_tests/dgsh-wc.sh'
- PASS '../test/pash_tests/dgsh-sort.sh'
- PASS '../test/pash_tests/dgsh-raw-sort.sh'
- PASS '../test/pash_tests/dfs_split_reader.sh'
- PASS '../test/pash_tests/demo-spell.sh'
- PASS '../test/pash_tests/deadlock_test_env_test.sh'
- PASS '../test/pash_tests/deadlock_test.sh'
- PASS '../test/pash_tests/count_packets.sh'
- PASS '../test/pash_tests/count.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/convert_to_fast.sh'
- PASS '../test/pash_tests/concat.sh'
- PASS '../test/pash_tests/compress_files.sh'
- PASS '../test/pash_tests/compile.sh'
- PASS '../test/pash_tests/comm-par-test_env_test.sh'
- PASS '../test/pash_tests/comm-par-test2_env_test.sh'
- PASS '../test/pash_tests/comm-par-test2.sh'
- PASS '../test/pash_tests/comm-par-test.sh'
- PASS '../test/pash_tests/cmd_sbst_subscript.sh'
- PASS '../test/pash_tests/cmd_sbst.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/clone_compress_repo.sh'
- PASS '../test/pash_tests/circus.sh'
- PASS '../test/pash_tests/cat_output_files.sh'
- PASS '../test/pash_tests/cat-redir-fail.sh'
- PASS '../test/pash_tests/call_distrib_planner_example.sh'
- PASS '../test/pash_tests/buggy_non_newline_input.sh'
- PASS '../test/pash_tests/braces_amp.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/bio4.sh'
- PASS '../test/pash_tests/bigrams_env_test.sh'
- PASS '../test/pash_tests/bigrams_aux_map.sh'
- PASS '../test/pash_tests/bigrams.sh'
- PASS '../test/pash_tests/bi-grams.sh'
- PASS '../test/pash_tests/bi-gram.aux.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/bell_grep.sh'
- PASS '../test/pash_tests/bam_to_sam.sh'
- PASS '../test/pash_tests/autogen.sh'
- PASS '../test/pash_tests/args_with_spaces.sh'
- PASS '../test/pash_tests/archive.sh'
- PASS '../test/pash_tests/ann-agg.sh'
- PASS '../test/pash_tests/ann-agg-2.sh'
- PASS '../test/pash_tests/alt_bigrams_funs.sh' (two runs to fixpoint)
- PASS '../test/pash_tests/alt_bigrams_env_test.sh'
- PASS '../test/pash_tests/alt_bigrams.sh'
- PASS '../test/pash_tests/add.sh'
- PASS '../test/pash_tests/9.sh'
- PASS '../test/pash_tests/8_1.sh'
- PASS '../test/pash_tests/8.varlog.sh'
- PASS '../test/pash_tests/8.sh'
- PASS '../test/pash_tests/8.3_3.sh'
- PASS '../test/pash_tests/8.3_2.sh'
- PASS '../test/pash_tests/8.2_2.sh'
- PASS '../test/pash_tests/8.2_1.sh'
- PASS '../test/pash_tests/7_2.sh'
- PASS '../test/pash_tests/7_1.sh'
- PASS '../test/pash_tests/7.sh'
- PASS '../test/pash_tests/7.nginx.sh'
- PASS '../test/pash_tests/6_7.sh'
- PASS '../test/pash_tests/6_5.sh'
- PASS '../test/pash_tests/6_4.sh'
- PASS '../test/pash_tests/6_3.sh'
- PASS '../test/pash_tests/6_2.sh'
- PASS '../test/pash_tests/6_1_2.sh'
- PASS '../test/pash_tests/6_1_1.sh'
- PASS '../test/pash_tests/6_1.sh'
- PASS '../test/pash_tests/6.sh'
- PASS '../test/pash_tests/6.msg.sh'
- PASS '../test/pash_tests/5.sh'
- PASS '../test/pash_tests/5.apachelog.sh'
- PASS '../test/pash_tests/4_3b.sh'
- PASS '../test/pash_tests/4_3.sh'
- PASS '../test/pash_tests/4.sh'
- PASS '../test/pash_tests/4.gitkernel.sh'
- PASS '../test/pash_tests/3_3.sh'
- PASS '../test/pash_tests/3_2.sh'
- PASS '../test/pash_tests/3_1.sh'
- PASS '../test/pash_tests/36.sh'
- PASS '../test/pash_tests/35.sh'
- PASS '../test/pash_tests/34.sh'
- PASS '../test/pash_tests/33.sh'
- PASS '../test/pash_tests/32.sh'
- PASS '../test/pash_tests/31.sh'
- PASS '../test/pash_tests/30.sh'
- PASS '../test/pash_tests/3.sh'
- PASS '../test/pash_tests/2_2.sh'
- PASS '../test/pash_tests/2_1.sh'
- PASS '../test/pash_tests/29.sh'
- PASS '../test/pash_tests/28.sh'
- PASS '../test/pash_tests/27.sh'
- PASS '../test/pash_tests/26.sh'
- PASS '../test/pash_tests/25.sh'
- PASS '../test/pash_tests/24.sh'
- PASS '../test/pash_tests/23.sh'
- PASS '../test/pash_tests/22.sh'
- PASS '../test/pash_tests/21.sh'
- PASS '../test/pash_tests/20.sh'
- PASS '../test/pash_tests/2.unrtf.sh'
- PASS '../test/pash_tests/2.sh'
- PASS '../test/pash_tests/1_1.sh'
- PASS '../test/pash_tests/19.sh'
- PASS '../test/pash_tests/18.sh'
- PASS '../test/pash_tests/17.sh'
- PASS '../test/pash_tests/16.sh'
- PASS '../test/pash_tests/15.sh'
- PASS '../test/pash_tests/14.sh'
- PASS '../test/pash_tests/13.sh'
- PASS '../test/pash_tests/12.sh'
- PASS '../test/pash_tests/11.sh'
- PASS '../test/pash_tests/10.sh'
- PASS '../test/pash_tests/1.sh'
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/libdash.0.3/ocaml'
-> compiled  libdash.0.3
-> removed   libdash.0.3
-> installed libdash.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 21:07.38 ---> saved as "f8589c1e388af1d20271c25e615f60542bc0c84398b4ef802a9dedda17d2f9e3"
Job succeeded
2026-03-25 21:08.16: Job succeeded