(not at the head of any monitored branch or PR)
2026-04-13 14:33.38: New job: test goblint-cil.2.0.0 with dune-configurator.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit c9af4994e07b4a3a2c4b3c5442aabe63dd5d0381
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune-configurator.3.22.2 3.22.2
RUN opam reinstall dune-configurator.3.22.2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-configurator.3.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall goblint-cil.2.0.0; \
    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" != 'goblint-cil.2.0.0' && 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 goblint-cil.2.0.0) || true
RUN opam reinstall --with-test --verbose goblint-cil.2.0.0; \
    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" != 'goblint-cil.2.0.0' && 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-04-13 14:33.38: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126-dune-configurator.3.22.2-goblint-cil.2.0.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-13 14:33.38: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune-configurator.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune-configurator.3.22.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune-configurator.3.22.2' && 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 goblint-cil.2.0.0;\
             \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\" != 'goblint-cil.2.0.0' && 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 goblint-cil.2.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose goblint-cil.2.0.0;\
             \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\" != 'goblint-cil.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-13 14:33.38: Waiting for resource in pool OCluster
2026-04-13 14:36.17: Waiting for worker…
2026-04-13 14:39.41: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  71% (13341/18713)
Updating files:  72% (13474/18713)
Updating files:  73% (13661/18713)
Updating files:  74% (13848/18713)
Updating files:  75% (14035/18713)
Updating files:  76% (14222/18713)
Updating files:  77% (14410/18713)
Updating files:  78% (14597/18713)
Updating files:  79% (14784/18713)
Updating files:  80% (14971/18713)
Updating files:  81% (15158/18713)
Updating files:  82% (15345/18713)
Updating files:  83% (15532/18713)
Updating files:  84% (15719/18713)
Updating files:  85% (15907/18713)
Updating files:  86% (16094/18713)
Updating files:  87% (16281/18713)
Updating files:  88% (16468/18713)
Updating files:  89% (16655/18713)
Updating files:  90% (16842/18713)
Updating files:  91% (17029/18713)
Updating files:  92% (17216/18713)
Updating files:  93% (17404/18713)
Updating files:  94% (17591/18713)
Updating files:  95% (17778/18713)
Updating files:  96% (17965/18713)
Updating files:  97% (18152/18713)
Updating files:  98% (18339/18713)
Updating files:  99% (18526/18713)
Updating files: 100% (18713/18713)
Updating files: 100% (18713/18713), done.
HEAD is now at c9af4994e0 Merge pull request #29667 from shonfeder/stdcompat-ocaml-4-14-3-bound
Merge made by the 'ort' strategy.
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126' locally
docker.io/ocaml/opam@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
9cb5e198c8cf: Already exists
2d346d36dcf2: Already exists
cdc35e289b8d: Already exists
aeb7244bb580: Already exists
fc1943254a0d: Already exists
84238c416f8e: Already exists
fbbfe75d3112: Already exists
221fdc5d9929: Already exists
1fec9149b52a: Already exists
9c6e52557f24: Already exists
8737f5036aae: Already exists
d69c4074de14: Already exists
7237152a5f04: Already exists
fba4b414d8a0: Already exists
40d552afb3ef: Already exists
077cc17dc8e4: Already exists
077cc17dc8e4: Already exists
169e1be36a55: Already exists
0a8a005097ab: Already exists
caba3ec4b361: Already exists
6a364dc641f8: Already exists
4f4fb700ef54: Already exists
ab8052928cdc: Already exists
f5717a28dd6a: Already exists
79233a9b9bed: Already exists
d832d53e7392: Already exists
1872dad82243: Already exists
bfd849b08ba7: Already exists
834a8024ef15: Already exists
98ccec79258b: Already exists
fb48f36a0542: Already exists
3688b13db8e7: Already exists
a5c099f5f72c: Already exists
1ff1760de5b0: Already exists
98eec6764aa5: Already exists
aa22ae69debd: Already exists
12bfb7b962a2: Already exists
ec25ce9bb816: Already exists
beadd3cf7357: Already exists
d0d0c65a426d: Already exists
27080da82c6b: Pulling fs layer
3b99adeb504e: Pulling fs layer
27080da82c6b: Waiting
867c8a52ad10: Pulling fs layer
3b99adeb504e: Waiting
01ca275a6ca2: Pulling fs layer
867c8a52ad10: Waiting
01ca275a6ca2: Waiting
3b99adeb504e: Verifying Checksum
3b99adeb504e: Download complete
01ca275a6ca2: Download complete
27080da82c6b: Verifying Checksum
27080da82c6b: Download complete
27080da82c6b: Pull complete
3b99adeb504e: Pull complete
867c8a52ad10: Pull complete
01ca275a6ca2: Pull complete
Digest: sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
Status: Downloaded newer image for ocaml/opam@sha256:ec5999d94ff5da2754b2d163583ef868ccaefbaaabbe66412fde8712ae6f5126
2026-04-13 14:39.52 ---> using "d0e330c08fa445d83f06df86dbe749aac73c20b9c3be340824d01a143f189b82" 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-04-13 14:39.52 ---> using "3ec7ac935151f5277a236626f366bf7f6f18395cb01e6e86eff2abeffc750f69" 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 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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-13 14:39.52 ---> using "b5a0847c35501fd963cedc3388b00c999e5617a9db85df5529c240a6fc10a617" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-13 14:39.52 ---> using "28464b62e165a839b63b1c2ae024a4b4fcbe23c1802c3adf881d35db6bc1d4c2" 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-04-13 14:39.52 ---> using "4dfd69403557bd9c8ecec7a8b2fdd9b50feea12943fd8b9150cd347ede8d5f38" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 14:39.53 ---> using "76015386276d4bb29fca2811eadd7e7b0c7c7f019d45f65cb6c4e7d05aa25d96" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 14:39.53 ---> using "8eb0b78bd5b9a856fb178aa3464df6b3e663fd845aa5a8528a0e419ffa374e38" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [122 kB]
- Fetched 213 kB in 1s (270 kB/s)
- Reading package lists...
- 
2026-04-13 14:39.53 ---> using "a3c60239233d5fb7d430a005c7b1cfedff36a9eba69b8afb72645639ab99c849" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.22.2 3.22.2"))
dune-configurator is now pinned to version 3.22.2
2026-04-13 14:39.53 ---> using "8a0cd4f0b4225030563bd317d5ce03dd376bd483ae610e69dbb4a443094d099e" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune-configurator.3.22.2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune-configurator.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune-configurator.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
  - install csexp             1.5.2           [required by dune-configurator]
  - install dune              3.22.2          [required by dune-configurator]
  - install dune-configurator 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.22.2, dune-configurator.3.22.2  (cached)
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 14:39.53 ---> using "323f4ba3b91191f52cff34e4ac35ef5f86d010a33186eec4e3102d62cb97ce0e" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall goblint-cil.2.0.0;\
                        \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\" != 'goblint-cil.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
goblint-cil.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
  - install conf-gcc            1.0     [required by goblint-cil]
  - install conf-gmp            5       [required by zarith]
  - install conf-perl           2       [required by goblint-cil]
  - install conf-pkg-config     4       [required by zarith]
  - install cppo                1.8.0   [required by goblint-cil]
  - install goblint-cil         2.0.0
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install ocamlfind           1.9.8   [required by zarith]
  - install ppx_derivers        1.2.1   [required by ppx_deriving]
  - install ppx_deriving        6.1.1   [required by ppx_deriving_yojson]
  - install ppx_deriving_yojson 3.10.0  [required by goblint-cil]
  - install ppxlib              0.38.0  [required by ppx_deriving_yojson]
  - install sexplib0            v0.17.0 [required by ppxlib]
  - install stdlib-shims        0.3.0   [required by goblint-cil]
  - install yojson              3.0.0   [required by goblint-cil]
  - install zarith              1.14    [required by goblint-cil]

The following system packages will first need to be installed:
    libgmp-dev 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" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gcc.1.0
-> installed conf-gmp.5
-> installed conf-perl.2
-> installed conf-pkg-config.4
-> retrieved goblint-cil.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed cppo.1.8.0
-> retrieved zarith.1.14  (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed ppxlib.0.38.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_yojson.3.10.0
-> installed goblint-cil.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 14:40.58 ---> saved as "42702073a9e872785aff13f7b576051084180feadb6b4ea591e8e07af63d1d18"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved goblint-cil.2.0.0  (https://opam.ocaml.org/cache)
[ERROR] The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".

#=== ERROR while compiling goblint-cil.2.0.0 ==================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.3 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/goblint-cil.2.0.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p goblint-cil -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/goblint-cil-7-71a6fc.env
# output-file          ~/.opam/log/goblint-cil-7-71a6fc.out
### output ###
# (cd _build/.sandbox/16c576f6232442e5e4377a100818c5b3/default && /home/opam/.opam/4.14/bin/ocamlyacc src/frontc/cparser.mly)
# 1 shift/reduce conflict, 1 reduce/reduce conflict.
# (cd _build/default/src && /home/opam/.opam/4.14/bin/cppo -V OCAML:4.14.3 machdep.cppo.ml -x machdep:./machdep-ml.exe -o machdep.ml)
# Generating machine dependency information for CIL
# File "test/dune", lines 1-4, characters 0-180:
# 1 | (rule
# 2 |  (alias runtest)
# 3 |  (deps (alias_rec ../cilly) (package goblint-cil) (source_tree .))
# 4 |  (action (setenv "CC" "\"%{read-lines:../bin/real-gcc}\"" (run ./testcil -r --regrtest))))
# (cd _build/default/test && ./testcil -r --regrtest)
# Test infrastructure for CIL on linux
# There are 432 tests enabled
# ------------ [0] CC="gcc" make arcombine ------------
# ------------ [1] CC="gcc" make baddef ------------
# ------------ [2] CC="gcc" make comb ------------
# ------------ [3] CC="gcc" make combine1 ------------
# ------------ [4] CC="gcc" make combine10 ------------
# ------------ [5] CC="gcc" make combine11 ------------
# ------------ [6] CC="gcc" make combine12 ------------
# ------------ [7] CC="gcc" make combine13 ------------
# ------------ [8] CC="gcc" make combine14 ------------
# ------------ [9] CC="gcc" make combine15 ------------
# ------------ [10] CC="gcc" make combine16 ------------
# ------------ [11] CC="gcc" make combine17 ------------
# ------------ [12] CC="gcc" make combine18 ------------
# ------------ [13] CC="gcc" make combine2 ------------
# ------------ [14] CC="gcc" make combine20 ------------
# ------------ [15] CC="gcc" make combine21 ------------
# ------------ [16] (fail) CC="gcc" make combine22 ------------
# ------------ [17] CC="gcc" make combine3 ------------
# ------------ [18] CC="gcc" make combine5 ------------
# ------------ [19] CC="gcc" make combine6 ------------
# ------------ [20] CC="gcc" make combine8 ------------
# ------------ [21] (fail) CC="gcc" make combine9 ------------
# ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------
# ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------
# ------------ [24] CC="gcc" make combine_init ------------
# ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------
# ------------ [26] (fail) CC="gcc" make combine_samefn ------------
# ------------ [27] CC="gcc" make combine_sbump ------------
# ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------
# ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------
# ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------
# ------------ [31] CC="gcc" make combinealias ------------
# ------------ [32] (fail) CC="gcc" make combinec99inline ------------
# ------------ [33] CC="gcc" make combineenum1 ------------
# ------------ [34] CC="gcc" make combineenum2 ------------
# ------------ [35] CC="gcc" make combineenum3 ------------
# ------------ [36] CC="gcc" make combinegnuinline ------------
# ------------ [37] (fail) CC="gcc" make combineinline1 ------------
# ------------ [38] CC="gcc" make combineinline2 ------------
# ------------ [39] (fail) CC="gcc" make combineinline3 ------------
# ------------ [40] (fail) CC="gcc" make combineinline4 ------------
# ------------ [41] CC="gcc" make combineinline6 ------------
# ------------ [42] CC="gcc" make combinelibrik ------------
# ------------ [43] CC="gcc" make combinestruct1 ------------
# ------------ [44] CC="gcc" make merge-ar ------------
# ------------ [45] CC="gcc" make mergeinit ------------
# ------------ [46] CC="gcc" make mergeinline ------------
# ------------ [47] CC="gcc" make mergestruct ------------
# ------------ [48] CC="gcc" make mixedcomb ------------
# ------------ [49] CC="gcc" make runall/alpha ------------
# ------------ [50] CC="gcc" make runall/extinline ------------
# ------------ [51] CC="gcc" make runall/runall_misc ------------
# ------------ [52] CC="gcc" make runall/structattr2 ------------
# ------------ [53] CC="gcc" make runall/switch ------------
# ------------ [54] CC="gcc" make scott-nogcc/bogus_redef ------------
# ------------ [55] CC="gcc" make scott-nogcc/funcname ------------
# ------------ [56] CC="gcc" make scott-nolink/brlock ------------
# ------------ [57] CC="gcc" make scott/arrayinit ------------
# ------------ [58] (fail) CC="gcc" make scott/asmfndecl ------------
# 
# [58] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC="gcc" make scott/asmfndecl
# ------------ [59] CC="gcc" make scott/bisonerror ------------
# ------------ [60] CC="gcc" make scott/cmpzero ------------
# ------------ [61] CC="gcc" make scott/constdecl ------------
# ------------ [62] CC="gcc" make scott/constfold ------------
# ------------ [63] CC="gcc" make scott/ctype ------------
# ------------ [64] CC="gcc" make scott/enumattr ------------
# ------------ [65] CC="gcc" make scott/enumerator_sizeof ------------
# ------------ [66] CC="gcc" make scott/enuminit ------------
# ------------ [67] CC="gcc" make scott/errorinfn ------------
# ------------ [68] CC="gcc" make scott/funcptr ------------
# ------------ [69] CC="gcc" make scott/gimpdouble ------------
# ------------ [70] (fail) CC="gcc" make scott/globalprob ------------
# 
# [70] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC="gcc" make scott/globalprob
# ------------ [71] CC="gcc" make scott/initedextern ------------
# ------------ [72] CC="gcc" make scott/invalredef ------------
# ------------ [73] CC="gcc" make scott/invalredef2 ------------
# ------------ [74] CC="gcc" make scott/kernel1 ------------
# 
# [74] A regression test command failed:
#   CC="gcc" make scott/kernel1
# ------------ [75] CC="gcc" make scott/kernel2 ------------
# ------------ [76] CC="gcc" make scott/lexnum ------------
# ------------ [77] CC="gcc" make scott/litstruct ------------
# ------------ [78] CC="gcc" make scott/main ------------
# ------------ [79] CC="gcc" make scott/memberofptr ------------
# ------------ [80] CC="gcc" make scott/mode_sizes ------------
# ------------ [81] CC="gcc" make scott/multiplestatics ------------
# ------------ [82] CC="gcc" make scott/neg64 ------------
# 
# [82] A regression test command failed:
#   CC="gcc" make scott/neg64
# ------------ [83] CC="gcc" make scott/oldstyle ------------
# ------------ [84] CC="gcc" make scott/open ------------
# ------------ [85] CC="gcc" make scott/partialbracket ------------
# ------------ [86] CC="gcc" make scott/putc ------------
# ------------ [87] (fail) CC="gcc" make scott/regparm0 ------------
# 
# [87] GOOD NEWS: A test that used to fail (Notbug. Some gcc versions fail to compile this test on i386) now succeeds:
#   CC="gcc" make scott/regparm0
# ------------ [88] CC="gcc" make scott/s59 ------------
# ------------ [89] CC="gcc" make scott/sizeofchar ------------
# ------------ [90] CC="gcc" make scott/sockaddr ------------
# ------------ [91] CC="gcc" make scott/struct_cs ------------
# ------------ [92] CC="gcc" make scott/structattr ------------
# ------------ [93] CC="gcc" make scott/structattr3 ------------
# ------------ [94] CC="gcc" make scott/thing ------------
# ------------ [95] CC="gcc" make scott/transpunion ------------
# ------------ [96] CC="gcc" make scott/typeof ------------
# 
# [96] A regression test command failed:
#   CC="gcc" make scott/typeof
# ------------ [97] CC="gcc" make scott/uninit_tmp ------------
# 
# [97] A regression test command failed:
#   CC="gcc" make scott/uninit_tmp
# ------------ [98] CC="gcc" make scott/unionassign ------------
# ------------ [99] CC="gcc" make scott/unscomp ------------
# ------------ [100] CC="gcc" make scott/volatilestruct ------------
# ------------ [101] CC="gcc" make scott/xcheckers ------------
# ------------ [102] CC="gcc" make test-bad/enuminit2 ------------
# ------------ [103] CC="gcc" make test-bad/trivial-tb ------------
# ------------ [104] CC="gcc" make test-bad1/flexible-array-member-bad ------------
# ------------ [105] CC="gcc" make test-bad1/wchar-bad ------------
# ------------ [106] CC="gcc" make test/align3 ------------
# ------------ [107] CC="gcc" make test/apachebits ------------
# ------------ [108] (fail) CC="gcc" make test/argcast ------------
# ------------ [109] CC="gcc" make test/array-size-trick ------------
# ------------ [110] CC="gcc" make test/array1 ------------
# ------------ [111] CC="gcc" make test/array2 ------------
# ------------ [112] CC="gcc" make test/arrsize ------------
# ------------ [113] CC="gcc" make test/asm2 ------------
# ------------ [114] CC="gcc" make test/asm3 ------------
# ------------ [115] CC="gcc" make test/asm4 ------------
# ------------ [116] CC="gcc" make test/asm_emptyclobberallowed ------------
# ------------ [117] CC="gcc" make test/attr10 ------------
# ------------ [118] CC="gcc" make test/attr11 ------------
# ------------ [119] CC="gcc" make test/attr12 ------------
# ------------ [120] CC="gcc" make test/attr13 ------------
# ------------ [121] CC="gcc" make test/attr2 ------------
# ------------ [122] CC="gcc" make test/attr3 ------------
# ------------ [123] CC="gcc" make test/attr6 ------------
# ------------ [124] CC="gcc" make test/attr7 ------------
# ------------ [125] CC="gcc" make test/attr8 ------------
# ------------ [126] CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 ------------
# ------------ [127] CC="gcc" make test/bitfield ------------
# ------------ [128] (fail) CC="gcc" make test/break1 ------------
# ------------ [129] CC="gcc" make test/builtin2 ------------
# ------------ [130] CC="gcc" make test/builtin5 ------------
# ------------ [131] CC="gcc" make test/cast1 ------------
# ------------ [132] CC="gcc" make test/cast2 ------------
# ------------ [133] CC="gcc" make test/cast4 ------------
# ------------ [134] CC="gcc" make test/castcall ------------
# ------------ [135] CC="gcc" make test/castunion ------------
# ------------ [136] CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 ------------
# ------------ [137] (fail) CC="gcc" make test/const13 WARNINGS_ARE_ERRORS=1 ------------
# ------------ [138] CC="gcc" make test/const14 ------------
# ------------ [139] CC="gcc" make test/const7 ------------
# ------------ [140] CC="gcc" make test/const9 ------------
# ------------ [141] CC="gcc" make test/constprop ------------
# ------------ [142] CC="gcc" make test/constrexpr ------------
# ------------ [143] (fail) CC="gcc" make test/cpp-2 ------------
# ------------ [144] CC="gcc" make test/cpp-3 ------------
# ------------ [145] (fail) CC="gcc" make test/decl2 ------------
# ------------ [146] CC="gcc" make test/deref ------------
# ------------ [147] CC="gcc" make test/duplicate ------------
# ------------ [148] CC="gcc" make test/enum ------------
# ------------ [149] CC="gcc" make test/extinline3 ------------
# ------------ [150] CC="gcc" make test/func ------------
# ------------ [151] (fail) CC="gcc" make test/func10 ------------
# ------------ [152] (fail) CC="gcc" make test/funcarg ------------
# ------------ [153] CC="gcc" make test/globals ------------
# ------------ [154] (fail) CC="gcc" make test/globals2 ------------
# ------------ [155] CC="gcc" make test/huff1 ------------
# ------------ [156] CC="gcc" make test/init ------------
# ------------ [157] CC="gcc" make test/init8 ------------
# ------------ [158] CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 ------------
# ------------ [159] CC="gcc" make test/inline3 ------------
# ------------ [160] CC="gcc" make test/jmp_buf ------------
# ------------ [161] CC="gcc" make test/label5 ------------
# ------------ [162] CC="gcc" make test/label7 ------------
# ------------ [163] CC="gcc" make test/label8 ------------
# ------------ [164] CC="gcc" make test/label9 EXTRAARGS=--domakeCFG ------------
# ------------ [165] CC="gcc" make test/li ------------
# ------------ [166] CC="gcc" make test/linux_atomic ------------
# ------------ [167] CC="gcc" make test/linuxcombine1_1 ------------
# ------------ [168] CC="gcc" make test/list ------------
# ------------ [169] CC="gcc" make test/matrix ------------
# ------------ [170] CC="gcc" make test/noreturn ------------
# ------------ [171] CC="gcc" make test/outofmem ------------
# ------------ [172] CC="gcc" make test/packed2 ------------
# ------------ [173] CC="gcc" make test/power1 ------------
# ------------ [174] CC="gcc" make test/printf ------------
# ------------ [175] CC="gcc" make test/printf_const ------------
# ------------ [176] (fail) CC="gcc" make test/proto1 ------------
# ------------ [177] (fail) CC="gcc" make test/proto2 ------------
# ------------ [178] CC="gcc" make test/pure ------------
# ------------ [179] CC="gcc" make test/restrict EXTRAARGS=-std=c9x ------------
# ------------ [180] CC="gcc" make test/restrict1 ------------
# ------------ [181] CC="gcc" make test/retval ------------
# ------------ [182] CC="gcc" make test/scope12 ------------
# ------------ [183] CC="gcc" make test/scope2 ------------
# ------------ [184] (fail) CC="gcc" make test/scope3 ------------
# ------------ [185] CC="gcc" make test/scope4 ------------
# ------------ [186] CC="gcc" make test/shell-escape SHELL_ESCAPE=1 ------------
# ------------ [187] (fail) CC="gcc" make test/sizeof3 ------------
# 
# [187] GOOD NEWS: A test that used to fail (Bug. Constant-folding of very large arrays does not work on 32-bit machines.) now succeeds:
#   CC="gcc" make test/sizeof3
# ------------ [188] CC="gcc" make test/static ------------
# ------------ [189] CC="gcc" make test/static1 ------------
# ------------ [190] CC="gcc" make test/strcpy ------------
# ------------ [191] CC="gcc" make test/struct_init ------------
# ------------ [192] CC="gcc" make test/structassign ------------
# ------------ [193] (fail) CC="gcc" make test/switch_default_parse_bug ------------
# ------------ [194] CC="gcc" make test/sync-1 ------------
# ------------ [195] CC="gcc" make test/sync-2 ------------
# ------------ [196] CC="gcc" make test/sync-3 ------------
# ------------ [197] CC="gcc" make test/tags ------------
# ------------ [198] CC="gcc" make test/task ------------
# ------------ [199] CC="gcc" make test/unimplemented ------------
# ------------ [200] CC="gcc" make test/union5 ------------
# ------------ [201] CC="gcc" make test/va_arg_pack ------------
# ------------ [202] CC="gcc" make test/vararg7 ------------
# ------------ [203] CC="gcc" make test/voidstar ------------
# ------------ [204] CC="gcc" make test/voidtypedef ------------
# ------------ [205] CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 ------------
# ------------ [206] CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 ------------
# ------------ [207] CC="gcc" make test_i/empty ------------
# ------------ [208] CC="gcc" make test_i/lineno ------------
# ------------ [209] CC="gcc" make testc11/alignas ------------
# ------------ [210] (fail) CC="gcc" make testc11/clang-c11-generic-1-1 ------------
# ------------ [211] (fail) CC="gcc" make testc11/clang-c11-generic-1-2 ------------
# ------------ [212] CC="gcc" make testc11/clang-c11-generic-2 ------------
# ------------ [213] (fail) CC="gcc" make testc11/gcc-c11-generic-2-1 ------------
# ------------ [214] (fail) CC="gcc" make testc11/gcc-c11-generic-2-7 ------------
# ------------ [215] CC="gcc" make testc11/gcc-c11-generic-3-1 ------------
# ------------ [216] (fail) CC="gcc" make testc11/gcc-c11-generic-3-2 ------------
# ------------ [217] (fail) CC="gcc" make testc11/gcc-c11-generic-3-3 ------------
# ------------ [218] (fail) CC="gcc" make testc11/gcc-c11-generic-3-4 ------------
# ------------ [219] CC="gcc" make testobj/asm5 ------------
# ------------ [220] CC="gcc" make testrun/addr-array ------------
# ------------ [221] CC="gcc" make testrun/addr-string ------------
# ------------ [222] CC="gcc" make testrun/addrof3 ------------
# ------------ [223] CC="gcc" make testrun/align1 ------------
# ------------ [224] CC="gcc" make testrun/align2 EXTRAARGS=-O2 ------------
# ------------ [225] CC="gcc" make testrun/apachebuf ------------
# ------------ [226] CC="gcc" make testrun/apachefptr ------------
# ------------ [227] CC="gcc" make testrun/array_formal ------------
# ------------ [228] (fail) CC="gcc" make testrun/array_multi_varsize ------------
# ------------ [229] CC="gcc" make testrun/array_varsize ------------
# ------------ [230] CC="gcc" make testrun/arrayinitsize ------------
# ------------ [231] CC="gcc" make testrun/asm1 ------------
# ------------ [232] CC="gcc" make testrun/assign ------------
# ------------ [233] CC="gcc" make testrun/attr-in-decllist ------------
# ------------ [234] CC="gcc" make testrun/attr4 ------------
# ------------ [235] CC="gcc" make testrun/attr5 ------------
# ------------ [236] CC="gcc" make testrun/bitfield2 ------------
# ------------ [237] CC="gcc" make testrun/bitfield3 ------------
# ------------ [238] CC="gcc" make testrun/blockattr2 USECFG=1 ------------
# ------------ [239] CC="gcc" make testrun/bool ------------
# ------------ [240] CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 ------------
# ------------ [241] CC="gcc" make testrun/builtin ------------
# ------------ [242] CC="gcc" make testrun/builtin3 ------------
# ------------ [243] CC="gcc" make testrun/builtin4 ------------
# ------------ [244] CC="gcc" make testrun/builtin_choose_expr ------------
# ------------ [245] CC="gcc" make testrun/call2 ------------
# ------------ [246] CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG ------------
# ------------ [247] CC="gcc" make testrun/caserange ------------
# ------------ [248] CC="gcc" make testrun/cast8 ------------
# ------------ [249] CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 ------------
# ------------ [250] CC="gcc" make testrun/comma1 ------------
# ------------ [251] CC="gcc" make testrun/comparisons ------------
# ------------ [252] (fail) CC="gcc" make testrun/compound1 ------------
# ------------ [253] CC="gcc" make testrun/compound2 ------------
# ------------ [254] CC="gcc" make testrun/cond1 ------------
# ------------ [255] CC="gcc" make testrun/cond2 ------------
# ------------ [256] CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 ------------
# ------------ [257] CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 ------------
# ------------ [258] CC="gcc" make testrun/const1 ------------
# ------------ [259] CC="gcc" make testrun/const10 ------------
# ------------ [260] CC="gcc" make testrun/const11 ------------
# ------------ [261] CC="gcc" make testrun/const12 ------------
# ------------ [262] CC="gcc" make testrun/const15 ------------
# ------------ [263] CC="gcc" make testrun/const16 ------------
# ------------ [264] CC="gcc" make testrun/const2 ------------
# ------------ [265] CC="gcc" make testrun/const3 ------------
# ------------ [266] CC="gcc" make testrun/const4 ------------
# ------------ [267] CC="gcc" make testrun/const5 ------------
# ------------ [268] CC="gcc" make testrun/const6 ------------
# ------------ [269] CC="gcc" make testrun/const8 ------------
# ------------ [270] (fail) CC="gcc" make testrun/constfold EXTRAARGS="--domakeCFG --dopartial" ------------
# ------------ [271] CC="gcc" make testrun/decl_mix_stmt ------------
# ------------ [272] CC="gcc" make testrun/enum2 ------------
# ------------ [273] CC="gcc" make testrun/escapes ------------
# ------------ [274] CC="gcc" make testrun/extern1 ------------
# ------------ [275] CC="gcc" make testrun/extinline2 ------------
# ------------ [276] CC="gcc" make testrun/fallthrough-label ------------
# ------------ [277] CC="gcc" make testrun/flexible-array-member ------------
# ------------ [278] CC="gcc" make testrun/float ------------
# ------------ [279] CC="gcc" make testrun/float2 ------------
# ------------ [280] CC="gcc" make testrun/for1 ------------
# ------------ [281] CC="gcc" make testrun/formalscope ------------
# ------------ [282] CC="gcc" make testrun/func2 ------------
# ------------ [283] CC="gcc" make testrun/func3 ------------
# ------------ [284] CC="gcc" make testrun/func4 ------------
# ------------ [285] CC="gcc" make testrun/funptr1 ------------
# ------------ [286] CC="gcc" make testrun/init ------------
# ------------ [287] CC="gcc" make testrun/init1 ------------
# ------------ [288] CC="gcc" make testrun/init10 ------------
# ------------ [289] CC="gcc" make testrun/init11 ------------
# ------------ [290] CC="gcc" make testrun/init12 ------------
# ------------ [291] CC="gcc" make testrun/init13 ------------
# ------------ [292] CC="gcc" make testrun/init14 ------------
# ------------ [293] CC="gcc" make testrun/init15 ------------
# ------------ [294] CC="gcc" make testrun/init16 ------------
# ------------ [295] CC="gcc" make testrun/init17 ------------
# ------------ [296] CC="gcc" make testrun/init18 ------------
# ------------ [297] CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 ------------
# ------------ [298] CC="gcc" make testrun/init2 ------------
# ------------ [299] CC="gcc" make testrun/init20 ------------
# ------------ [300] CC="gcc" make testrun/init21 ------------
# ------------ [301] CC="gcc" make testrun/init22 ------------
# ------------ [302] CC="gcc" make testrun/init3 ------------
# ------------ [303] CC="gcc" make testrun/init4 ------------
# ------------ [304] CC="gcc" make testrun/init5 ------------
# ------------ [305] CC="gcc" make testrun/init6 ------------
# ------------ [306] CC="gcc" make testrun/init9 ------------
# ------------ [307] CC="gcc" make testrun/initial ------------
# ------------ [308] (fail) CC="gcc" make testrun/inline1 ------------
# ------------ [309] CC="gcc" make testrun/inline2 ------------
# ------------ [310] CC="gcc" make testrun/label1 ------------
# ------------ [311] CC="gcc" make testrun/label2 ------------
# ------------ [312] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------
# ------------ [313] CC="gcc" make testrun/label3 ------------
# ------------ [314] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------
# ------------ [315] CC="gcc" make testrun/label4 ------------
# ------------ [316] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------
# ------------ [317] CC="gcc" make testrun/label6 ------------
# ------------ [318] CC="gcc" make testrun/land_expr ------------
# ------------ [319] CC="gcc" make testrun/large_unsigned_long ------------
# ------------ [320] CC="gcc" make testrun/linux_signal ------------
# ------------ [321] CC="gcc" make testrun/localinit ------------
# ------------ [322] CC="gcc" make testrun/logical ------------
# ------------ [323] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------
# ------------ [324] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------
# ------------ [325] CC="gcc" make testrun/longBlock ------------
# ------------ [326] CC="gcc" make testrun/lval1 ------------
# ------------ [327] CC="gcc" make testrun/macro_hidden ------------
# ------------ [328] CC="gcc" make testrun/math1 ------------
# ------------ [329] CC="gcc" make testrun/memcpy1 ------------
# ------------ [330] CC="gcc" make testrun/min ------------
# ------------ [331] CC="gcc" make testrun/msvc1 ------------
# ------------ [332] CC="gcc" make testrun/msvc5 ------------
# ------------ [333] CC="gcc" make testrun/nan-global ------------
# ------------ [334] CC="gcc" make testrun/offsetof ------------
# ------------ [335] CC="gcc" make testrun/offsetof1 ------------
# ------------ [336] CC="gcc" make testrun/offsetof2 ------------
# ------------ [337] CC="gcc" make testrun/offsetof3 ------------
# ------------ [338] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------
# ------------ [339] CC="gcc" make testrun/percent400 ------------
# ------------ [340] CC="gcc" make testrun/percentm ------------
# ------------ [341] CC="gcc" make testrun/perror ------------
# ------------ [342] CC="gcc" make testrun/perror1 ------------
# ------------ [343] (fail) CC="gcc" make testrun/post-assign ------------
# ------------ [344] CC="gcc" make testrun/printf2 ------------
# ------------ [345] CC="gcc" make testrun/question ------------
# ------------ [346] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------
# ------------ [347] CC="gcc" make testrun/question2 ------------
# ------------ [348] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------
# ------------ [349] CC="gcc" make testrun/return1 ------------
# ------------ [350] CC="gcc" make testrun/returnvoid ------------
# ------------ [351] CC="gcc" make testrun/returnvoid1 ------------
# ------------ [352] (fail) CC="gcc" make testrun/rmtmps-attr ------------
# ------------ [353] CC="gcc" make testrun/rmtmps1 ------------
# ------------ [354] CC="gcc" make testrun/rmtmps2 ------------
# ------------ [355] CC="gcc" make testrun/scope1 ------------
# ------------ [356] CC="gcc" make testrun/scope10 ------------
# ------------ [357] CC="gcc" make testrun/scope11 ------------
# ------------ [358] CC="gcc" make testrun/scope5 ------------
# ------------ [359] CC="gcc" make testrun/scope6 ------------
# ------------ [360] CC="gcc" make testrun/scope8 ------------
# ------------ [361] CC="gcc" make testrun/scope9 ------------
# ------------ [362] CC="gcc" make testrun/semicolon ------------
# ------------ [363] CC="gcc" make testrun/simon6 ------------
# ------------ [364] CC="gcc" make testrun/sizeof1 ------------
# ------------ [365] CC="gcc" make testrun/sizeof2 ------------
# ------------ [366] CC="gcc" make testrun/static ------------
# ------------ [367] CC="gcc" make testrun/static2 ------------
# ------------ [368] CC="gcc" make testrun/stringsize ------------
# ------------ [369] CC="gcc" make testrun/strloop ------------
# ------------ [370] CC="gcc" make testrun/strloop3 ------------
# ------------ [371] CC="gcc" make testrun/struct1 ------------
# ------------ [372] CC="gcc" make testrun/typeof1 ------------
# ------------ [373] (fail) CC="gcc" make testrun/typespec1 ------------
# ------------ [374] CC="gcc" make testrun/union2 ------------
# ------------ [375] CC="gcc" make testrun/union3 ------------
# ------------ [376] (fail) CC="gcc" make testrun/union6 ------------
# ------------ [377] CC="gcc" make testrun/va-arg-1 ------------
# ------------ [378] CC="gcc" make testrun/va-arg-2 ------------
# ------------ [379] CC="gcc" make testrun/va-arg-7 ------------
# ------------ [380] CC="gcc" make testrun/var_named_hidden ------------
# ------------ [381] CC="gcc" make testrun/vararg1 ------------
# ------------ [382] CC="gcc" make testrun/vararg2 ------------
# ------------ [383] CC="gcc" make testrun/vararg3 ------------
# ------------ [384] CC="gcc" make testrun/vararg4 ------------
# ------------ [385] CC="gcc" make testrun/vararg5 ------------
# ------------ [386] CC="gcc" make testrun/vararg6 ------------
# ------------ [387] CC="gcc" make testrun/varargauto1 ------------
# ------------ [388] CC="gcc" make testrun/void ------------
# ------------ [389] CC="gcc" make testrun/voidarg ------------
# ------------ [390] CC="gcc" make testrun/vsp ------------
# ------------ [391] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------
# ------------ [392] CC="gcc" make testrun/wchar1 ------------
# ------------ [393] CC="gcc" make testrun/wchar2 ------------
# ------------ [394] CC="gcc" make testrun/wchar3 ------------
# ------------ [395] CC="gcc" make testrun/wchar4 ------------
# ------------ [396] CC="gcc" make testrun/wchar5 ------------
# ------------ [397] CC="gcc" make testrun/wchar6 ------------
# ------------ [398] CC="gcc" make testrun/wchar7 ------------
# ------------ [399] (fail) CC="gcc" make testrun/wrongnumargs ------------
# ------------ [400] CC="gcc" make testrunc11/c11-align-of ------------
# ------------ [401] CC="gcc" make testrunc11/c11-atomic ------------
# ------------ [402] CC="gcc" make testrunc11/c11-atomic-store ------------
# ------------ [403] CC="gcc" make testrunc11/c11-caserange ------------
# ------------ [404] CC="gcc" make testrunc11/c11-extendedFloat ------------
# ------------ [405] CC="gcc" make testrunc11/c11-generic ------------
# ------------ [406] CC="gcc" make testrunc11/c11-noreturn ------------
# ------------ [407] CC="gcc" make testrunc11/c11-static-assert ------------
# ------------ [408] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------
# ------------ [409] CC="gcc" make testrunc99/c99-bool ------------
# ------------ [410] CC="gcc" make testrunc99/c99-complex ------------
# ------------ [411] CC="gcc" make testrunc99/c99-fixed-width-int ------------
# ------------ [412] CC="gcc" make testrunc99/c99-float-pragma ------------
# ------------ [413] CC="gcc" make testrunc99/c99-predefined ------------
# ------------ [414] CC="gcc" make testrunc99/c99-struct ------------
# ------------ [415] CC="gcc" make testrunc99/c99-tgmath ------------
# ------------ [416] CC="gcc" make testrunc99/c99-tgmath2 ------------
# ------------ [417] CC="gcc" make testrunc99/c99-universal-character-names ------------
# ------------ [418] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------
# ------------ [419] CC="gcc" make testrungcc/enum3 ------------
# ------------ [420] CC="gcc" make testrungcc/enum3a ------------
# ------------ [421] CC="gcc" make testrungcc/enum3b ------------
# ------------ [422] (fail) CC="gcc" make testrungcc/enum3c ------------
# ------------ [423] CC="gcc" make testrungcc/enum3d ------------
# ------------ [424] CC="gcc" make testrungcc/enum3e ------------
# ------------ [425] CC="gcc" make testrungcc/enum3f ------------
# ------------ [426] CC="gcc" make testrungcc/enum3g ------------
# ------------ [427] CC="gcc" make testrungcc/enum3h ------------
# ------------ [428] CC="gcc" make testrungcc/enum3i ------------
# ------------ [429] CC="gcc" make testrungcc/enum3j ------------
# ------------ [430] CC="gcc" make testrungcc/enum3k ------------
# ------------ [431] CC="gcc" make testrungcc/enum3l ------------
# 
# Successful tests:     387
# Failed as expected:   37
# Unexpected success:   4
# Unexpected failure:   4
# 
# [58] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC=gcc make scott/asmfndecl
# [70] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC=gcc make scott/globalprob
# [74] A regression test command failed:
#   CC=gcc make scott/kernel1
# [82] A regression test command failed:
#   CC=gcc make scott/neg64
# [87] GOOD NEWS: A test that used to fail (Notbug. Some gcc versions fail to compile this test on i386) now succeeds:
#   CC=gcc make scott/regparm0
# [96] A regression test command failed:
#   CC=gcc make scott/typeof
# [97] A regression test command failed:
#   CC=gcc make scott/uninit_tmp
# [187] GOOD NEWS: A test that used to fail (Bug. Constant-folding of very large arrays does not work on 32-bit machines.) now succeeds:
#   CC=gcc make test/sizeof3



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build goblint-cil 2.0.0
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
2026-04-13 14:42.28 ---> saved as "646320ca45d25ac3c35bd4b8f6b32603678bdce45097683caa534c0844c082e7"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [goblint-cil.2.0.0: extract]
-> retrieved goblint-cil.2.0.0  (cached)
[goblint-cil: patch] applying realGccConfigure.patch
Processing  2/4: [goblint-cil: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "goblint-cil" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.0)
- (cd _build/.sandbox/16c576f6232442e5e4377a100818c5b3/default && /home/opam/.opam/4.14/bin/ocamlyacc src/frontc/cparser.mly)
- 1 shift/reduce conflict, 1 reduce/reduce conflict.
- (cd _build/default/src && /home/opam/.opam/4.14/bin/cppo -V OCAML:4.14.3 machdep.cppo.ml -x machdep:./machdep-ml.exe -o machdep.ml)
- Generating machine dependency information for CIL
- File "test/dune", lines 1-4, characters 0-180:
- 1 | (rule
- 2 |  (alias runtest)
- 3 |  (deps (alias_rec ../cilly) (package goblint-cil) (source_tree .))
- 4 |  (action (setenv "CC" "\"%{read-lines:../bin/real-gcc}\"" (run ./testcil -r --regrtest))))
- (cd _build/default/test && ./testcil -r --regrtest)
- Test infrastructure for CIL on linux
- There are 432 tests enabled
- ------------ [0] CC="gcc" make arcombine ------------
- ------------ [1] CC="gcc" make baddef ------------
- ------------ [2] CC="gcc" make comb ------------
- ------------ [3] CC="gcc" make combine1 ------------
- ------------ [4] CC="gcc" make combine10 ------------
- ------------ [5] CC="gcc" make combine11 ------------
- ------------ [6] CC="gcc" make combine12 ------------
- ------------ [7] CC="gcc" make combine13 ------------
- ------------ [8] CC="gcc" make combine14 ------------
- ------------ [9] CC="gcc" make combine15 ------------
- ------------ [10] CC="gcc" make combine16 ------------
- ------------ [11] CC="gcc" make combine17 ------------
- ------------ [12] CC="gcc" make combine18 ------------
- ------------ [13] CC="gcc" make combine2 ------------
- ------------ [14] CC="gcc" make combine20 ------------
- ------------ [15] CC="gcc" make combine21 ------------
- ------------ [16] (fail) CC="gcc" make combine22 ------------
- ------------ [17] CC="gcc" make combine3 ------------
- ------------ [18] CC="gcc" make combine5 ------------
- ------------ [19] CC="gcc" make combine6 ------------
- ------------ [20] CC="gcc" make combine8 ------------
- ------------ [21] (fail) CC="gcc" make combine9 ------------
- ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------
- ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------
- ------------ [24] CC="gcc" make combine_init ------------
- ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------
- ------------ [26] (fail) CC="gcc" make combine_samefn ------------
- ------------ [27] CC="gcc" make combine_sbump ------------
- ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------
- ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------
- ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------
- ------------ [31] CC="gcc" make combinealias ------------
- ------------ [32] (fail) CC="gcc" make combinec99inline ------------
- ------------ [33] CC="gcc" make combineenum1 ------------
- ------------ [34] CC="gcc" make combineenum2 ------------
- ------------ [35] CC="gcc" make combineenum3 ------------
- ------------ [36] CC="gcc" make combinegnuinline ------------
- ------------ [37] (fail) CC="gcc" make combineinline1 ------------
- ------------ [38] CC="gcc" make combineinline2 ------------
- ------------ [39] (fail) CC="gcc" make combineinline3 ------------
- ------------ [40] (fail) CC="gcc" make combineinline4 ------------
- ------------ [41] CC="gcc" make combineinline6 ------------
- ------------ [42] CC="gcc" make combinelibrik ------------
- ------------ [43] CC="gcc" make combinestruct1 ------------
- ------------ [44] CC="gcc" make merge-ar ------------
- ------------ [45] CC="gcc" make mergeinit ------------
- ------------ [46] CC="gcc" make mergeinline ------------
- ------------ [47] CC="gcc" make mergestruct ------------
- ------------ [48] CC="gcc" make mixedcomb ------------
- ------------ [49] CC="gcc" make runall/alpha ------------
- ------------ [50] CC="gcc" make runall/extinline ------------
- ------------ [51] CC="gcc" make runall/runall_misc ------------
- ------------ [52] CC="gcc" make runall/structattr2 ------------
- ------------ [53] CC="gcc" make runall/switch ------------
- ------------ [54] CC="gcc" make scott-nogcc/bogus_redef ------------
- ------------ [55] CC="gcc" make scott-nogcc/funcname ------------
- ------------ [56] CC="gcc" make scott-nolink/brlock ------------
- ------------ [57] CC="gcc" make scott/arrayinit ------------
- ------------ [58] (fail) CC="gcc" make scott/asmfndecl ------------
- 
- [58] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
-   CC="gcc" make scott/asmfndecl
- ------------ [59] CC="gcc" make scott/bisonerror ------------
- ------------ [60] CC="gcc" make scott/cmpzero ------------
- ------------ [61] CC="gcc" make scott/constdecl ------------
- ------------ [62] CC="gcc" make scott/constfold ------------
- ------------ [63] CC="gcc" make scott/ctype ------------
- ------------ [64] CC="gcc" make scott/enumattr ------------
- ------------ [65] CC="gcc" make scott/enumerator_sizeof ------------
- ------------ [66] CC="gcc" make scott/enuminit ------------
- ------------ [67] CC="gcc" make scott/errorinfn ------------
- ------------ [68] CC="gcc" make scott/funcptr ------------
- ------------ [69] CC="gcc" make scott/gimpdouble ------------
- ------------ [70] (fail) CC="gcc" make scott/globalprob ------------
- 
- [70] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
-   CC="gcc" make scott/globalprob
- ------------ [71] CC="gcc" make scott/initedextern ------------
- ------------ [72] CC="gcc" make scott/invalredef ------------
- ------------ [73] CC="gcc" make scott/invalredef2 ------------
- ------------ [74] CC="gcc" make scott/kernel1 ------------
- 
- [74] A regression test command failed:
-   CC="gcc" make scott/kernel1
- ------------ [75] CC="gcc" make scott/kernel2 ------------
- ------------ [76] CC="gcc" make scott/lexnum ------------
- ------------ [77] CC="gcc" make scott/litstruct ------------
- ------------ [78] CC="gcc" make scott/main ------------
- ------------ [79] CC="gcc" make scott/memberofptr ------------
- ------------ [80] CC="gcc" make scott/mode_sizes ------------
- ------------ [81] CC="gcc" make scott/multiplestatics ------------
- ------------ [82] CC="gcc" make scott/neg64 ------------
- 
- [82] A regression test command failed:
-   CC="gcc" make scott/neg64
- ------------ [83] CC="gcc" make scott/oldstyle ------------
- ------------ [84] CC="gcc" make scott/open ------------
- ------------ [85] CC="gcc" make scott/partialbracket ------------
- ------------ [86] CC="gcc" make scott/putc ------------
- ------------ [87] (fail) CC="gcc" make scott/regparm0 ------------
- 
- [87] GOOD NEWS: A test that used to fail (Notbug. Some gcc versions fail to compile this test on i386) now succeeds:
-   CC="gcc" make scott/regparm0
- ------------ [88] CC="gcc" make scott/s59 ------------
- ------------ [89] CC="gcc" make scott/sizeofchar ------------
- ------------ [90] CC="gcc" make scott/sockaddr ------------
- ------------ [91] CC="gcc" make scott/struct_cs ------------
- ------------ [92] CC="gcc" make scott/structattr ------------
- ------------ [93] CC="gcc" make scott/structattr3 ------------
- ------------ [94] CC="gcc" make scott/thing ------------
- ------------ [95] CC="gcc" make scott/transpunion ------------
- ------------ [96] CC="gcc" make scott/typeof ------------
- 
- [96] A regression test command failed:
-   CC="gcc" make scott/typeof
- ------------ [97] CC="gcc" make scott/uninit_tmp ------------
- 
- [97] A regression test command failed:
-   CC="gcc" make scott/uninit_tmp
- ------------ [98] CC="gcc" make scott/unionassign ------------
- ------------ [99] CC="gcc" make scott/unscomp ------------
- ------------ [100] CC="gcc" make scott/volatilestruct ------------
- ------------ [101] CC="gcc" make scott/xcheckers ------------
- ------------ [102] CC="gcc" make test-bad/enuminit2 ------------
- ------------ [103] CC="gcc" make test-bad/trivial-tb ------------
- ------------ [104] CC="gcc" make test-bad1/flexible-array-member-bad ------------
- ------------ [105] CC="gcc" make test-bad1/wchar-bad ------------
- ------------ [106] CC="gcc" make test/align3 ------------
- ------------ [107] CC="gcc" make test/apachebits ------------
- ------------ [108] (fail) CC="gcc" make test/argcast ------------
- ------------ [109] CC="gcc" make test/array-size-trick ------------
- ------------ [110] CC="gcc" make test/array1 ------------
- ------------ [111] CC="gcc" make test/array2 ------------
- ------------ [112] CC="gcc" make test/arrsize ------------
- ------------ [113] CC="gcc" make test/asm2 ------------
- ------------ [114] CC="gcc" make test/asm3 ------------
- ------------ [115] CC="gcc" make test/asm4 ------------
- ------------ [116] CC="gcc" make test/asm_emptyclobberallowed ------------
- ------------ [117] CC="gcc" make test/attr10 ------------
- ------------ [118] CC="gcc" make test/attr11 ------------
- ------------ [119] CC="gcc" make test/attr12 ------------
- ------------ [120] CC="gcc" make test/attr13 ------------
- ------------ [121] CC="gcc" make test/attr2 ------------
- ------------ [122] CC="gcc" make test/attr3 ------------
- ------------ [123] CC="gcc" make test/attr6 ------------
- ------------ [124] CC="gcc" make test/attr7 ------------
- ------------ [125] CC="gcc" make test/attr8 ------------
- ------------ [126] CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 ------------
- ------------ [127] CC="gcc" make test/bitfield ------------
- ------------ [128] (fail) CC="gcc" make test/break1 ------------
- ------------ [129] CC="gcc" make test/builtin2 ------------
- ------------ [130] CC="gcc" make test/builtin5 ------------
- ------------ [131] CC="gcc" make test/cast1 ------------
- ------------ [132] CC="gcc" make test/cast2 ------------
- ------------ [133] CC="gcc" make test/cast4 ------------
- ------------ [134] CC="gcc" make test/castcall ------------
- ------------ [135] CC="gcc" make test/castunion ------------
- ------------ [136] CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 ------------
- ------------ [137] (fail) CC="gcc" make test/const13 WARNINGS_ARE_ERRORS=1 ------------
- ------------ [138] CC="gcc" make test/const14 ------------
- ------------ [139] CC="gcc" make test/const7 ------------
- ------------ [140] CC="gcc" make test/const9 ------------
- ------------ [141] CC="gcc" make test/constprop ------------
- ------------ [142] CC="gcc" make test/constrexpr ------------
- ------------ [143] (fail) CC="gcc" make test/cpp-2 ------------
- ------------ [144] CC="gcc" make test/cpp-3 ------------
- ------------ [145] (fail) CC="gcc" make test/decl2 ------------
- ------------ [146] CC="gcc" make test/deref ------------
- ------------ [147] CC="gcc" make test/duplicate ------------
- ------------ [148] CC="gcc" make test/enum ------------
- ------------ [149] CC="gcc" make test/extinline3 ------------
- ------------ [150] CC="gcc" make test/func ------------
- ------------ [151] (fail) CC="gcc" make test/func10 ------------
- ------------ [152] (fail) CC="gcc" make test/funcarg ------------
- ------------ [153] CC="gcc" make test/globals ------------
- ------------ [154] (fail) CC="gcc" make test/globals2 ------------
- ------------ [155] CC="gcc" make test/huff1 ------------
- ------------ [156] CC="gcc" make test/init ------------
- ------------ [157] CC="gcc" make test/init8 ------------
- ------------ [158] CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 ------------
- ------------ [159] CC="gcc" make test/inline3 ------------
- ------------ [160] CC="gcc" make test/jmp_buf ------------
- ------------ [161] CC="gcc" make test/label5 ------------
- ------------ [162] CC="gcc" make test/label7 ------------
- ------------ [163] CC="gcc" make test/label8 ------------
- ------------ [164] CC="gcc" make test/label9 EXTRAARGS=--domakeCFG ------------
- ------------ [165] CC="gcc" make test/li ------------
- ------------ [166] CC="gcc" make test/linux_atomic ------------
- ------------ [167] CC="gcc" make test/linuxcombine1_1 ------------
- ------------ [168] CC="gcc" make test/list ------------
- ------------ [169] CC="gcc" make test/matrix ------------
- ------------ [170] CC="gcc" make test/noreturn ------------
- ------------ [171] CC="gcc" make test/outofmem ------------
- ------------ [172] CC="gcc" make test/packed2 ------------
- ------------ [173] CC="gcc" make test/power1 ------------
- ------------ [174] CC="gcc" make test/printf ------------
- ------------ [175] CC="gcc" make test/printf_const ------------
- ------------ [176] (fail) CC="gcc" make test/proto1 ------------
- ------------ [177] (fail) CC="gcc" make test/proto2 ------------
- ------------ [178] CC="gcc" make test/pure ------------
- ------------ [179] CC="gcc" make test/restrict EXTRAARGS=-std=c9x ------------
- ------------ [180] CC="gcc" make test/restrict1 ------------
- ------------ [181] CC="gcc" make test/retval ------------
- ------------ [182] CC="gcc" make test/scope12 ------------
- ------------ [183] CC="gcc" make test/scope2 ------------
- ------------ [184] (fail) CC="gcc" make test/scope3 ------------
- ------------ [185] CC="gcc" make test/scope4 ------------
- ------------ [186] CC="gcc" make test/shell-escape SHELL_ESCAPE=1 ------------
- ------------ [187] (fail) CC="gcc" make test/sizeof3 ------------
- 
- [187] GOOD NEWS: A test that used to fail (Bug. Constant-folding of very large arrays does not work on 32-bit machines.) now succeeds:
-   CC="gcc" make test/sizeof3
- ------------ [188] CC="gcc" make test/static ------------
- ------------ [189] CC="gcc" make test/static1 ------------
- ------------ [190] CC="gcc" make test/strcpy ------------
- ------------ [191] CC="gcc" make test/struct_init ------------
- ------------ [192] CC="gcc" make test/structassign ------------
- ------------ [193] (fail) CC="gcc" make test/switch_default_parse_bug ------------
- ------------ [194] CC="gcc" make test/sync-1 ------------
- ------------ [195] CC="gcc" make test/sync-2 ------------
- ------------ [196] CC="gcc" make test/sync-3 ------------
- ------------ [197] CC="gcc" make test/tags ------------
- ------------ [198] CC="gcc" make test/task ------------
- ------------ [199] CC="gcc" make test/unimplemented ------------
- ------------ [200] CC="gcc" make test/union5 ------------
- ------------ [201] CC="gcc" make test/va_arg_pack ------------
- ------------ [202] CC="gcc" make test/vararg7 ------------
- ------------ [203] CC="gcc" make test/voidstar ------------
- ------------ [204] CC="gcc" make test/voidtypedef ------------
- ------------ [205] CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 ------------
- ------------ [206] CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 ------------
- ------------ [207] CC="gcc" make test_i/empty ------------
- ------------ [208] CC="gcc" make test_i/lineno ------------
- ------------ [209] CC="gcc" make testc11/alignas ------------
- ------------ [210] (fail) CC="gcc" make testc11/clang-c11-generic-1-1 ------------
- ------------ [211] (fail) CC="gcc" make testc11/clang-c11-generic-1-2 ------------
- ------------ [212] CC="gcc" make testc11/clang-c11-generic-2 ------------
- ------------ [213] (fail) CC="gcc" make testc11/gcc-c11-generic-2-1 ------------
- ------------ [214] (fail) CC="gcc" make testc11/gcc-c11-generic-2-7 ------------
- ------------ [215] CC="gcc" make testc11/gcc-c11-generic-3-1 ------------
- ------------ [216] (fail) CC="gcc" make testc11/gcc-c11-generic-3-2 ------------
- ------------ [217] (fail) CC="gcc" make testc11/gcc-c11-generic-3-3 ------------
- ------------ [218] (fail) CC="gcc" make testc11/gcc-c11-generic-3-4 ------------
- ------------ [219] CC="gcc" make testobj/asm5 ------------
- ------------ [220] CC="gcc" make testrun/addr-array ------------
- ------------ [221] CC="gcc" make testrun/addr-string ------------
- ------------ [222] CC="gcc" make testrun/addrof3 ------------
- ------------ [223] CC="gcc" make testrun/align1 ------------
- ------------ [224] CC="gcc" make testrun/align2 EXTRAARGS=-O2 ------------
- ------------ [225] CC="gcc" make testrun/apachebuf ------------
- ------------ [226] CC="gcc" make testrun/apachefptr ------------
- ------------ [227] CC="gcc" make testrun/array_formal ------------
- ------------ [228] (fail) CC="gcc" make testrun/array_multi_varsize ------------
- ------------ [229] CC="gcc" make testrun/array_varsize ------------
- ------------ [230] CC="gcc" make testrun/arrayinitsize ------------
- ------------ [231] CC="gcc" make testrun/asm1 ------------
- ------------ [232] CC="gcc" make testrun/assign ------------
- ------------ [233] CC="gcc" make testrun/attr-in-decllist ------------
- ------------ [234] CC="gcc" make testrun/attr4 ------------
- ------------ [235] CC="gcc" make testrun/attr5 ------------
- ------------ [236] CC="gcc" make testrun/bitfield2 ------------
- ------------ [237] CC="gcc" make testrun/bitfield3 ------------
- ------------ [238] CC="gcc" make testrun/blockattr2 USECFG=1 ------------
- ------------ [239] CC="gcc" make testrun/bool ------------
- ------------ [240] CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 ------------
- ------------ [241] CC="gcc" make testrun/builtin ------------
- ------------ [242] CC="gcc" make testrun/builtin3 ------------
- ------------ [243] CC="gcc" make testrun/builtin4 ------------
- ------------ [244] CC="gcc" make testrun/builtin_choose_expr ------------
- ------------ [245] CC="gcc" make testrun/call2 ------------
- ------------ [246] CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG ------------
- ------------ [247] CC="gcc" make testrun/caserange ------------
- ------------ [248] CC="gcc" make testrun/cast8 ------------
- ------------ [249] CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 ------------
- ------------ [250] CC="gcc" make testrun/comma1 ------------
- ------------ [251] CC="gcc" make testrun/comparisons ------------
- ------------ [252] (fail) CC="gcc" make testrun/compound1 ------------
- ------------ [253] CC="gcc" make testrun/compound2 ------------
- ------------ [254] CC="gcc" make testrun/cond1 ------------
- ------------ [255] CC="gcc" make testrun/cond2 ------------
- ------------ [256] CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 ------------
- ------------ [257] CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 ------------
- ------------ [258] CC="gcc" make testrun/const1 ------------
- ------------ [259] CC="gcc" make testrun/const10 ------------
- ------------ [260] CC="gcc" make testrun/const11 ------------
- ------------ [261] CC="gcc" make testrun/const12 ------------
- ------------ [262] CC="gcc" make testrun/const15 ------------
- ------------ [263] CC="gcc" make testrun/const16 ------------
- ------------ [264] CC="gcc" make testrun/const2 ------------
- ------------ [265] CC="gcc" make testrun/const3 ------------
- ------------ [266] CC="gcc" make testrun/const4 ------------
- ------------ [267] CC="gcc" make testrun/const5 ------------
- ------------ [268] CC="gcc" make testrun/const6 ------------
- ------------ [269] CC="gcc" make testrun/const8 ------------
- ------------ [270] (fail) CC="gcc" make testrun/constfold EXTRAARGS="--domakeCFG --dopartial" ------------
- ------------ [271] CC="gcc" make testrun/decl_mix_stmt ------------
- ------------ [272] CC="gcc" make testrun/enum2 ------------
- ------------ [273] CC="gcc" make testrun/escapes ------------
- ------------ [274] CC="gcc" make testrun/extern1 ------------
- ------------ [275] CC="gcc" make testrun/extinline2 ------------
- ------------ [276] CC="gcc" make testrun/fallthrough-label ------------
- ------------ [277] CC="gcc" make testrun/flexible-array-member ------------
- ------------ [278] CC="gcc" make testrun/float ------------
- ------------ [279] CC="gcc" make testrun/float2 ------------
- ------------ [280] CC="gcc" make testrun/for1 ------------
- ------------ [281] CC="gcc" make testrun/formalscope ------------
- ------------ [282] CC="gcc" make testrun/func2 ------------
- ------------ [283] CC="gcc" make testrun/func3 ------------
- ------------ [284] CC="gcc" make testrun/func4 ------------
- ------------ [285] CC="gcc" make testrun/funptr1 ------------
- ------------ [286] CC="gcc" make testrun/init ------------
- ------------ [287] CC="gcc" make testrun/init1 ------------
- ------------ [288] CC="gcc" make testrun/init10 ------------
- ------------ [289] CC="gcc" make testrun/init11 ------------
- ------------ [290] CC="gcc" make testrun/init12 ------------
- ------------ [291] CC="gcc" make testrun/init13 ------------
- ------------ [292] CC="gcc" make testrun/init14 ------------
- ------------ [293] CC="gcc" make testrun/init15 ------------
- ------------ [294] CC="gcc" make testrun/init16 ------------
- ------------ [295] CC="gcc" make testrun/init17 ------------
- ------------ [296] CC="gcc" make testrun/init18 ------------
- ------------ [297] CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 ------------
- ------------ [298] CC="gcc" make testrun/init2 ------------
- ------------ [299] CC="gcc" make testrun/init20 ------------
- ------------ [300] CC="gcc" make testrun/init21 ------------
- ------------ [301] CC="gcc" make testrun/init22 ------------
- ------------ [302] CC="gcc" make testrun/init3 ------------
- ------------ [303] CC="gcc" make testrun/init4 ------------
- ------------ [304] CC="gcc" make testrun/init5 ------------
- ------------ [305] CC="gcc" make testrun/init6 ------------
- ------------ [306] CC="gcc" make testrun/init9 ------------
- ------------ [307] CC="gcc" make testrun/initial ------------
- ------------ [308] (fail) CC="gcc" make testrun/inline1 ------------
- ------------ [309] CC="gcc" make testrun/inline2 ------------
- ------------ [310] CC="gcc" make testrun/label1 ------------
- ------------ [311] CC="gcc" make testrun/label2 ------------
- ------------ [312] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------
- ------------ [313] CC="gcc" make testrun/label3 ------------
- ------------ [314] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------
- ------------ [315] CC="gcc" make testrun/label4 ------------
- ------------ [316] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------
- ------------ [317] CC="gcc" make testrun/label6 ------------
- ------------ [318] CC="gcc" make testrun/land_expr ------------
- ------------ [319] CC="gcc" make testrun/large_unsigned_long ------------
- ------------ [320] CC="gcc" make testrun/linux_signal ------------
- ------------ [321] CC="gcc" make testrun/localinit ------------
- ------------ [322] CC="gcc" make testrun/logical ------------
- ------------ [323] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------
- ------------ [324] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------
- ------------ [325] CC="gcc" make testrun/longBlock ------------
- ------------ [326] CC="gcc" make testrun/lval1 ------------
- ------------ [327] CC="gcc" make testrun/macro_hidden ------------
- ------------ [328] CC="gcc" make testrun/math1 ------------
- ------------ [329] CC="gcc" make testrun/memcpy1 ------------
- ------------ [330] CC="gcc" make testrun/min ------------
- ------------ [331] CC="gcc" make testrun/msvc1 ------------
- ------------ [332] CC="gcc" make testrun/msvc5 ------------
- ------------ [333] CC="gcc" make testrun/nan-global ------------
- ------------ [334] CC="gcc" make testrun/offsetof ------------
- ------------ [335] CC="gcc" make testrun/offsetof1 ------------
- ------------ [336] CC="gcc" make testrun/offsetof2 ------------
- ------------ [337] CC="gcc" make testrun/offsetof3 ------------
- ------------ [338] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------
- ------------ [339] CC="gcc" make testrun/percent400 ------------
- ------------ [340] CC="gcc" make testrun/percentm ------------
- ------------ [341] CC="gcc" make testrun/perror ------------
- ------------ [342] CC="gcc" make testrun/perror1 ------------
- ------------ [343] (fail) CC="gcc" make testrun/post-assign ------------
- ------------ [344] CC="gcc" make testrun/printf2 ------------
- ------------ [345] CC="gcc" make testrun/question ------------
- ------------ [346] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------
- ------------ [347] CC="gcc" make testrun/question2 ------------
- ------------ [348] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------
- ------------ [349] CC="gcc" make testrun/return1 ------------
- ------------ [350] CC="gcc" make testrun/returnvoid ------------
- ------------ [351] CC="gcc" make testrun/returnvoid1 ------------
- ------------ [352] (fail) CC="gcc" make testrun/rmtmps-attr ------------
- ------------ [353] CC="gcc" make testrun/rmtmps1 ------------
- ------------ [354] CC="gcc" make testrun/rmtmps2 ------------
- ------------ [355] CC="gcc" make testrun/scope1 ------------
- ------------ [356] CC="gcc" make testrun/scope10 ------------
- ------------ [357] CC="gcc" make testrun/scope11 ------------
- ------------ [358] CC="gcc" make testrun/scope5 ------------
- ------------ [359] CC="gcc" make testrun/scope6 ------------
- ------------ [360] CC="gcc" make testrun/scope8 ------------
- ------------ [361] CC="gcc" make testrun/scope9 ------------
- ------------ [362] CC="gcc" make testrun/semicolon ------------
- ------------ [363] CC="gcc" make testrun/simon6 ------------
- ------------ [364] CC="gcc" make testrun/sizeof1 ------------
- ------------ [365] CC="gcc" make testrun/sizeof2 ------------
- ------------ [366] CC="gcc" make testrun/static ------------
- ------------ [367] CC="gcc" make testrun/static2 ------------
- ------------ [368] CC="gcc" make testrun/stringsize ------------
- ------------ [369] CC="gcc" make testrun/strloop ------------
- ------------ [370] CC="gcc" make testrun/strloop3 ------------
- ------------ [371] CC="gcc" make testrun/struct1 ------------
- ------------ [372] CC="gcc" make testrun/typeof1 ------------
- ------------ [373] (fail) CC="gcc" make testrun/typespec1 ------------
- ------------ [374] CC="gcc" make testrun/union2 ------------
- ------------ [375] CC="gcc" make testrun/union3 ------------
- ------------ [376] (fail) CC="gcc" make testrun/union6 ------------
- ------------ [377] CC="gcc" make testrun/va-arg-1 ------------
- ------------ [378] CC="gcc" make testrun/va-arg-2 ------------
- ------------ [379] CC="gcc" make testrun/va-arg-7 ------------
- ------------ [380] CC="gcc" make testrun/var_named_hidden ------------
- ------------ [381] CC="gcc" make testrun/vararg1 ------------
- ------------ [382] CC="gcc" make testrun/vararg2 ------------
- ------------ [383] CC="gcc" make testrun/vararg3 ------------
- ------------ [384] CC="gcc" make testrun/vararg4 ------------
- ------------ [385] CC="gcc" make testrun/vararg5 ------------
- ------------ [386] CC="gcc" make testrun/vararg6 ------------
- ------------ [387] CC="gcc" make testrun/varargauto1 ------------
- ------------ [388] CC="gcc" make testrun/void ------------
- ------------ [389] CC="gcc" make testrun/voidarg ------------
- ------------ [390] CC="gcc" make testrun/vsp ------------
- ------------ [391] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------
- ------------ [392] CC="gcc" make testrun/wchar1 ------------
- ------------ [393] CC="gcc" make testrun/wchar2 ------------
- ------------ [394] CC="gcc" make testrun/wchar3 ------------
- ------------ [395] CC="gcc" make testrun/wchar4 ------------
- ------------ [396] CC="gcc" make testrun/wchar5 ------------
- ------------ [397] CC="gcc" make testrun/wchar6 ------------
- ------------ [398] CC="gcc" make testrun/wchar7 ------------
- ------------ [399] (fail) CC="gcc" make testrun/wrongnumargs ------------
- ------------ [400] CC="gcc" make testrunc11/c11-align-of ------------
- ------------ [401] CC="gcc" make testrunc11/c11-atomic ------------
- ------------ [402] CC="gcc" make testrunc11/c11-atomic-store ------------
- ------------ [403] CC="gcc" make testrunc11/c11-caserange ------------
- ------------ [404] CC="gcc" make testrunc11/c11-extendedFloat ------------
- ------------ [405] CC="gcc" make testrunc11/c11-generic ------------
- ------------ [406] CC="gcc" make testrunc11/c11-noreturn ------------
- ------------ [407] CC="gcc" make testrunc11/c11-static-assert ------------
- ------------ [408] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------
- ------------ [409] CC="gcc" make testrunc99/c99-bool ------------
- ------------ [410] CC="gcc" make testrunc99/c99-complex ------------
- ------------ [411] CC="gcc" make testrunc99/c99-fixed-width-int ------------
- ------------ [412] CC="gcc" make testrunc99/c99-float-pragma ------------
- ------------ [413] CC="gcc" make testrunc99/c99-predefined ------------
- ------------ [414] CC="gcc" make testrunc99/c99-struct ------------
- ------------ [415] CC="gcc" make testrunc99/c99-tgmath ------------
- ------------ [416] CC="gcc" make testrunc99/c99-tgmath2 ------------
- ------------ [417] CC="gcc" make testrunc99/c99-universal-character-names ------------
- ------------ [418] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------
- ------------ [419] CC="gcc" make testrungcc/enum3 ------------
- ------------ [420] CC="gcc" make testrungcc/enum3a ------------
- ------------ [421] CC="gcc" make testrungcc/enum3b ------------
- ------------ [422] (fail) CC="gcc" make testrungcc/enum3c ------------
- ------------ [423] CC="gcc" make testrungcc/enum3d ------------
- ------------ [424] CC="gcc" make testrungcc/enum3e ------------
- ------------ [425] CC="gcc" make testrungcc/enum3f ------------
- ------------ [426] CC="gcc" make testrungcc/enum3g ------------
- ------------ [427] CC="gcc" make testrungcc/enum3h ------------
- ------------ [428] CC="gcc" make testrungcc/enum3i ------------
- ------------ [429] CC="gcc" make testrungcc/enum3j ------------
- ------------ [430] CC="gcc" make testrungcc/enum3k ------------
- ------------ [431] CC="gcc" make testrungcc/enum3l ------------
- 
- Successful tests:     387
- Failed as expected:   37
- Unexpected success:   4
- Unexpected failure:   4
- 
- [58] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
-   CC=gcc make scott/asmfndecl
- [70] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
-   CC=gcc make scott/globalprob
- [74] A regression test command failed:
-   CC=gcc make scott/kernel1
- [82] A regression test command failed:
-   CC=gcc make scott/neg64
- [87] GOOD NEWS: A test that used to fail (Notbug. Some gcc versions fail to compile this test on i386) now succeeds:
-   CC=gcc make scott/regparm0
- [96] A regression test command failed:
-   CC=gcc make scott/typeof
- [97] A regression test command failed:
-   CC=gcc make scott/uninit_tmp
- [187] GOOD NEWS: A test that used to fail (Bug. Constant-folding of very large arrays does not work on 32-bit machines.) now succeeds:
-   CC=gcc make test/sizeof3
[ERROR] The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".

#=== ERROR while compiling goblint-cil.2.0.0 ==================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.3 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/goblint-cil.2.0.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p goblint-cil -j 71 @install @runtest
# exit-code            1
# env-file             ~/.opam/log/goblint-cil-7-7b1ee1.env
# output-file          ~/.opam/log/goblint-cil-7-7b1ee1.out
### output ###
# (cd _build/.sandbox/16c576f6232442e5e4377a100818c5b3/default && /home/opam/.opam/4.14/bin/ocamlyacc src/frontc/cparser.mly)
# 1 shift/reduce conflict, 1 reduce/reduce conflict.
# (cd _build/default/src && /home/opam/.opam/4.14/bin/cppo -V OCAML:4.14.3 machdep.cppo.ml -x machdep:./machdep-ml.exe -o machdep.ml)
# Generating machine dependency information for CIL
# File "test/dune", lines 1-4, characters 0-180:
# 1 | (rule
# 2 |  (alias runtest)
# 3 |  (deps (alias_rec ../cilly) (package goblint-cil) (source_tree .))
# 4 |  (action (setenv "CC" "\"%{read-lines:../bin/real-gcc}\"" (run ./testcil -r --regrtest))))
# (cd _build/default/test && ./testcil -r --regrtest)
# Test infrastructure for CIL on linux
# There are 432 tests enabled
# ------------ [0] CC="gcc" make arcombine ------------
# ------------ [1] CC="gcc" make baddef ------------
# ------------ [2] CC="gcc" make comb ------------
# ------------ [3] CC="gcc" make combine1 ------------
# ------------ [4] CC="gcc" make combine10 ------------
# ------------ [5] CC="gcc" make combine11 ------------
# ------------ [6] CC="gcc" make combine12 ------------
# ------------ [7] CC="gcc" make combine13 ------------
# ------------ [8] CC="gcc" make combine14 ------------
# ------------ [9] CC="gcc" make combine15 ------------
# ------------ [10] CC="gcc" make combine16 ------------
# ------------ [11] CC="gcc" make combine17 ------------
# ------------ [12] CC="gcc" make combine18 ------------
# ------------ [13] CC="gcc" make combine2 ------------
# ------------ [14] CC="gcc" make combine20 ------------
# ------------ [15] CC="gcc" make combine21 ------------
# ------------ [16] (fail) CC="gcc" make combine22 ------------
# ------------ [17] CC="gcc" make combine3 ------------
# ------------ [18] CC="gcc" make combine5 ------------
# ------------ [19] CC="gcc" make combine6 ------------
# ------------ [20] CC="gcc" make combine8 ------------
# ------------ [21] (fail) CC="gcc" make combine9 ------------
# ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------
# ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------
# ------------ [24] CC="gcc" make combine_init ------------
# ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------
# ------------ [26] (fail) CC="gcc" make combine_samefn ------------
# ------------ [27] CC="gcc" make combine_sbump ------------
# ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------
# ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------
# ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------
# ------------ [31] CC="gcc" make combinealias ------------
# ------------ [32] (fail) CC="gcc" make combinec99inline ------------
# ------------ [33] CC="gcc" make combineenum1 ------------
# ------------ [34] CC="gcc" make combineenum2 ------------
# ------------ [35] CC="gcc" make combineenum3 ------------
# ------------ [36] CC="gcc" make combinegnuinline ------------
# ------------ [37] (fail) CC="gcc" make combineinline1 ------------
# ------------ [38] CC="gcc" make combineinline2 ------------
# ------------ [39] (fail) CC="gcc" make combineinline3 ------------
# ------------ [40] (fail) CC="gcc" make combineinline4 ------------
# ------------ [41] CC="gcc" make combineinline6 ------------
# ------------ [42] CC="gcc" make combinelibrik ------------
# ------------ [43] CC="gcc" make combinestruct1 ------------
# ------------ [44] CC="gcc" make merge-ar ------------
# ------------ [45] CC="gcc" make mergeinit ------------
# ------------ [46] CC="gcc" make mergeinline ------------
# ------------ [47] CC="gcc" make mergestruct ------------
# ------------ [48] CC="gcc" make mixedcomb ------------
# ------------ [49] CC="gcc" make runall/alpha ------------
# ------------ [50] CC="gcc" make runall/extinline ------------
# ------------ [51] CC="gcc" make runall/runall_misc ------------
# ------------ [52] CC="gcc" make runall/structattr2 ------------
# ------------ [53] CC="gcc" make runall/switch ------------
# ------------ [54] CC="gcc" make scott-nogcc/bogus_redef ------------
# ------------ [55] CC="gcc" make scott-nogcc/funcname ------------
# ------------ [56] CC="gcc" make scott-nolink/brlock ------------
# ------------ [57] CC="gcc" make scott/arrayinit ------------
# ------------ [58] (fail) CC="gcc" make scott/asmfndecl ------------
# 
# [58] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC="gcc" make scott/asmfndecl
# ------------ [59] CC="gcc" make scott/bisonerror ------------
# ------------ [60] CC="gcc" make scott/cmpzero ------------
# ------------ [61] CC="gcc" make scott/constdecl ------------
# ------------ [62] CC="gcc" make scott/constfold ------------
# ------------ [63] CC="gcc" make scott/ctype ------------
# ------------ [64] CC="gcc" make scott/enumattr ------------
# ------------ [65] CC="gcc" make scott/enumerator_sizeof ------------
# ------------ [66] CC="gcc" make scott/enuminit ------------
# ------------ [67] CC="gcc" make scott/errorinfn ------------
# ------------ [68] CC="gcc" make scott/funcptr ------------
# ------------ [69] CC="gcc" make scott/gimpdouble ------------
# ------------ [70] (fail) CC="gcc" make scott/globalprob ------------
# 
# [70] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC="gcc" make scott/globalprob
# ------------ [71] CC="gcc" make scott/initedextern ------------
# ------------ [72] CC="gcc" make scott/invalredef ------------
# ------------ [73] CC="gcc" make scott/invalredef2 ------------
# ------------ [74] CC="gcc" make scott/kernel1 ------------
# 
# [74] A regression test command failed:
#   CC="gcc" make scott/kernel1
# ------------ [75] CC="gcc" make scott/kernel2 ------------
# ------------ [76] CC="gcc" make scott/lexnum ------------
# ------------ [77] CC="gcc" make scott/litstruct ------------
# ------------ [78] CC="gcc" make scott/main ------------
# ------------ [79] CC="gcc" make scott/memberofptr ------------
# ------------ [80] CC="gcc" make scott/mode_sizes ------------
# ------------ [81] CC="gcc" make scott/multiplestatics ------------
# ------------ [82] CC="gcc" make scott/neg64 ------------
# 
# [82] A regression test command failed:
#   CC="gcc" make scott/neg64
# ------------ [83] CC="gcc" make scott/oldstyle ------------
# ------------ [84] CC="gcc" make scott/open ------------
# ------------ [85] CC="gcc" make scott/partialbracket ------------
# ------------ [86] CC="gcc" make scott/putc ------------
# ------------ [87] (fail) CC="gcc" make scott/regparm0 ------------
# 
# [87] GOOD NEWS: A test that used to fail (Notbug. Some gcc versions fail to compile this test on i386) now succeeds:
#   CC="gcc" make scott/regparm0
# ------------ [88] CC="gcc" make scott/s59 ------------
# ------------ [89] CC="gcc" make scott/sizeofchar ------------
# ------------ [90] CC="gcc" make scott/sockaddr ------------
# ------------ [91] CC="gcc" make scott/struct_cs ------------
# ------------ [92] CC="gcc" make scott/structattr ------------
# ------------ [93] CC="gcc" make scott/structattr3 ------------
# ------------ [94] CC="gcc" make scott/thing ------------
# ------------ [95] CC="gcc" make scott/transpunion ------------
# ------------ [96] CC="gcc" make scott/typeof ------------
# 
# [96] A regression test command failed:
#   CC="gcc" make scott/typeof
# ------------ [97] CC="gcc" make scott/uninit_tmp ------------
# 
# [97] A regression test command failed:
#   CC="gcc" make scott/uninit_tmp
# ------------ [98] CC="gcc" make scott/unionassign ------------
# ------------ [99] CC="gcc" make scott/unscomp ------------
# ------------ [100] CC="gcc" make scott/volatilestruct ------------
# ------------ [101] CC="gcc" make scott/xcheckers ------------
# ------------ [102] CC="gcc" make test-bad/enuminit2 ------------
# ------------ [103] CC="gcc" make test-bad/trivial-tb ------------
# ------------ [104] CC="gcc" make test-bad1/flexible-array-member-bad ------------
# ------------ [105] CC="gcc" make test-bad1/wchar-bad ------------
# ------------ [106] CC="gcc" make test/align3 ------------
# ------------ [107] CC="gcc" make test/apachebits ------------
# ------------ [108] (fail) CC="gcc" make test/argcast ------------
# ------------ [109] CC="gcc" make test/array-size-trick ------------
# ------------ [110] CC="gcc" make test/array1 ------------
# ------------ [111] CC="gcc" make test/array2 ------------
# ------------ [112] CC="gcc" make test/arrsize ------------
# ------------ [113] CC="gcc" make test/asm2 ------------
# ------------ [114] CC="gcc" make test/asm3 ------------
# ------------ [115] CC="gcc" make test/asm4 ------------
# ------------ [116] CC="gcc" make test/asm_emptyclobberallowed ------------
# ------------ [117] CC="gcc" make test/attr10 ------------
# ------------ [118] CC="gcc" make test/attr11 ------------
# ------------ [119] CC="gcc" make test/attr12 ------------
# ------------ [120] CC="gcc" make test/attr13 ------------
# ------------ [121] CC="gcc" make test/attr2 ------------
# ------------ [122] CC="gcc" make test/attr3 ------------
# ------------ [123] CC="gcc" make test/attr6 ------------
# ------------ [124] CC="gcc" make test/attr7 ------------
# ------------ [125] CC="gcc" make test/attr8 ------------
# ------------ [126] CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 ------------
# ------------ [127] CC="gcc" make test/bitfield ------------
# ------------ [128] (fail) CC="gcc" make test/break1 ------------
# ------------ [129] CC="gcc" make test/builtin2 ------------
# ------------ [130] CC="gcc" make test/builtin5 ------------
# ------------ [131] CC="gcc" make test/cast1 ------------
# ------------ [132] CC="gcc" make test/cast2 ------------
# ------------ [133] CC="gcc" make test/cast4 ------------
# ------------ [134] CC="gcc" make test/castcall ------------
# ------------ [135] CC="gcc" make test/castunion ------------
# ------------ [136] CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 ------------
# ------------ [137] (fail) CC="gcc" make test/const13 WARNINGS_ARE_ERRORS=1 ------------
# ------------ [138] CC="gcc" make test/const14 ------------
# ------------ [139] CC="gcc" make test/const7 ------------
# ------------ [140] CC="gcc" make test/const9 ------------
# ------------ [141] CC="gcc" make test/constprop ------------
# ------------ [142] CC="gcc" make test/constrexpr ------------
# ------------ [143] (fail) CC="gcc" make test/cpp-2 ------------
# ------------ [144] CC="gcc" make test/cpp-3 ------------
# ------------ [145] (fail) CC="gcc" make test/decl2 ------------
# ------------ [146] CC="gcc" make test/deref ------------
# ------------ [147] CC="gcc" make test/duplicate ------------
# ------------ [148] CC="gcc" make test/enum ------------
# ------------ [149] CC="gcc" make test/extinline3 ------------
# ------------ [150] CC="gcc" make test/func ------------
# ------------ [151] (fail) CC="gcc" make test/func10 ------------
# ------------ [152] (fail) CC="gcc" make test/funcarg ------------
# ------------ [153] CC="gcc" make test/globals ------------
# ------------ [154] (fail) CC="gcc" make test/globals2 ------------
# ------------ [155] CC="gcc" make test/huff1 ------------
# ------------ [156] CC="gcc" make test/init ------------
# ------------ [157] CC="gcc" make test/init8 ------------
# ------------ [158] CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 ------------
# ------------ [159] CC="gcc" make test/inline3 ------------
# ------------ [160] CC="gcc" make test/jmp_buf ------------
# ------------ [161] CC="gcc" make test/label5 ------------
# ------------ [162] CC="gcc" make test/label7 ------------
# ------------ [163] CC="gcc" make test/label8 ------------
# ------------ [164] CC="gcc" make test/label9 EXTRAARGS=--domakeCFG ------------
# ------------ [165] CC="gcc" make test/li ------------
# ------------ [166] CC="gcc" make test/linux_atomic ------------
# ------------ [167] CC="gcc" make test/linuxcombine1_1 ------------
# ------------ [168] CC="gcc" make test/list ------------
# ------------ [169] CC="gcc" make test/matrix ------------
# ------------ [170] CC="gcc" make test/noreturn ------------
# ------------ [171] CC="gcc" make test/outofmem ------------
# ------------ [172] CC="gcc" make test/packed2 ------------
# ------------ [173] CC="gcc" make test/power1 ------------
# ------------ [174] CC="gcc" make test/printf ------------
# ------------ [175] CC="gcc" make test/printf_const ------------
# ------------ [176] (fail) CC="gcc" make test/proto1 ------------
# ------------ [177] (fail) CC="gcc" make test/proto2 ------------
# ------------ [178] CC="gcc" make test/pure ------------
# ------------ [179] CC="gcc" make test/restrict EXTRAARGS=-std=c9x ------------
# ------------ [180] CC="gcc" make test/restrict1 ------------
# ------------ [181] CC="gcc" make test/retval ------------
# ------------ [182] CC="gcc" make test/scope12 ------------
# ------------ [183] CC="gcc" make test/scope2 ------------
# ------------ [184] (fail) CC="gcc" make test/scope3 ------------
# ------------ [185] CC="gcc" make test/scope4 ------------
# ------------ [186] CC="gcc" make test/shell-escape SHELL_ESCAPE=1 ------------
# ------------ [187] (fail) CC="gcc" make test/sizeof3 ------------
# 
# [187] GOOD NEWS: A test that used to fail (Bug. Constant-folding of very large arrays does not work on 32-bit machines.) now succeeds:
#   CC="gcc" make test/sizeof3
# ------------ [188] CC="gcc" make test/static ------------
# ------------ [189] CC="gcc" make test/static1 ------------
# ------------ [190] CC="gcc" make test/strcpy ------------
# ------------ [191] CC="gcc" make test/struct_init ------------
# ------------ [192] CC="gcc" make test/structassign ------------
# ------------ [193] (fail) CC="gcc" make test/switch_default_parse_bug ------------
# ------------ [194] CC="gcc" make test/sync-1 ------------
# ------------ [195] CC="gcc" make test/sync-2 ------------
# ------------ [196] CC="gcc" make test/sync-3 ------------
# ------------ [197] CC="gcc" make test/tags ------------
# ------------ [198] CC="gcc" make test/task ------------
# ------------ [199] CC="gcc" make test/unimplemented ------------
# ------------ [200] CC="gcc" make test/union5 ------------
# ------------ [201] CC="gcc" make test/va_arg_pack ------------
# ------------ [202] CC="gcc" make test/vararg7 ------------
# ------------ [203] CC="gcc" make test/voidstar ------------
# ------------ [204] CC="gcc" make test/voidtypedef ------------
# ------------ [205] CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 ------------
# ------------ [206] CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 ------------
# ------------ [207] CC="gcc" make test_i/empty ------------
# ------------ [208] CC="gcc" make test_i/lineno ------------
# ------------ [209] CC="gcc" make testc11/alignas ------------
# ------------ [210] (fail) CC="gcc" make testc11/clang-c11-generic-1-1 ------------
# ------------ [211] (fail) CC="gcc" make testc11/clang-c11-generic-1-2 ------------
# ------------ [212] CC="gcc" make testc11/clang-c11-generic-2 ------------
# ------------ [213] (fail) CC="gcc" make testc11/gcc-c11-generic-2-1 ------------
# ------------ [214] (fail) CC="gcc" make testc11/gcc-c11-generic-2-7 ------------
# ------------ [215] CC="gcc" make testc11/gcc-c11-generic-3-1 ------------
# ------------ [216] (fail) CC="gcc" make testc11/gcc-c11-generic-3-2 ------------
# ------------ [217] (fail) CC="gcc" make testc11/gcc-c11-generic-3-3 ------------
# ------------ [218] (fail) CC="gcc" make testc11/gcc-c11-generic-3-4 ------------
# ------------ [219] CC="gcc" make testobj/asm5 ------------
# ------------ [220] CC="gcc" make testrun/addr-array ------------
# ------------ [221] CC="gcc" make testrun/addr-string ------------
# ------------ [222] CC="gcc" make testrun/addrof3 ------------
# ------------ [223] CC="gcc" make testrun/align1 ------------
# ------------ [224] CC="gcc" make testrun/align2 EXTRAARGS=-O2 ------------
# ------------ [225] CC="gcc" make testrun/apachebuf ------------
# ------------ [226] CC="gcc" make testrun/apachefptr ------------
# ------------ [227] CC="gcc" make testrun/array_formal ------------
# ------------ [228] (fail) CC="gcc" make testrun/array_multi_varsize ------------
# ------------ [229] CC="gcc" make testrun/array_varsize ------------
# ------------ [230] CC="gcc" make testrun/arrayinitsize ------------
# ------------ [231] CC="gcc" make testrun/asm1 ------------
# ------------ [232] CC="gcc" make testrun/assign ------------
# ------------ [233] CC="gcc" make testrun/attr-in-decllist ------------
# ------------ [234] CC="gcc" make testrun/attr4 ------------
# ------------ [235] CC="gcc" make testrun/attr5 ------------
# ------------ [236] CC="gcc" make testrun/bitfield2 ------------
# ------------ [237] CC="gcc" make testrun/bitfield3 ------------
# ------------ [238] CC="gcc" make testrun/blockattr2 USECFG=1 ------------
# ------------ [239] CC="gcc" make testrun/bool ------------
# ------------ [240] CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 ------------
# ------------ [241] CC="gcc" make testrun/builtin ------------
# ------------ [242] CC="gcc" make testrun/builtin3 ------------
# ------------ [243] CC="gcc" make testrun/builtin4 ------------
# ------------ [244] CC="gcc" make testrun/builtin_choose_expr ------------
# ------------ [245] CC="gcc" make testrun/call2 ------------
# ------------ [246] CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG ------------
# ------------ [247] CC="gcc" make testrun/caserange ------------
# ------------ [248] CC="gcc" make testrun/cast8 ------------
# ------------ [249] CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 ------------
# ------------ [250] CC="gcc" make testrun/comma1 ------------
# ------------ [251] CC="gcc" make testrun/comparisons ------------
# ------------ [252] (fail) CC="gcc" make testrun/compound1 ------------
# ------------ [253] CC="gcc" make testrun/compound2 ------------
# ------------ [254] CC="gcc" make testrun/cond1 ------------
# ------------ [255] CC="gcc" make testrun/cond2 ------------
# ------------ [256] CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 ------------
# ------------ [257] CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 ------------
# ------------ [258] CC="gcc" make testrun/const1 ------------
# ------------ [259] CC="gcc" make testrun/const10 ------------
# ------------ [260] CC="gcc" make testrun/const11 ------------
# ------------ [261] CC="gcc" make testrun/const12 ------------
# ------------ [262] CC="gcc" make testrun/const15 ------------
# ------------ [263] CC="gcc" make testrun/const16 ------------
# ------------ [264] CC="gcc" make testrun/const2 ------------
# ------------ [265] CC="gcc" make testrun/const3 ------------
# ------------ [266] CC="gcc" make testrun/const4 ------------
# ------------ [267] CC="gcc" make testrun/const5 ------------
# ------------ [268] CC="gcc" make testrun/const6 ------------
# ------------ [269] CC="gcc" make testrun/const8 ------------
# ------------ [270] (fail) CC="gcc" make testrun/constfold EXTRAARGS="--domakeCFG --dopartial" ------------
# ------------ [271] CC="gcc" make testrun/decl_mix_stmt ------------
# ------------ [272] CC="gcc" make testrun/enum2 ------------
# ------------ [273] CC="gcc" make testrun/escapes ------------
# ------------ [274] CC="gcc" make testrun/extern1 ------------
# ------------ [275] CC="gcc" make testrun/extinline2 ------------
# ------------ [276] CC="gcc" make testrun/fallthrough-label ------------
# ------------ [277] CC="gcc" make testrun/flexible-array-member ------------
# ------------ [278] CC="gcc" make testrun/float ------------
# ------------ [279] CC="gcc" make testrun/float2 ------------
# ------------ [280] CC="gcc" make testrun/for1 ------------
# ------------ [281] CC="gcc" make testrun/formalscope ------------
# ------------ [282] CC="gcc" make testrun/func2 ------------
# ------------ [283] CC="gcc" make testrun/func3 ------------
# ------------ [284] CC="gcc" make testrun/func4 ------------
# ------------ [285] CC="gcc" make testrun/funptr1 ------------
# ------------ [286] CC="gcc" make testrun/init ------------
# ------------ [287] CC="gcc" make testrun/init1 ------------
# ------------ [288] CC="gcc" make testrun/init10 ------------
# ------------ [289] CC="gcc" make testrun/init11 ------------
# ------------ [290] CC="gcc" make testrun/init12 ------------
# ------------ [291] CC="gcc" make testrun/init13 ------------
# ------------ [292] CC="gcc" make testrun/init14 ------------
# ------------ [293] CC="gcc" make testrun/init15 ------------
# ------------ [294] CC="gcc" make testrun/init16 ------------
# ------------ [295] CC="gcc" make testrun/init17 ------------
# ------------ [296] CC="gcc" make testrun/init18 ------------
# ------------ [297] CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 ------------
# ------------ [298] CC="gcc" make testrun/init2 ------------
# ------------ [299] CC="gcc" make testrun/init20 ------------
# ------------ [300] CC="gcc" make testrun/init21 ------------
# ------------ [301] CC="gcc" make testrun/init22 ------------
# ------------ [302] CC="gcc" make testrun/init3 ------------
# ------------ [303] CC="gcc" make testrun/init4 ------------
# ------------ [304] CC="gcc" make testrun/init5 ------------
# ------------ [305] CC="gcc" make testrun/init6 ------------
# ------------ [306] CC="gcc" make testrun/init9 ------------
# ------------ [307] CC="gcc" make testrun/initial ------------
# ------------ [308] (fail) CC="gcc" make testrun/inline1 ------------
# ------------ [309] CC="gcc" make testrun/inline2 ------------
# ------------ [310] CC="gcc" make testrun/label1 ------------
# ------------ [311] CC="gcc" make testrun/label2 ------------
# ------------ [312] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------
# ------------ [313] CC="gcc" make testrun/label3 ------------
# ------------ [314] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------
# ------------ [315] CC="gcc" make testrun/label4 ------------
# ------------ [316] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------
# ------------ [317] CC="gcc" make testrun/label6 ------------
# ------------ [318] CC="gcc" make testrun/land_expr ------------
# ------------ [319] CC="gcc" make testrun/large_unsigned_long ------------
# ------------ [320] CC="gcc" make testrun/linux_signal ------------
# ------------ [321] CC="gcc" make testrun/localinit ------------
# ------------ [322] CC="gcc" make testrun/logical ------------
# ------------ [323] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------
# ------------ [324] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------
# ------------ [325] CC="gcc" make testrun/longBlock ------------
# ------------ [326] CC="gcc" make testrun/lval1 ------------
# ------------ [327] CC="gcc" make testrun/macro_hidden ------------
# ------------ [328] CC="gcc" make testrun/math1 ------------
# ------------ [329] CC="gcc" make testrun/memcpy1 ------------
# ------------ [330] CC="gcc" make testrun/min ------------
# ------------ [331] CC="gcc" make testrun/msvc1 ------------
# ------------ [332] CC="gcc" make testrun/msvc5 ------------
# ------------ [333] CC="gcc" make testrun/nan-global ------------
# ------------ [334] CC="gcc" make testrun/offsetof ------------
# ------------ [335] CC="gcc" make testrun/offsetof1 ------------
# ------------ [336] CC="gcc" make testrun/offsetof2 ------------
# ------------ [337] CC="gcc" make testrun/offsetof3 ------------
# ------------ [338] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------
# ------------ [339] CC="gcc" make testrun/percent400 ------------
# ------------ [340] CC="gcc" make testrun/percentm ------------
# ------------ [341] CC="gcc" make testrun/perror ------------
# ------------ [342] CC="gcc" make testrun/perror1 ------------
# ------------ [343] (fail) CC="gcc" make testrun/post-assign ------------
# ------------ [344] CC="gcc" make testrun/printf2 ------------
# ------------ [345] CC="gcc" make testrun/question ------------
# ------------ [346] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------
# ------------ [347] CC="gcc" make testrun/question2 ------------
# ------------ [348] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------
# ------------ [349] CC="gcc" make testrun/return1 ------------
# ------------ [350] CC="gcc" make testrun/returnvoid ------------
# ------------ [351] CC="gcc" make testrun/returnvoid1 ------------
# ------------ [352] (fail) CC="gcc" make testrun/rmtmps-attr ------------
# ------------ [353] CC="gcc" make testrun/rmtmps1 ------------
# ------------ [354] CC="gcc" make testrun/rmtmps2 ------------
# ------------ [355] CC="gcc" make testrun/scope1 ------------
# ------------ [356] CC="gcc" make testrun/scope10 ------------
# ------------ [357] CC="gcc" make testrun/scope11 ------------
# ------------ [358] CC="gcc" make testrun/scope5 ------------
# ------------ [359] CC="gcc" make testrun/scope6 ------------
# ------------ [360] CC="gcc" make testrun/scope8 ------------
# ------------ [361] CC="gcc" make testrun/scope9 ------------
# ------------ [362] CC="gcc" make testrun/semicolon ------------
# ------------ [363] CC="gcc" make testrun/simon6 ------------
# ------------ [364] CC="gcc" make testrun/sizeof1 ------------
# ------------ [365] CC="gcc" make testrun/sizeof2 ------------
# ------------ [366] CC="gcc" make testrun/static ------------
# ------------ [367] CC="gcc" make testrun/static2 ------------
# ------------ [368] CC="gcc" make testrun/stringsize ------------
# ------------ [369] CC="gcc" make testrun/strloop ------------
# ------------ [370] CC="gcc" make testrun/strloop3 ------------
# ------------ [371] CC="gcc" make testrun/struct1 ------------
# ------------ [372] CC="gcc" make testrun/typeof1 ------------
# ------------ [373] (fail) CC="gcc" make testrun/typespec1 ------------
# ------------ [374] CC="gcc" make testrun/union2 ------------
# ------------ [375] CC="gcc" make testrun/union3 ------------
# ------------ [376] (fail) CC="gcc" make testrun/union6 ------------
# ------------ [377] CC="gcc" make testrun/va-arg-1 ------------
# ------------ [378] CC="gcc" make testrun/va-arg-2 ------------
# ------------ [379] CC="gcc" make testrun/va-arg-7 ------------
# ------------ [380] CC="gcc" make testrun/var_named_hidden ------------
# ------------ [381] CC="gcc" make testrun/vararg1 ------------
# ------------ [382] CC="gcc" make testrun/vararg2 ------------
# ------------ [383] CC="gcc" make testrun/vararg3 ------------
# ------------ [384] CC="gcc" make testrun/vararg4 ------------
# ------------ [385] CC="gcc" make testrun/vararg5 ------------
# ------------ [386] CC="gcc" make testrun/vararg6 ------------
# ------------ [387] CC="gcc" make testrun/varargauto1 ------------
# ------------ [388] CC="gcc" make testrun/void ------------
# ------------ [389] CC="gcc" make testrun/voidarg ------------
# ------------ [390] CC="gcc" make testrun/vsp ------------
# ------------ [391] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------
# ------------ [392] CC="gcc" make testrun/wchar1 ------------
# ------------ [393] CC="gcc" make testrun/wchar2 ------------
# ------------ [394] CC="gcc" make testrun/wchar3 ------------
# ------------ [395] CC="gcc" make testrun/wchar4 ------------
# ------------ [396] CC="gcc" make testrun/wchar5 ------------
# ------------ [397] CC="gcc" make testrun/wchar6 ------------
# ------------ [398] CC="gcc" make testrun/wchar7 ------------
# ------------ [399] (fail) CC="gcc" make testrun/wrongnumargs ------------
# ------------ [400] CC="gcc" make testrunc11/c11-align-of ------------
# ------------ [401] CC="gcc" make testrunc11/c11-atomic ------------
# ------------ [402] CC="gcc" make testrunc11/c11-atomic-store ------------
# ------------ [403] CC="gcc" make testrunc11/c11-caserange ------------
# ------------ [404] CC="gcc" make testrunc11/c11-extendedFloat ------------
# ------------ [405] CC="gcc" make testrunc11/c11-generic ------------
# ------------ [406] CC="gcc" make testrunc11/c11-noreturn ------------
# ------------ [407] CC="gcc" make testrunc11/c11-static-assert ------------
# ------------ [408] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------
# ------------ [409] CC="gcc" make testrunc99/c99-bool ------------
# ------------ [410] CC="gcc" make testrunc99/c99-complex ------------
# ------------ [411] CC="gcc" make testrunc99/c99-fixed-width-int ------------
# ------------ [412] CC="gcc" make testrunc99/c99-float-pragma ------------
# ------------ [413] CC="gcc" make testrunc99/c99-predefined ------------
# ------------ [414] CC="gcc" make testrunc99/c99-struct ------------
# ------------ [415] CC="gcc" make testrunc99/c99-tgmath ------------
# ------------ [416] CC="gcc" make testrunc99/c99-tgmath2 ------------
# ------------ [417] CC="gcc" make testrunc99/c99-universal-character-names ------------
# ------------ [418] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------
# ------------ [419] CC="gcc" make testrungcc/enum3 ------------
# ------------ [420] CC="gcc" make testrungcc/enum3a ------------
# ------------ [421] CC="gcc" make testrungcc/enum3b ------------
# ------------ [422] (fail) CC="gcc" make testrungcc/enum3c ------------
# ------------ [423] CC="gcc" make testrungcc/enum3d ------------
# ------------ [424] CC="gcc" make testrungcc/enum3e ------------
# ------------ [425] CC="gcc" make testrungcc/enum3f ------------
# ------------ [426] CC="gcc" make testrungcc/enum3g ------------
# ------------ [427] CC="gcc" make testrungcc/enum3h ------------
# ------------ [428] CC="gcc" make testrungcc/enum3i ------------
# ------------ [429] CC="gcc" make testrungcc/enum3j ------------
# ------------ [430] CC="gcc" make testrungcc/enum3k ------------
# ------------ [431] CC="gcc" make testrungcc/enum3l ------------
# 
# Successful tests:     387
# Failed as expected:   37
# Unexpected success:   4
# Unexpected failure:   4
# 
# [58] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC=gcc make scott/asmfndecl
# [70] GOOD NEWS: A test that used to fail (Notbug. Not a bug if fails on a non-Linux machine ;-)) now succeeds:
#   CC=gcc make scott/globalprob
# [74] A regression test command failed:
#   CC=gcc make scott/kernel1
# [82] A regression test command failed:
#   CC=gcc make scott/neg64
# [87] GOOD NEWS: A test that used to fail (Notbug. Some gcc versions fail to compile this test on i386) now succeeds:
#   CC=gcc make scott/regparm0
# [96] A regression test command failed:
#   CC=gcc make scott/typeof
# [97] A regression test command failed:
#   CC=gcc make scott/uninit_tmp
# [187] GOOD NEWS: A test that used to fail (Bug. Constant-folding of very large arrays does not work on 32-bit machines.) now succeeds:
#   CC=gcc make test/sizeof3



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build goblint-cil 2.0.0
+- 
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose goblint-cil.2.0.0' failed.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose goblint-cil.2.0.0;
        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" != 'goblint-cil.2.0.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2026-04-13 14:44.05: Job failed: Failed: Build failed
2026-04-13 14:44.05: Log analysis:
2026-04-13 14:44.05: >>> 
[ERROR] The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".
 (score = 20)
2026-04-13 14:44.05: >>> 
[ERROR] The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".
 (score = 20)
2026-04-13 14:44.05: The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".