Build:
  1. 0
2026-01-13 04:05.01: New job: test goblint-cil.2.0.0 with dune.3.21.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29216/head (001b427da21d4d746e124eaaffab7b4134813f6d)
                              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/29216/head" && git reset --hard 001b427d
git fetch origin master
git merge --no-edit 1c361fac36225534ee877701522e296785f9a9db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
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.3.21.0 3.21.0
RUN opam reinstall dune.3.21.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" != 'dune.3.21.0' && 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-01-13 04:05.01: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-dune.3.21.0-goblint-cil.2.0.0-001b427da21d4d746e124eaaffab7b4134813f6d"
2026-01-13 04:05.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
 (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.3.21.0 3.21.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.21.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\" != 'dune.3.21.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 (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-01-13 04:05.01: Waiting for resource in pool OCluster
2026-01-13 18:29.06: Waiting for worker…
2026-01-13 18:32.17: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  66% (12857/19211)
Updating files:  67% (12872/19211)
Updating files:  68% (13064/19211)
Updating files:  69% (13256/19211)
Updating files:  70% (13448/19211)
Updating files:  71% (13640/19211)
Updating files:  72% (13832/19211)
Updating files:  73% (14025/19211)
Updating files:  74% (14217/19211)
Updating files:  75% (14409/19211)
Updating files:  76% (14601/19211)
Updating files:  77% (14793/19211)
Updating files:  78% (14985/19211)
Updating files:  79% (15177/19211)
Updating files:  80% (15369/19211)
Updating files:  81% (15561/19211)
Updating files:  82% (15754/19211)
Updating files:  83% (15946/19211)
Updating files:  84% (16138/19211)
Updating files:  85% (16330/19211)
Updating files:  86% (16522/19211)
Updating files:  87% (16714/19211)
Updating files:  88% (16906/19211)
Updating files:  89% (17098/19211)
Updating files:  90% (17290/19211)
Updating files:  91% (17483/19211)
Updating files:  92% (17675/19211)
Updating files:  93% (17867/19211)
Updating files:  94% (18059/19211)
Updating files:  95% (18251/19211)
Updating files:  96% (18443/19211)
Updating files:  97% (18635/19211)
Updating files:  98% (18827/19211)
Updating files:  99% (19019/19211)
Updating files: 100% (19211/19211)
Updating files: 100% (19211/19211), done.
HEAD is now at 1c361fac36 Merge pull request #29210 from dinosaure/release-miou-v0.5.1
Merge made by the 'ort' strategy.
 packages/chrome-trace/chrome-trace.3.21.0/opam     | 41 ++++++++++++
 .../dune-action-plugin.3.21.0/opam                 | 54 ++++++++++++++++
 .../dune-build-info/dune-build-info.3.21.0/opam    | 47 ++++++++++++++
 .../dune-configurator.3.21.0/opam                  | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0/opam           | 44 +++++++++++++
 .../dune-private-libs.3.21.0/opam                  | 52 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam     | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0/opam             | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0/opam           | 39 +++++++++++
 packages/dune/dune.3.21.0/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0/opam                       | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0/opam                   | 41 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam         | 45 +++++++++++++
 packages/ordering/ordering.3.21.0/opam             | 40 ++++++++++++
 packages/stdune/stdune.3.21.0/opam                 | 48 ++++++++++++++
 packages/top-closure/top-closure.3.21.0/opam       | 40 ++++++++++++
 packages/xdg/xdg.3.21.0/opam                       | 41 ++++++++++++
 17 files changed, 789 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0/opam
 create mode 100644 packages/dune/dune.3.21.0/opam
 create mode 100644 packages/dyn/dyn.3.21.0/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam
 create mode 100644 packages/ordering/ordering.3.21.0/opam
 create mode 100644 packages/stdune/stdune.3.21.0/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0/opam
 create mode 100644 packages/xdg/xdg.3.21.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
2026-01-13 18:32.20 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 18:32.20 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" 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
Format upgrade done.
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.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-13 18:32.20 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" 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.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-01-13 18:32.20 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 18:32.20 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 18:32.22 ---> using "09c39d7126e88ed573ca8f78acbffb48c0088baecebf7a9155a91c3290ace20b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 18:32.22 ---> using "1f9ebb837e22c3f42b1c3f6e7178a2aa2fcb8206685e62bba70fde550083c584" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [95.5 kB]
- Fetched 9997 kB in 2s (4879 kB/s)
- Reading package lists...
- 
2026-01-13 18:32.22 ---> using "bc5a313c83583d746179a868806b410c236b5a3d4895b7d8bc464eed6cfe706e" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0 3.21.0"))
dune is now pinned to version 3.21.0
2026-01-13 18:32.22 ---> using "448b2b0e77526967dc1d84c9cd1fd4fdf010f08d862d127b94c63a52bbc324d1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.21.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\" != 'dune.3.21.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.21.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.21.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0  (cached)
-> installed dune.3.21.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 18:32.22 ---> using "5acb627376dc8b6ecaceedd8635589b9dfb44ea06abcf3fc03092c3e94ea4126" 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 18 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 csexp               1.5.2   [required by dune-configurator]
  - install dune-configurator   3.21.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.37.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 ... 20622 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) ...

<><> 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 csexp.1.5.2  (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.21.0  (cached)
-> installed cppo.1.8.0
-> retrieved goblint-cil.2.0.0  (cached)
-> 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.37.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed dune-configurator.3.21.0
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed ppxlib.0.37.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-01-13 18:33.39 ---> saved as "ba2ad5f3139429b74fb3618ed2e98d5b1f06dbd4218ea76345d28beba1241084"

/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.2 | 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-bb005f.env
# output-file          ~/.opam/log/goblint-cil-7-bb005f.out
### output ###
# (cd _build/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.2 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-01-13 18:36.46 ---> saved as "11e6374d4be3fe0092e1e798bf571c36427c138ce8e01b245d17cf3903c9c016"

/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/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.2 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.2 | 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-6-89c9b3.env
# output-file          ~/.opam/log/goblint-cil-6-89c9b3.out
### output ###
# (cd _build/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.2 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-01-13 18:39.06: Job failed: Failed: Build failed
2026-01-13 18:39.06: Log analysis:
2026-01-13 18:39.06: >>> 
[ERROR] The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".
 (score = 20)
2026-01-13 18:39.06: >>> 
[ERROR] The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".
 (score = 20)
2026-01-13 18:39.06: The compilation of goblint-cil.2.0.0 failed at "dune build -p goblint-cil -j 71 @install @runtest".