Build:
- 0
2026-02-27 04:04.58: New job: test goblint-cil.2.0.2 with ocaml-compiler.5.4.0~beta1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-compiler.5.4.0~beta1' && 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.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'goblint-cil.2.0.2' && 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.2) || true
RUN opam reinstall --with-test --verbose goblint-cil.2.0.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'goblint-cil.2.0.2' && 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-02-27 04:04.58: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-compiler.5.4.0~beta1-goblint-cil.2.0.2-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~beta1' && 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.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'goblint-cil.2.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test goblint-cil.2.0.2) || true"))
(run (shell "opam reinstall --with-test --verbose goblint-cil.2.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'goblint-cil.2.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-27 04:04.58: Waiting for resource in pool OCluster
2026-03-02 11:45.35: Waiting for worker…
2026-03-02 11:50.02: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 11:50.04 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-02 11:50.04 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 11:50.04 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-02 11:50.04 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-02 11:50.04 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 11:50.05 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 11:50.05 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1904 kB/s)
- Reading package lists...
2026-03-02 11:50.05 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-02 11:50.05 ---> using "6fd37d04a9e382ba9520dd8b4a6843a6d9b45aa8b88c7f16a736b525cb8983ed" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~beta1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~beta1 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~beta1+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-02 11:50.05 ---> using "762340eb078c3df659e13e030502422547d3305b9c3af0f846f7b3c885574d39" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall goblint-cil.2.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'goblint-cil.2.0.2' && 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.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 19 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 3.21.1 [required by goblint-cil]
- install dune-configurator 3.21.1 [required by goblint-cil]
- install goblint-cil 2.0.2
- install ocaml-compiler-libs v0.17.0 [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 ... 20654 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+deb13u1) ...
<><> 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)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved goblint-cil.2.0.2 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (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)
-> 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 ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.21.1
-> installed ppx_derivers.1.2.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed dune-configurator.3.21.1
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_yojson.3.10.0
-> installed goblint-cil.2.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 11:50.53 ---> saved as "50d8d7149a8a22b79285fdd8bb77640cd505fae73d673ee9adc3c2f83ae7d059"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test goblint-cil.2.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile goblint-cil 2.0.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved goblint-cil.2.0.2 (https://opam.ocaml.org/cache)
[ERROR] The compilation of goblint-cil.2.0.2 failed at "dune build -p goblint-cil -j 255 @install @runtest".
#=== ERROR while compiling goblint-cil.2.0.2 ==================================#
# context 2.5.0 | linux/x86_64 | ocaml-variants.5.4.0~beta1+options | file:///home/opam/opam-repository
# path ~/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p goblint-cil -j 255 @install @runtest
# exit-code 1
# env-file ~/.opam/log/goblint-cil-7-b37525.env
# output-file ~/.opam/log/goblint-cil-7-b37525.out
### output ###
# (cd _build/default && /home/opam/.opam/5.4/bin/ocamlyacc src/frontc/cparser.mly)
# 1 shift/reduce conflict, 1 reduce/reduce conflict.
# (cd _build/default/src && /home/opam/.opam/5.4/bin/cppo -V OCAML:5.4.0~beta1 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-193:
# 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 --showoutput))))
# (cd _build/default/test && ./testcil -r --regrtest --showoutput)
# Test infrastructure for CIL on linux
# There are 453 tests enabled
# ------------ [0] CC="gcc" make arcombine ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -c array1.c array2.c
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly \
# --mode=AR --merge --verbose crv array.a array1.o array2.o
# AR called with crv array.a array1.o array2.o
# a - array1.o
# a - array2.o
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -o matrix.exe array.a matrix.c
# cd ./small1; ./matrix.exe
# ------------ [1] CC="gcc" make baddef ------------
# cd ./small2; gcc baddef1.c baddef2.c -o baddef.exe \
# && ./baddef.exe
# size1: 8
# size2: 12
# (correct output is 8, then 12)
# rm -f ./small2/baddef.exe
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.c -c -o baddef1.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef2.c -c -o baddef2.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.o baddef2.o -obaddef.exe
# ./small2/baddef.exe
# size1: 8
# size2: 12
# (correct output is 8, then 12)
# ------------ [2] CC="gcc" make comb ------------
# rm -f ./small2/comb.exe
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c -c -o comb1.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb2.c -c -o comb2.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb3.c -c -o comb3.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb4.c -c -o comb4.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.o comb2.o comb3.o comb4.o -ocomb.exe
# ./small2/comb.exe
# foo_com3(6): 19
# foo2_com4(61): 70
# ------------ [3] CC="gcc" make combine1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine1_1.c combine1_2.c combine1_3.c \
# -ocombine1.exe
# cd ./small1; ./combine1.exe
# Success
# ------------ [4] CC="gcc" make combine10 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine10_1.c combine10_2.c combine10_3.c \
# -ocombine10.exe
# cd ./small1; ./combine10.exe
# Success
# ------------ [5] CC="gcc" make combine11 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine11_1.c combine11_2.c \
# -ocombine11.exe
# cd ./small1; ./combine11.exe
# ------------ [6] CC="gcc" make combine12 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine12_1.c combine12_2.c \
# -ocombine12.exe
# cd ./small1; ./combine12.exe
# ------------ [7] CC="gcc" make combine13 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine13_1.c combine13_2.c \
# -ocombine13.exe
# cd ./small1; ./combine13.exe
# Address is af37040
# Success
# ------------ [8] CC="gcc" make combine14 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine14_1.c combine14_2.c \
# -ocombine14.exe
# cd ./small1; ./combine14.exe
# Success
# ------------ [9] CC="gcc" make combine15 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine15_1.c combine15_2.c \
# -ocombine15.exe
# cd ./small1; ./combine15.exe
# Address of x1=ad4f0060 and x2=ad4f0050
# Address of y1=ad4f0058 and y2=ad4f0068
# ------------ [10] CC="gcc" make combine16 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine16_1.c combine16_2.c \
# -ocombine16.exe
# cd ./small1; ./combine16.exe
# ------------ [11] CC="gcc" make combine17 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine17_1.c combine17_2.c \
# -ocombine17.exe
# cd ./small1; ./combine17.exe
# Success
# ------------ [12] CC="gcc" make combine18 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine18_1.c combine18_2.c \
# -ocombine18.exe
# cd ./small1; ./combine18.exe
# Success
# ------------ [13] CC="gcc" make combine2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine2_1.c combine2_2.c combine2_3.c \
# -ocombine2.exe
# cd ./small1; ./combine2.exe
# Success
# ------------ [14] CC="gcc" make combine20 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine20_1.c combine20_2.c \
# -ocombine20.exe
# cd ./small1; ./combine20.exe
# ------------ [15] CC="gcc" make combine21 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine21_1.c combine21_2.c \
# -ocombine21.exe
# cd ./small1; ./combine21.exe
# ------------ [16] (fail) CC="gcc" make combine22 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine22_1.c combine22_2.c \
# -ocombine22.exe
# ------------ [17] CC="gcc" make combine3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine3_1.c combine3_2.c combine3_3.c \
# -ocombine3.exe
# cd ./small1; ./combine3.exe
# Success
# ------------ [18] CC="gcc" make combine5 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine5_1.c combine5_2.c combine5_3.c \
# -ocombine5.exe
# cd ./small1; ./combine5.exe
# Address of TimeOuts=5a378040
# ------------ [19] CC="gcc" make combine6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine6_1.c combine6_2.c combine6_3.c \
# -ocombine6.exe
# cd ./small1; ./combine6.exe
# ------------ [20] CC="gcc" make combine8 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine8_1.c combine8_2.c \
# -ocombine8.exe
# cd ./small1; ./combine8.exe
# Success
# ------------ [21] (fail) CC="gcc" make combine9 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine9_1.c combine9_2.c \
# -ocombine9.exe
# cd ./small1; ./combine9.exe
# Error 1
# ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_allocate_1.c combine_allocate_2.c \
# -ocombine_allocate.exe
# cd ./small1; ./combine_allocate.exe
# ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -fcommon \
# combine_copyptrs_1.c combine_copyptrs_2.c \
# -ocombine_copyptrs.exe
# cd ./small1; ./combine_copyptrs.exe
# ------------ [24] CC="gcc" make combine_init ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_init_1.c combine_init_2.c \
# -ocombine_init.exe
# cd ./small1; ./combine_init.exe
# ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_node_alloc_1.c combine_node_alloc_2.c \
# -ocombine_node_alloc.exe
# ------------ [26] (fail) CC="gcc" make combine_samefn ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_samefn_1.c combine_samefn_2.c \
# -ocombine_samefn.exe
# ------------ [27] CC="gcc" make combine_sbump ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_sbump_1.c combine_sbump_2.c \
# -ocombine_sbump.exe
# cd ./small1; ./combine_sbump.exe
# ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_sbumpB_1.c combine_sbumpB_2.c combine_sbumpB_3.c \
# -ocombine_sbumpB.exe
# cd ./small1; ./combine_sbumpB.exe
# ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_syserr_1.c combine_syserr_2.c \
# -ocombine_syserr.exe
# cd ./small1; ./combine_syserr.exe
# ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_theFunc_1.c combine_theFunc_2.c combine_theFunc_3.c \
# -ocombine_theFunc.exe
# cd ./small1; ./combine_theFunc.exe
# ------------ [31] CC="gcc" make combinealias ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinealias_1.c combinealias_2.c \
# -ocombinealias.exe
# cd ./small1; ./combinealias.exe
# Hello, world! 42
# ------------ [32] (fail) CC="gcc" make combinec99inline ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline_1.c combine-c99inline_2.c \
# -ocombine-c99inline.exe
# ------------ [33] CC="gcc" make combinec99inline1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline1_1.c combine-c99inline1_2.c \
# -ocombine-c99inline1.exe
# cd ./small1; ./combine-c99inline1.exe
# ------------ [34] CC="gcc" make combinec99inline2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline2_1.c combine-c99inline2_2.c \
# -ocombine-c99inline2.exe
# cd ./small1; ./combine-c99inline2.exe
# ------------ [35] CC="gcc" make combinec99inline3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline3_1.c combine-c99inline3_2.c \
# -ocombine-c99inline3.exe
# cd ./small1; ./combine-c99inline3.exe
# ------------ [36] CC="gcc" make combinec99inline4 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline4_1.c combine-c99inline4_2.c \
# -ocombine-c99inline4.exe
# cd ./small1; ./combine-c99inline4.exe
# ------------ [37] CC="gcc" make combinec99inline5 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline5_1.c combine-c99inline5_2.c \
# -ocombine-c99inline5.exe
# cd ./small1; ./combine-c99inline5.exe
# ------------ [38] CC="gcc" make combinec99inline6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline6_1.c combine-c99inline6_2.c \
# -ocombine-c99inline6.exe
# cd ./small1; ./combine-c99inline6.exe
# ------------ [39] CC="gcc" make combinec99inline7 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline7_1.c combine-c99inline7_2.c combine-c99inline7_3.c \
# -ocombine-c99inline7.exe
# cd ./small1; ./combine-c99inline7.exe
# ------------ [40] CC="gcc" make combinec99inline8 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline8_1.c combine-c99inline8_2.c combine-c99inline8_3.c \
# -ocombine-c99inline8.exe
# cd ./small1; ./combine-c99inline8.exe
# ------------ [41] CC="gcc" make combinec99inline9 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline9_1.c combine-c99inline9_2.c \
# -ocombine-c99inline9.exe
# cd ./small1; ./combine-c99inline9.exe
# ------------ [42] CC="gcc" make combinec99mergeinline1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline1_1.c combine-c99-mergeinline1_2.c \
# -ocombine-c99-mergeinline1.exe
# cd ./small1; ./combine-c99-mergeinline1.exe
# ------------ [43] CC="gcc" make combinec99mergeinline2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline2_1.c combine-c99-mergeinline2_2.c \
# -ocombine-c99-mergeinline2.exe
# cd ./small1; ./combine-c99-mergeinline2.exe
# ------------ [44] CC="gcc" make combinec99mergeinline3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline3_1.c combine-c99-mergeinline3_2.c \
# -ocombine-c99-mergeinline3.exe
# cd ./small1; ./combine-c99-mergeinline3.exe
# ------------ [45] CC="gcc" make combinec99mergeinline4 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline4_1.c combine-c99-mergeinline4_2.c \
# -ocombine-c99-mergeinline4.exe
# cd ./small1; ./combine-c99-mergeinline4.exe
# ------------ [46] CC="gcc" make combinec99mergeinline5 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline5_1.c combine-c99-mergeinline5_2.c \
# -ocombine-c99-mergeinline5.exe
# cd ./small1; ./combine-c99-mergeinline5.exe
# ------------ [47] CC="gcc" make combinec99mergeinline6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline6_1.c combine-c99-mergeinline6_2.c \
# -ocombine-c99-mergeinline6.exe
# cd ./small1; ./combine-c99-mergeinline6.exe
# ------------ [48] CC="gcc" make combinec99mergeinline7 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline7_1.c combine-c99-mergeinline7_2.c \
# -ocombine-c99-mergeinline7.exe
# cd ./small1; ./combine-c99-mergeinline7.exe
# ------------ [49] CC="gcc" make combineenum1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineenum1_1.c combineenum1_2.c \
# -ocombineenum1.exe
# cd ./small1; ./combineenum1.exe
# Success
# ------------ [50] CC="gcc" make combineenum2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineenum2_1.c combineenum2_2.c \
# -ocombineenum2.exe
# cd ./small1; ./combineenum2.exe
# ------------ [51] CC="gcc" make combineenum3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineenum3_1.c combineenum3_2.c \
# -ocombineenum3.exe
# cd ./small1; ./combineenum3.exe
# ------------ [52] CC="gcc" make combinegnuinline ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --merge -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinegnuinline_1.c combinegnuinline_2.c \
# -ocombinegnuinline.exe
# cd ./small1; ./combinegnuinline.exe
# ------------ [53] (fail) CC="gcc" make combineinline1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline1_1.c combineinline1_2.c \
# -ocombineinline1.exe
# ------------ [54] CC="gcc" make combineinline2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline2_1.c combineinline2_2.c \
# -ocombineinline2.exe
# cd ./small1; ./combineinline2.exe
# Success
# ------------ [55] (fail) CC="gcc" make combineinline3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline3_1.c combineinline3_2.c \
# -ocombineinline3.exe
# cd ./small1; ./combineinline3.exe
# Error 1
# ------------ [56] (fail) CC="gcc" make combineinline4 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline4_1.c combineinline4_2.c \
# -ocombineinline4.exe
# cd ./small1; ./combineinline4.exe
# Merging of inlines did not work
# Error 1
# ------------ [57] CC="gcc" make combineinline6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline6_1.c combineinline6_2.c \
# -ocombineinline6.exe
# cd ./small1; ./combineinline6.exe
# ------------ [58] CC="gcc" make combinelibrik ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinelibrik_1.c combinelibrik_2.c \
# -ocombinelibrik.exe
# cd ./small1; ./combinelibrik.exe
# ------------ [59] CC="gcc" make combinemerge1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon --merge\
# combinemerge1_1.c combinemerge1_2.c combinemerge1_3.c \
# -ocombinemerge1.exe
# cd ./small1; ./combinemerge1.exe
# ------------ [60] CC="gcc" make combinestruct1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinestruct1_1.c combinestruct1_2.c \
# -ocombinestruct1.exe
# cd ./small1; ./combinestruct1.exe
# ------------ [61] CC="gcc" make merge-ar ------------
# cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge -c merge-ar.c merge-twice-1.c
# cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge --mode=AR cr libmerge.a merge-ar.o merge-twice-1.o
# cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge libmerge.a -o merge-ar
# ------------ [62] CC="gcc" make mergeinit ------------
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --merge --strictcheck --keepunused mergeinit1.c mergeinit2_1_reftable.c mergeinit2_2_definition.c mergeinit3.c mergeinit4.c
# ------------ [63] CC="gcc" make mergeinline ------------
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats mergeinline1.c mergeinline2.c -o mergeinline.exe
# ./small2/mergeinline.exe
# ------------ [64] CC="gcc" make mergestruct ------------
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon mergestruct1.c mergestruct2.c -o mergestruct.exe
# ./small2/mergestruct.exe
# ------------ [65] CC="gcc" make mixedcomb ------------
# rm -f ./small2/comb.exe
# cd ./small2; \
# gcc -fcommon -E -o comb2.i comb2.c; \
# gcc -fcommon -S -o comb3.s comb3.c; \
# gcc -fcommon -c -o comb4.o comb4.c; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c comb2.i comb3.s comb4.o -ocomb.exe
# ./small2/comb.exe
# foo_com3(6): 19
# foo2_com4(61): 70
# ------------ [66] CC="gcc" make runall/alpha ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl alpha.c
# Found test baseline with msg:
# Found test overflow with msg:Encountered a variable name containing ___ and many digits
#
# ********* alpha: Running test baseline from line 2
# Test baseline:
# SUCCESS => 1
# LINE => 2
# MSG => ,
# MSGPATTERN => 0
# 2: KEEP(baseline): keep=1
# 21: KEEP(overflow): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./alpha-tmp.c -oalpha-tmp.exe && ./alpha-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# ./alpha-tmp.c: In function 'f':
# ./alpha-tmp.c:7:17: warning: variable 'G___152598332' set but not used [-Wunused-but-set-variable]
# 7 | }
# | ^
# ./alpha-tmp.c: In function 'f2':
# ./alpha-tmp.c:13:17: warning: variable 'G___1525983317___0' set but not used [-Wunused-but-set-variable]
# 13 | }
# | ^
# ./alpha-tmp.c: In function 'f3':
# ./alpha-tmp.c:18:17: warning: variable 'G__1525983317999999999994352352523523993424999' set but not used [-Wunused-but-set-variable]
# 18 | }
# | ^
# ./alpha-tmp.c: In function 'f4':
# ./alpha-tmp.c:24:17: warning: variable 'G___152598332' set but not used [-Wunused-but-set-variable]
# 24 | }
# | ^
# Test baseline returned with code 0. Expected success
# Test baseline (line 2) was successful
#
# ********* alpha: Running test overflow from line 21
# Test overflow:
# SUCCESS => 0
# LINE => 21
# MSG => Encountered a variable name containing ___ and many digits,
# MSGPATTERN =>
# 2: KEEP(baseline): keep=0
# 21: KEEP(overflow): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./alpha-tmp.c -oalpha-tmp.exe && ./alpha-tmp.exe
# Unimplemented: Encountered a variable name containing ___ and many digits. This could cause overflow in the Alpha renaming module.
# Context : 2cil: f4
# Error in doStatement (GoblintCil__Errormsg.Error)
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# Test overflow returned with code 512. Expected failure
# All 2 tests were successful!
# ------------ [67] CC="gcc" make runall/extinline ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl extinline.c
# Found test baseline with msg:
# Found test bad with msg:Trying to rename
#
# ********* extinline: Running test bad from line 20
# Test bad:
# SUCCESS => 0
# LINE => 20
# MSG => Trying to rename,
# MSGPATTERN =>
# 7: KEEP(baseline): keep=0
# 20: KEEP(bad): keep=1
# 21: KEEP(bad): keep=1
# 22: KEEP(bad): keep=1
# 23: KEEP(bad): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./extinline-tmp.c -oextinline-tmp.exe && ./extinline-tmp.exe
# ./extinline-tmp.c:20: Unimplemented: Trying to rename identity to
# identity__extinline, but identity__extinline already exists in the env.
# "__extinline" is reserved for CIL.
#
# Fatal error: exception GoblintCil__Errormsg.Error
# Test bad returned with code 512. Expected failure
#
# ********* extinline: Running test baseline from line 7
# Test baseline:
# SUCCESS => 1
# LINE => 7
# MSG => ,
# MSGPATTERN => 0
# 7: KEEP(baseline): keep=1
# 20: KEEP(bad): keep=0
# 21: KEEP(bad): keep=0
# 22: KEEP(bad): keep=0
# 23: KEEP(bad): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./extinline-tmp.c -oextinline-tmp.exe && ./extinline-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# ./extinline-tmp.c:31:5: warning: first argument of 'main' should be 'int' [-Wmain]
# 31 | int main(int *p, char** argv)
# | ^~~~
# Test baseline returned with code 0. Expected success
# Test baseline (line 7) was successful
# All 2 tests were successful!
# ------------ [68] CC="gcc" make runall/runall_misc ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl runall_misc.c
# Found test rbrace with msg:syntax error
#
# ********* runall_misc: Running test rbrace from line 8
# Test rbrace:
# SUCCESS => 0
# LINE => 8
# MSG => syntax error,
# MSGPATTERN =>
# 8: KEEP(rbrace): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./runall_misc-tmp.c -orunall_misc-tmp.exe && ./runall_misc-tmp.exe
# ./runall_misc-tmp.c[8:0-0] : syntax error
# Parsing errorFatal error: exception GoblintCil__Frontc.ParseError("Parse error")
# Test rbrace returned with code 512. Expected failure
# All 1 tests were successful!
# ------------ [69] CC="gcc" make runall/structattr2 ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl structattr2.c
# Found test baseline with msg:
# Found test archspecific with msg:
# Found test const1 with msg:
# Found test const2 with msg:
#
# ********* structattr2: Running test archspecific from line 42
# Test archspecific:
# SUCCESS => 1
# LINE => 42
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=0
# 47: KEEP(const2): keep=0
# 51: IFTEST(archspecific): keep=1, env = 1,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.83MB, promoted=0.67MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# Test archspecific returned with code 0. Expected success
# Test archspecific (line 42) was successful
#
# ********* structattr2: Running test baseline from line 40
# Test baseline:
# SUCCESS => 1
# LINE => 40
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=0
# 47: KEEP(const2): keep=0
# 51: IFTEST(archspecific): keep=0, env = 0,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# Test baseline returned with code 0. Expected success
# Test baseline (line 40) was successful
#
# ********* structattr2: Running test const1 from line 45
# Test const1:
# SUCCESS => 0
# LINE => 45
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=1
# 47: KEEP(const2): keep=0
# 51: IFTEST(archspecific): keep=0, env = 0,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# ./structattr2-tmp.c: In function 'main':
# ./structattr2-tmp.c:45:9: error: increment of member 'a' in read-only object
# 45 | e.a++; //KEEP const1: error
# | ^~
# Test const1 returned with code 256. Expected failure
# Test const1 (line 45) was successful
#
# ********* structattr2: Running test const2 from line 47
# Test const2:
# SUCCESS => 0
# LINE => 47
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=0
# 47: KEEP(const2): keep=1
# 51: IFTEST(archspecific): keep=0, env = 0,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# ./structattr2-tmp.c: In function 'main':
# ./structattr2-tmp.c:47:10: error: increment of member 'a' in read-only object
# 47 | e2.a++; //KEEP const2: error
# | ^~
# Test const2 returned with code 256. Expected failure
# Test const2 (line 47) was successful
# All 4 tests were successful!
# ------------ [70] CC="gcc" make runall/switch ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl switch.c
# Found test baseline with msg:
# Found test dupDefault1 with msg:duplicate default
# Found test dupDefault2 with msg:duplicate default
#
# ********* switch: Running test baseline from line 4
# Test baseline:
# SUCCESS => 1
# LINE => 4
# MSG => ,
# MSGPATTERN => 0
# 12: KEEP(dupDefault1): keep=0
# 27: KEEP(dupDefault2): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.15MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./switch-tmp.c: In function 'foo':
# ./switch-tmp.c:9:13: warning: statement will never be executed [-Wswitch-unreachable]
# 9 | y = "who runs this?"[3];
# | ^~~~~~~~~~~~~~~~
# Result is: 171822
# Test baseline returned with code 0. Expected success
# Test baseline (line 4) was successful
#
# ********* switch: Running test dupDefault1 from line 12
# Test dupDefault1:
# SUCCESS => 0
# LINE => 12
# MSG => duplicate default,
# MSGPATTERN =>
# 12: KEEP(dupDefault1): keep=1
# 27: KEEP(dupDefault2): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
# ./switch-tmp.c:35: Error: Switch statement at ./switch-tmp.c:8 has duplicate default entries.
# Error in doStatement (GoblintCil__Errormsg.Error)
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# Test dupDefault1 returned with code 512. Expected failure
#
# ********* switch: Running test dupDefault2 from line 27
# Test dupDefault2:
# SUCCESS => 0
# LINE => 27
# MSG => duplicate default,
# MSGPATTERN =>
# 12: KEEP(dupDefault1): keep=0
# 27: KEEP(dupDefault2): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
# ./switch-tmp.c:35: Error: Switch statement at ./switch-tmp.c:8 has duplicate default entries.
# Error in doStatement (GoblintCil__Errormsg.Error)
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# Test dupDefault2 returned with code 512. Expected failure
# All 3 tests were successful!
# ------------ [71] CC="gcc" make scott-nogcc/bogus_redef ------------
# rm -f ./small2/bogus_redef.exe
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# bogus_redef.c \
# -obogus_redef.exe
# bash -c "time ./small2/bogus_redef.exe"
# ------------ [72] CC="gcc" make scott-nogcc/funcname ------------
# rm -f ./small2/funcname.exe
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# funcname.c \
# -ofuncname.exe
# bash -c "time ./small2/funcname.exe"
# __FUNCTION__ = main
# __PRETTY_FUNCTION__ = main
# ------------ [73] CC="gcc" make scott-nolink/brlock ------------
# rm -f ./small2/brlock.exe
# cd ./small2; gcc -c -Wall brlock.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge -c --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall --commPrintLn \
# brlock.c \
# -obrlock.exe
# ------------ [74] CC="gcc" make scott/arrayinit ------------
# rm -f ./small2/arrayinit.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall arrayinit.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# arrayinit.c \
# -oarrayinit.exe
# bash -c "time ./small2/arrayinit.exe"
# ------------ [75] (fail) CC="gcc" make scott/asmfndecl ------------
# rm -f ./small2/asmfndecl.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall asmfndecl.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# asmfndecl.c \
# -oasmfndecl.exe
# bash -c "time ./small2/asmfndecl.exe"
#
# [75] 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
# ------------ [76] CC="gcc" make scott/bisonerror ------------
# rm -f ./small2/bisonerror.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall bisonerror.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# bisonerror.c \
# -obisonerror.exe
# bash -c "time ./small2/bisonerror.exe"
# ------------ [77] CC="gcc" make scott/cmpzero ------------
# rm -f ./small2/cmpzero.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall cmpzero.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# cmpzero.c \
# -ocmpzero.exe
# bash -c "time ./small2/cmpzero.exe"
# i: 512
# c: 0
# no
# 2nd yes
# Success
# ------------ [78] CC="gcc" make scott/constdecl ------------
# rm -f ./small2/constdecl.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall constdecl.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# constdecl.c \
# -oconstdecl.exe
# bash -c "time ./small2/constdecl.exe"
# ------------ [79] CC="gcc" make scott/constfold ------------
# rm -f ./small2/constfold.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall constfold.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# constfold.c \
# -oconstfold.exe
# bash -c "time ./small2/constfold.exe"
# ------------ [80] CC="gcc" make scott/ctype ------------
# rm -f ./small2/ctype.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ctype.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# ctype.c \
# -octype.exe
# bash -c "time ./small2/ctype.exe"
# character: a
# decimal: 97
# isalpha: 1
# isdigit: 0
# character: 5
# decimal: 53
# isalpha: 0
# isdigit: 1
# character: $
# decimal: 36
# isalpha: 0
# isdigit: 0
# character: Z
# ...TRUNCATED BY DUNE...
# echo SUCCESS
# SUCCESS
# ------------ [331] CC="gcc" make testrun/label1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel1.exe label1.c
# cd ./small1; ./label1.exe
# echo SUCCESS
# SUCCESS
# ------------ [332] CC="gcc" make testrun/label2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel2.exe label2.c
# cd ./small1; ./label2.exe
# echo SUCCESS
# SUCCESS
# ------------ [333] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel2b.exe label2b.c
# cd ./small1; ./label2b.exe
# echo SUCCESS
# SUCCESS
# ------------ [334] CC="gcc" make testrun/label3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel3.exe label3.c
# cd ./small1; ./label3.exe
# echo SUCCESS
# SUCCESS
# ------------ [335] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --noMakeStaticGlobal --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel3b.exe label3b.c
# cd ./small1; ./label3b.exe
# echo SUCCESS
# SUCCESS
# ------------ [336] CC="gcc" make testrun/label4 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel4.exe label4.c
# cd ./small1; ./label4.exe
# echo SUCCESS
# SUCCESS
# ------------ [337] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel4b.exe label4b.c
# cd ./small1; ./label4b.exe
# echo SUCCESS
# SUCCESS
# ------------ [338] CC="gcc" make testrun/label6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel6.exe label6.c
# cd ./small1; ./label6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [339] CC="gcc" make testrun/land_expr ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oland_expr.exe land_expr.c
# cd ./small1; ./land_expr.exe
# echo SUCCESS
# SUCCESS
# ------------ [340] CC="gcc" make testrun/large_unsigned_long ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olarge_unsigned_long.exe large_unsigned_long.c
# cd ./small1; ./large_unsigned_long.exe
# echo SUCCESS
# SUCCESS
# ------------ [341] CC="gcc" make testrun/linux_signal ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olinux_signal.exe linux_signal.c
# cd ./small1; ./linux_signal.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [342] CC="gcc" make testrun/localinit ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olocalinit.exe localinit.c
# cd ./small1; ./localinit.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [343] CC="gcc" make testrun/logical ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological.exe logical.c
# cd ./small1; ./logical.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [344] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological1.exe logical1.c
# cd ./small1; ./logical1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [345] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological2.exe logical2.c
# cd ./small1; ./logical2.exe
# echo SUCCESS
# SUCCESS
# ------------ [346] CC="gcc" make testrun/longBlock ------------
# ocamlfind ocamlc -I /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../../install/default/lib/goblint-cil -I /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../_build/src -package zarith unix.cma str.cma zarith.cma \
# goblintCil.cma \
# -o small1/longBlock.exe small1/longBlock.ml
# small1/longBlock.exe
# echo SUCCESS
# SUCCESS
# ------------ [347] CC="gcc" make testrun/lval1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olval1.exe lval1.c
# cd ./small1; ./lval1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [348] CC="gcc" make testrun/macro_hidden ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omacro_hidden.exe macro_hidden.c
# cd ./small1; ./macro_hidden.exe
# echo SUCCESS
# SUCCESS
# ------------ [349] CC="gcc" make testrun/math1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omath1.exe math1.c
# cd ./small1; ./math1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [350] CC="gcc" make testrun/memcpy1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omemcpy1.exe memcpy1.c
# cd ./small1; ./memcpy1.exe
# echo SUCCESS
# SUCCESS
# ------------ [351] CC="gcc" make testrun/min ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omin.exe min.c
# cd ./small1; ./min.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [352] CC="gcc" make testrun/msvc1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omsvc1.exe msvc1.c
# cd ./small1; ./msvc1.exe
# echo SUCCESS
# SUCCESS
# ------------ [353] CC="gcc" make testrun/msvc5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omsvc5.exe msvc5.c
# cd ./small1; ./msvc5.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [354] CC="gcc" make testrun/nan-global ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -onan-global.exe nan-global.c
# cd ./small1; ./nan-global.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [355] CC="gcc" make testrun/offsetof ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof.exe offsetof.c
# cd ./small1; ./offsetof.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [356] CC="gcc" make testrun/offsetof1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof1.exe offsetof1.c
# cd ./small1; ./offsetof1.exe
# echo SUCCESS
# SUCCESS
# ------------ [357] CC="gcc" make testrun/offsetof2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof2.exe offsetof2.c
# cd ./small1; ./offsetof2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [358] CC="gcc" make testrun/offsetof3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof3.exe offsetof3.c
# cd ./small1; ./offsetof3.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [359] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -opacked.exe packed.c
# cd ./small1; ./packed.exe
# sizeof(foo) = 9.
# echo SUCCESS
# SUCCESS
# ------------ [360] CC="gcc" make testrun/percent400 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opercent400.exe percent400.c
# cd ./small1; ./percent400.exe
# echo SUCCESS
# SUCCESS
# ------------ [361] CC="gcc" make testrun/percentm ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opercentm.exe percentm.c
# cd ./small1; ./percentm.exe
# echo SUCCESS
# SUCCESS
# ------------ [362] CC="gcc" make testrun/perror ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -operror.exe perror.c
# cd ./small1; ./perror.exe
# echo SUCCESS
# SUCCESS
# ------------ [363] CC="gcc" make testrun/perror1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -operror1.exe perror1.c
# cd ./small1; ./perror1.exe
# echo SUCCESS
# SUCCESS
# ------------ [364] (fail) CC="gcc" make testrun/post-assign ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opost-assign.exe post-assign.c
# cd ./small1; ./post-assign.exe
# Error 1
# ------------ [365] CC="gcc" make testrun/printf2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oprintf2.exe printf2.c
# cd ./small1; ./printf2.exe
# The buffer is: 7.75
# Success
# echo SUCCESS
# SUCCESS
# ------------ [366] CC="gcc" make testrun/question ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion.exe question.c
# cd ./small1; ./question.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [367] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion-fold-float.exe question-fold-float.c
# cd ./small1; ./question-fold-float.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [368] CC="gcc" make testrun/question2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion2.exe question2.c
# cd ./small1; ./question2.exe
# 5
# echo SUCCESS
# SUCCESS
# ------------ [369] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion3.exe question3.c
# cd ./small1; ./question3.exe
# echo SUCCESS
# SUCCESS
# ------------ [370] CC="gcc" make testrun/return1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturn1.exe return1.c
# cd ./small1; ./return1.exe
# echo SUCCESS
# SUCCESS
# ------------ [371] CC="gcc" make testrun/returnvoid ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturnvoid.exe returnvoid.c
# cd ./small1; ./returnvoid.exe
# echo SUCCESS
# SUCCESS
# ------------ [372] CC="gcc" make testrun/returnvoid1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturnvoid1.exe returnvoid1.c
# cd ./small1; ./returnvoid1.exe
# echo SUCCESS
# SUCCESS
# ------------ [373] (fail) CC="gcc" make testrun/rmUnused-attr ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused-attr.exe rmUnused-attr.c
# ------------ [374] CC="gcc" make testrun/rmUnused1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused1.exe rmUnused1.c
# cd ./small1; ./rmUnused1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [375] CC="gcc" make testrun/rmUnused2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused2.exe rmUnused2.c
# cd ./small1; ./rmUnused2.exe
# echo SUCCESS
# SUCCESS
# ------------ [376] CC="gcc" make testrun/scope1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope1.exe scope1.c
# cd ./small1; ./scope1.exe
# echo SUCCESS
# SUCCESS
# ------------ [377] CC="gcc" make testrun/scope10 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope10.exe scope10.c
# cd ./small1; ./scope10.exe
# echo SUCCESS
# SUCCESS
# ------------ [378] CC="gcc" make testrun/scope11 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope11.exe scope11.c
# cd ./small1; ./scope11.exe
# echo SUCCESS
# SUCCESS
# ------------ [379] CC="gcc" make testrun/scope5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope5.exe scope5.c
# cd ./small1; ./scope5.exe
# echo SUCCESS
# SUCCESS
# ------------ [380] CC="gcc" make testrun/scope6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope6.exe scope6.c
# cd ./small1; ./scope6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [381] CC="gcc" make testrun/scope8 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope8.exe scope8.c
# cd ./small1; ./scope8.exe
# echo SUCCESS
# SUCCESS
# ------------ [382] CC="gcc" make testrun/scope9 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope9.exe scope9.c
# cd ./small1; ./scope9.exe
# echo SUCCESS
# SUCCESS
# ------------ [383] CC="gcc" make testrun/semicolon ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osemicolon.exe semicolon.c
# cd ./small1; ./semicolon.exe
# echo SUCCESS
# SUCCESS
# ------------ [384] CC="gcc" make testrun/simon6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osimon6.exe simon6.c
# cd ./small1; ./simon6.exe
# 10
# [0:1][1:4][2:7][3:0][4:3][5:6][6:9][7:2][8:5][9:8]echo SUCCESS
# SUCCESS
# ------------ [385] CC="gcc" make testrun/sizeof1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osizeof1.exe sizeof1.c
# cd ./small1; ./sizeof1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [386] CC="gcc" make testrun/sizeof2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osizeof2.exe sizeof2.c
# cd ./small1; ./sizeof2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [387] CC="gcc" make testrun/static ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostatic.exe static.c
# cd ./small1; ./static.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [388] CC="gcc" make testrun/static2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostatic2.exe static2.c
# cd ./small1; ./static2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [389] CC="gcc" make testrun/stringsize ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostringsize.exe stringsize.c
# cd ./small1; ./stringsize.exe
# 11
# Success
# echo SUCCESS
# SUCCESS
# ------------ [390] CC="gcc" make testrun/strloop ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostrloop.exe strloop.c
# cd ./small1; ./strloop.exe
# foo
# Success
# echo SUCCESS
# SUCCESS
# ------------ [391] CC="gcc" make testrun/strloop3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostrloop3.exe strloop3.c
# cd ./small1; ./strloop3.exe
# aaa
# Success
# echo SUCCESS
# SUCCESS
# ------------ [392] CC="gcc" make testrun/struct1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostruct1.exe struct1.c
# cd ./small1; ./struct1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [393] CC="gcc" make testrun/typeof1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -otypeof1.exe typeof1.c
# cd ./small1; ./typeof1.exe
# sizeof(foo) = 1 (CIL) and 1 (Compiler)
# sizeof(afun) = 1 (CIL) and 1 (Compiler)
# sizeof("a long string") = 14 (CIL) and 14 (Compiler)
# sizeof(str) = 14 (CIL) and 14 (Compiler)
# sizeof(arr) = 36 (CIL) and 36 (Compiler)
# sizeof(barr) = 36 (CIL) and 36 (Compiler)
# sizeof(funp) = 8 (CIL) and 8 (Compiler)
# __alignof("a string") = 1 (CIL) and 1 (Compiler)
# __alignof(str) = 1 (CIL) and 1 (Compiler)
# __alignof(foo) = 1 (CIL) and 1 (Compiler)
# __alignof(afun) = 1 (CIL) and 1 (Compiler)
# __alignof(arr) = 4 (CIL) and 4 (Compiler)
# __alignof(barr) = 4 (CIL) and 4 (Compiler)
# __alignof(funp) = 8 (CIL) and 8 (Compiler)
# echo SUCCESS
# SUCCESS
# ------------ [394] (fail) CC="gcc" make testrun/typespec1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -otypespec1.exe typespec1.c
# ------------ [395] CC="gcc" make testrun/union2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion2.exe union2.c
# cd ./small1; ./union2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [396] CC="gcc" make testrun/union3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion3.exe union3.c
# cd ./small1; ./union3.exe
# Offset of large in TEST_STRUCT is 0. Expected 0
# Offset of i1 in TEST_STRUCT is 40. Expected 40
# Offset of i2 in TEST_STRUCT is 40. Expected 40
# Offset of i3 in TEST_STRUCT is 44. Expected 44
# Offset of a in TEST_STRUCT is 48. Expected 48
# Offset of u1 in TEST_STRUCT is 52. Expected 52
# Offset of u2 in TEST_STRUCT is 52. Expected 52
# Offset of f1 in TEST_STRUCT is 52. Expected 52
# Offset of f2 in TEST_STRUCT is 56. Expected 56
# Offset of b in TEST_STRUCT is 60. Expected 60
# Success
# echo SUCCESS
# SUCCESS
# ------------ [397] (fail) CC="gcc" make testrun/union6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion6.exe union6.c
# cd ./small1; ./union6.exe
# Error 1
# ------------ [398] CC="gcc" make testrun/va-arg-1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-1.exe va-arg-1.c
# cd ./small1; ./va-arg-1.exe
# echo SUCCESS
# SUCCESS
# ------------ [399] CC="gcc" make testrun/va-arg-2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-2.exe va-arg-2.c
# cd ./small1; ./va-arg-2.exe
# echo SUCCESS
# SUCCESS
# ------------ [400] CC="gcc" make testrun/va-arg-7 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-7.exe va-arg-7.c
# cd ./small1; ./va-arg-7.exe
# echo SUCCESS
# SUCCESS
# ------------ [401] CC="gcc" make testrun/var_named_hidden ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovar_named_hidden.exe var_named_hidden.c
# cd ./small1; ./var_named_hidden.exe
# echo SUCCESS
# SUCCESS
# ------------ [402] CC="gcc" make testrun/vararg1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg1.exe vararg1.c
# cd ./small1; ./vararg1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [403] CC="gcc" make testrun/vararg2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg2.exe vararg2.c
# cd ./small1; ./vararg2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [404] CC="gcc" make testrun/vararg3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg3.exe vararg3.c
# cd ./small1; ./vararg3.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [405] CC="gcc" make testrun/vararg4 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg4.exe vararg4.c
# cd ./small1; ./vararg4.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [406] CC="gcc" make testrun/vararg5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg5.exe vararg5.c
# cd ./small1; ./vararg5.exe
# Should be 5 5.0 10.0: 5 5.0 10.0
# Success
# echo SUCCESS
# SUCCESS
# ------------ [407] CC="gcc" make testrun/vararg6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg6.exe vararg6.c
# cd ./small1; ./vararg6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [408] CC="gcc" make testrun/varargauto1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovarargauto1.exe varargauto1.c
# cd ./small1; ./varargauto1.exe
# An_int: 5
# An_str: hello
# An_str: world
# An_intptr: 64dc06ec (1)
# Success
# echo SUCCESS
# SUCCESS
# ------------ [409] CC="gcc" make testrun/void ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovoid.exe void.c
# cd ./small1; ./void.exe
# wow
# yippie!
# echo SUCCESS
# SUCCESS
# ------------ [410] CC="gcc" make testrun/voidarg ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovoidarg.exe voidarg.c
# cd ./small1; ./voidarg.exe
# hello, nice to meet you.
# echo SUCCESS
# SUCCESS
# ------------ [411] CC="gcc" make testrun/vsp ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovsp.exe vsp.c
# cd ./small1; ./vsp.exe
# Hello, world! 2+2=4
#
# echo SUCCESS
# SUCCESS
# ------------ [412] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -owarnings-unused-label.exe warnings-unused-label.c
# cd ./small1; ./warnings-unused-label.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [413] CC="gcc" make testrun/wchar1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar1.exe wchar1.c
# cd ./small1; ./wchar1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [414] CC="gcc" make testrun/wchar2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar2.exe wchar2.c
# cd ./small1; ./wchar2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [415] CC="gcc" make testrun/wchar3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar3.exe wchar3.c
# cd ./small1; ./wchar3.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [416] CC="gcc" make testrun/wchar4 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar4.exe wchar4.c
# cd ./small1; ./wchar4.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [417] CC="gcc" make testrun/wchar5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar5.exe wchar5.c
# cd ./small1; ./wchar5.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [418] CC="gcc" make testrun/wchar6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar6.exe wchar6.c
# cd ./small1; ./wchar6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [419] CC="gcc" make testrun/wchar7 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar7.exe wchar7.c
# cd ./small1; ./wchar7.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [420] (fail) CC="gcc" make testrun/wrongnumargs ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owrongnumargs.exe wrongnumargs.c
# ------------ [421] CC="gcc" make testrunc11/c11-align-of ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-align-of.exe c11-align-of.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-align-of.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [422] CC="gcc" make testrunc11/c11-atomic ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-atomic.exe c11-atomic.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-atomic.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [423] CC="gcc" make testrunc11/c11-atomic-store ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-atomic-store.exe c11-atomic-store.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-atomic-store.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [424] CC="gcc" make testrunc11/c11-caserange ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-caserange.exe c11-caserange.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-caserange.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [425] CC="gcc" make testrunc11/c11-extendedFloat ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-extendedFloat.exe c11-extendedFloat.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-extendedFloat.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [426] CC="gcc" make testrunc11/c11-generic ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-generic.exe c11-generic.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-generic.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [427] CC="gcc" make testrunc11/c11-noreturn ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-noreturn.exe c11-noreturn.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-noreturn.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [428] CC="gcc" make testrunc11/c11-static-assert ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-static-assert.exe c11-static-assert.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-static-assert.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [429] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -ogcc-c11-generic-1.exe gcc-c11-generic-1.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./gcc-c11-generic-1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [430] CC="gcc" make testrunc99/c99-bool ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-bool.exe c99-bool.c -lm
# cd ./small1; ./c99-bool.exe
# echo SUCCESS
# SUCCESS
# ------------ [431] CC="gcc" make testrunc99/c99-complex ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-complex.exe c99-complex.c -lm
# cd ./small1; ./c99-complex.exe
# I * I = 1.0+1.0i
# pow(I, 2) = -1.0+0.0i
# exp(I*PI) = -1.0+0.1i
# (1+2i)*(1-2i) = 5.0+0.0i
# I * I = 1.0+1.0i
# pow(I, 2) = -1.0+0.0i
# exp(I*PI) = -1.0+0.1i
# (1+2i)*(1-2i) = 5+0i
# echo SUCCESS
# SUCCESS
# ------------ [432] CC="gcc" make testrunc99/c99-fixed-width-int ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-fixed-width-int.exe c99-fixed-width-int.c -lm
# cd ./small1; ./c99-fixed-width-int.exe
# echo SUCCESS
# SUCCESS
# ------------ [433] CC="gcc" make testrunc99/c99-float-pragma ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-float-pragma.exe c99-float-pragma.c -lm
# cd ./small1; ./c99-float-pragma.exe
# echo SUCCESS
# SUCCESS
# ------------ [434] CC="gcc" make testrunc99/c99-predefined ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-predefined.exe c99-predefined.c -lm
# cd ./small1; ./c99-predefined.exe
# c99-predefined.c
# 5
# main
# Mar 2 2026
# 11:52:01
# 199901
# echo SUCCESS
# SUCCESS
# ------------ [435] CC="gcc" make testrunc99/c99-struct ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-struct.exe c99-struct.c -lm
# cd ./small1; ./c99-struct.exe
# echo SUCCESS
# SUCCESS
# ------------ [436] CC="gcc" make testrunc99/c99-tgmath ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-tgmath.exe c99-tgmath.c -lm
# cd ./small1; ./c99-tgmath.exe
# echo SUCCESS
# SUCCESS
# ------------ [437] CC="gcc" make testrunc99/c99-tgmath2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-tgmath2.exe c99-tgmath2.c -lm
# cd ./small1; ./c99-tgmath2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [438] CC="gcc" make testrunc99/c99-universal-character-names ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-universal-character-names.exe c99-universal-character-names.c -lm
# cd ./small1; ./c99-universal-character-names.exe
# echo SUCCESS
# SUCCESS
# ------------ [439] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck -O2 --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -obuiltin_object_size.exe builtin_object_size.c
# cd ./small1; ./builtin_object_size.exe
# echo SUCCESS
# SUCCESS
# ------------ [440] CC="gcc" make testrungcc/enum3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3.exe enum3.c
# cd ./small1; ./enum3.exe
# echo SUCCESS
# SUCCESS
# ------------ [441] CC="gcc" make testrungcc/enum3a ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3a.exe enum3a.c
# cd ./small1; ./enum3a.exe
# echo SUCCESS
# SUCCESS
# ------------ [442] CC="gcc" make testrungcc/enum3b ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3b.exe enum3b.c
# cd ./small1; ./enum3b.exe
# echo SUCCESS
# SUCCESS
# ------------ [443] (fail) CC="gcc" make testrungcc/enum3c ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3c.exe enum3c.c
# ------------ [444] CC="gcc" make testrungcc/enum3d ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3d.exe enum3d.c
# cd ./small1; ./enum3d.exe
# echo SUCCESS
# SUCCESS
# ------------ [445] CC="gcc" make testrungcc/enum3e ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3e.exe enum3e.c
# cd ./small1; ./enum3e.exe
# echo SUCCESS
# SUCCESS
# ------------ [446] CC="gcc" make testrungcc/enum3f ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3f.exe enum3f.c
# cd ./small1; ./enum3f.exe
# echo SUCCESS
# SUCCESS
# ------------ [447] CC="gcc" make testrungcc/enum3g ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3g.exe enum3g.c
# cd ./small1; ./enum3g.exe
# echo SUCCESS
# SUCCESS
# ------------ [448] CC="gcc" make testrungcc/enum3h ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3h.exe enum3h.c
# cd ./small1; ./enum3h.exe
# echo SUCCESS
# SUCCESS
# ------------ [449] CC="gcc" make testrungcc/enum3i ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3i.exe enum3i.c
# cd ./small1; ./enum3i.exe
# echo SUCCESS
# SUCCESS
# ------------ [450] CC="gcc" make testrungcc/enum3j ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3j.exe enum3j.c
# cd ./small1; ./enum3j.exe
# echo SUCCESS
# SUCCESS
# ------------ [451] CC="gcc" make testrungcc/enum3k ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3k.exe enum3k.c
# cd ./small1; ./enum3k.exe
# echo SUCCESS
# SUCCESS
# ------------ [452] CC="gcc" make testrungcc/enum3l ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3l.exe enum3l.c
# cd ./small1; ./enum3l.exe
# echo SUCCESS
# SUCCESS
#
# Successful tests: 407
# Failed as expected: 38
# Unexpected success: 4
# Unexpected failure: 4
#
# [75] 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
# [87] 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
# [91] A regression test command failed:
# CC=gcc make scott/kernel1
# [99] A regression test command failed:
# CC=gcc make scott/neg64
# [104] 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
# [113] A regression test command failed:
# CC=gcc make scott/typeof
# [114] A regression test command failed:
# CC=gcc make scott/uninit_tmp
# [206] 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
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# Linking into library array.a
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.003 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.52MB, max=1.94MB, minor=7.34MB, major=1.31MB, promoted=1.13MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# combine1_1.c:10:13: warning: conflicting types for built-in function 'printf'; expected 'int(const char *, ...)' [-Wbuiltin-declaration-mismatch]
# 10 | extern void printf(char *, ...);
# | ^~~~~~
# combine1_1.c:1:1: note: 'printf' is declared in header '<stdio.h>'
# +++ |+#include <stdio.h>
# 1 | typedef int INT;
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine1_3.c: In function 'c3':
# combine1_3.c:10:7: warning: variable 'var' set but not used [-Wunused-but-set-variable]
# 10 |
# | ^
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine11_2.c:17: Warning: Calling function f1 without prototype.
# combine11_2.c:18: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine11_2.c: In function 'main':
# combine11_2.c:17:8: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
# 17 | void *v1 = f1(); /* Without prototype */
# | ^
# combine11_2.c:20:9: warning: variable 'v2' set but not used [-Wunused-but-set-variable]
# combine11_2.c:18:9: warning: variable 'v1' set but not used [-Wunused-but-set-variable]
# 18 | void *v2 = f2();
# | ^~
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine13_2.c: In function 'main':
# combine13_2.c:11:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct foo *' [-Wformat=]
# 11 | printf("Address is %x\n", &g); /* Make sure we use g */
# | ^~~~~~~~~~~~~~~~~ ~~~
# | |
# | struct foo *
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine15_1.c:36: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# combine15_1.c:10:18: warning: built-in function 'y1' declared as non-function [-Wbuiltin-declaration-mismatch]
# 10 | } y1;
# | ^
# combine15_1.c: In function 'main':
# combine15_1.c:34:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct s1 *' [-Wformat=]
# 34 | printf("Address of x1=%x and x2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct s1 *
# combine15_1.c:34:24: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'struct s11 *' [-Wformat=]
# 34 | printf("Address of x1=%x and x2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct s11 *
# combine15_1.c:36:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct d1 *' [-Wformat=]
# 36 | printf("Address of y1=%x and y2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct d1 *
# combine15_1.c:36:24: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'struct d11 *' [-Wformat=]
# 36 | printf("Address of y1=%x and y2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct d11 *
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine15_2.c:7:11: warning: built-in function 'y1' declared as non-function [-Wbuiltin-declaration-mismatch]
# 7 | } y2, y1; /* Constrain both d11 and d1 to be isomorphic */
# | ^~
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine17_2.c:7: Warning: Calling function read without prototype.
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine2_3.c:6: Warning: Calling function f1 without prototype.
# combine2_3.c:7: Warning: Calling function f2 without prototype.
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine20_2.c: In function 'main':
# combine20_2.c:14:9: warning: variable 'path' set but not used [-Wunused-but-set-variable]
# 14 | char *path = tmp.s; // This will be changed to tmp___0.s !!!
# | ^~~~
# combine20_2.c:13:7: warning: variable 'tmp___0' set but not used [-Wunused-but-set-variable]
# 13 | // new global
# | ^
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine22_1.c: In function 'other':
# combine22_1.c:7:24: error: invalid application of 'sizeof' to incomplete type 'struct empty'
# 7 | return (sizeof(struct empty));
# | ^~~~~~
# combine22_1.c:9:1: warning: control reaches end of non-void function [-Wreturn-type]
# make: *** [Makefile:284: combine22] Error 1
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine3_2.c: In function 'main2':
# combine3_2.c:14:8: warning: variable 'd' set but not used [-Wunused-but-set-variable]
# 14 | return 0;
# | ^
# combine3_3.c:13: Warning: Calling function main2 without prototype.
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# combine5_1.c: In function 'main':
# combine5_1.c:7:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct __anonstruct_TimeOuts_971210525 *' [-Wformat=]
# 7 | printf("Address of TimeOuts=%x\n", &TimeOuts);
# | ^~~~~~~~~~~~~~~~~~~~~~~~~
# | |
# | struct __anonstruct_TimeOuts_971210525 *
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.23MB, max=1.46MB, minor=4.19MB, major=0.65MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# make: *** [Makefile:285: combine9] Error 1
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_copyptrs_1.c:2: Warning: Body of function copyptrs falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_copyptrs_2.c:43: Warning: Body of function copyptrs falls-through. Adding a return statement
# combine_copyptrs_2.c:75: Warning: Body of function copyptrs___0 falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.52MB, minor=4.19MB, major=0.84MB, promoted=0.67MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_node_alloc_2.c: In function 'main':
# combine_node_alloc_2.c:13:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 13 | return (int)( list[0] );
# | ^
# /usr/bin/ld: ./combine_node_alloc_2.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_node_alloc_2.c:7: multiple definition of `list'; ./combine_node_alloc_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_node_alloc_1.c:7: first defined here
# collect2: error: ld returned 1 exit status
# make: *** [Makefile:284: combine_node_alloc] Error 1
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# /usr/bin/ld: ./combine_samefn_2.o: in function `foo':
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_2.c:5: multiple definition of `foo'; ./combine_samefn_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_1.c:11: first defined here
# /usr/bin/ld: ./combine_samefn_2.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_2.c:13: multiple definition of `myglobal'; ./combine_samefn_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_1.c:18: first defined here
# collect2: error: ld returned 1 exit status
# make: *** [Makefile:284: combine_samefn] Error 1
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine_sbump_2.c:17: Warning: Body of function foo falls-through. Adding a return statement
# combine_sbump_2.c:22: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# combine_sbumpB_3.c: In function 'sbump___0':
# combine_sbumpB_3.c:36:15: warning: variable 'tmp___4' set but not used [-Wunused-but-set-variable]
# 36 | char const *tmp___4;
# | ^~~~~~~
# combine_sbumpB_3.c: At top level:
# combine_sbumpB_3.c:48:5: warning: second argument of 'main' should be 'char **' [-Wmain]
# 48 | int main(int argc, char *argv)
# | ^~~~
# combine_sbumpB_3.c: In function 'sbump___0':
# combine_sbumpB_3.c:44:10: warning: 'tmp___3' is used uninitialized [-Wuninitialized]
# 44 | return (tmp___3);
# | ^
# combine_sbumpB_3.c:35:7: note: 'tmp___3' was declared here
# 35 | int tmp___3;
# | ^~~~~~~
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_theFunc_1.c:3: Warning: Body of function theFunc falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_theFunc_2.c:3: Warning: Body of function theFunc falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine_theFunc_3.c:12: Warning: Body of function sgetc___0 falls-through. Adding a return statement
# combine_theFunc_3.c:25: Warning: Body of function theFunc___0 falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.51MB, max=1.89MB, minor=7.34MB, major=1.29MB, promoted=1.12MB
# minor collections=5 major collections=3 compactions=0
# combinealias_2.c:4: Warning: Calling function foo without prototype.
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing combine-c99inline_1.c
# Saving source ./combine-c99inline_1.i into ./combine-c99inline_1.o
# Preprocessing combine-c99inline_2.c
# Saving source ./combine-c99inline_2.i into ./combine-c99inline_2.o
# Merging saved sources into combine-c99inline.exe_comb.o (in process of linking combine-c99inline.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5a25bc7fe4f8) App::Cilly::KeptFile=HASH(0x5a25bc2a1d18)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline_1.o
# Pre-merging (1) ./combine-c99inline_2.o
# Final merging phase (0): ./combine-c99inline_1.o
# Final merging phase (1): ./combine-c99inline_2.o
# First CIL check
# Checking file stdout
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# FILE */* __restrict */
# and FILE *
#
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# combine-c99inline_1.c:3: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# FILE */* __restrict */
# and FILE *
#
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# combine-c99inline_2.c:3: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# Finished checking file stdout
# Bug: CIL's internal data structures are inconsistent (see the warnings above). This may be a bug in CIL.
#
# printing file ./combine-c99inline.cil.c
# Error: Error while processing file; see above for details.
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:315: combinec99inline] Error 2
# Preprocessing combine-c99inline1_1.c
# Saving source ./combine-c99inline1_1.i into ./combine-c99inline1_1.o
# Preprocessing combine-c99inline1_2.c
# Saving source ./combine-c99inline1_2.i into ./combine-c99inline1_2.o
# Merging saved sources into combine-c99inline1.exe_comb.o (in process of linking combine-c99inline1.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5eea98aca758) App::Cilly::KeptFile=HASH(0x5eea985703b8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline1_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline1_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline1_1.o
# Pre-merging (1) ./combine-c99inline1_2.o
# Final merging phase (0): ./combine-c99inline1_1.o
# Final merging phase (1): ./combine-c99inline1_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline1.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline1.cil.c
# Compiling ./combine-c99inline1.cil.i into combine-c99inline1.exe_comb.o
# Preprocessing combine-c99inline2_1.c
# Saving source ./combine-c99inline2_1.i into ./combine-c99inline2_1.o
# Preprocessing combine-c99inline2_2.c
# Saving source ./combine-c99inline2_2.i into ./combine-c99inline2_2.o
# Merging saved sources into combine-c99inline2.exe_comb.o (in process of linking combine-c99inline2.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5b2a43ac27b8) App::Cilly::KeptFile=HASH(0x5b2a43566fb8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline2_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline2_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline2_1.o
# Pre-merging (1) ./combine-c99inline2_2.o
# Final merging phase (0): ./combine-c99inline2_1.o
# Final merging phase (1): ./combine-c99inline2_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline2.cil.c
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline2.cil.c
# Compiling ./combine-c99inline2.cil.i into combine-c99inline2.exe_comb.o
# Preprocessing combine-c99inline3_1.c
# Saving source ./combine-c99inline3_1.i into ./combine-c99inline3_1.o
# Preprocessing combine-c99inline3_2.c
# Saving source ./combine-c99inline3_2.i into ./combine-c99inline3_2.o
# Merging saved sources into combine-c99inline3.exe_comb.o (in process of linking combine-c99inline3.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x63962b431fb8) App::Cilly::KeptFile=HASH(0x63962aed6d48)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline3_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline3_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline3_1.o
# Pre-merging (1) ./combine-c99inline3_2.o
# Final merging phase (0): ./combine-c99inline3_1.o
# Final merging phase (1): ./combine-c99inline3_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline3.cil.c
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline3.cil.c
# Compiling ./combine-c99inline3.cil.i into combine-c99inline3.exe_comb.o
# Preprocessing combine-c99inline4_1.c
# Saving source ./combine-c99inline4_1.i into ./combine-c99inline4_1.o
# Preprocessing combine-c99inline4_2.c
# Saving source ./combine-c99inline4_2.i into ./combine-c99inline4_2.o
# Merging saved sources into combine-c99inline4.exe_comb.o (in process of linking combine-c99inline4.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5accd5b7c608) App::Cilly::KeptFile=HASH(0x5accd561fcf8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline4_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline4_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline4_1.o
# Pre-merging (1) ./combine-c99inline4_2.o
# Final merging phase (0): ./combine-c99inline4_1.o
# Final merging phase (1): ./combine-c99inline4_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline4.cil.c
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline4.cil.c
# Compiling ./combine-c99inline4.cil.i into combine-c99inline4.exe_comb.o
# Preprocessing combine-c99inline5_1.c
# Saving source ./combine-c99inline5_1.i into ./combine-c99inline5_1.o
# Preprocessing combine-c99inline5_2.c
# Saving source ./combine-c99inline5_2.i into ./combine-c99inline5_2.o
# Merging saved sources into combine-c99inline5.exe_comb.o (in process of linking combine-c99inline5.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5bfe4f7c1f20) App::Cilly::KeptFile=HASH(0x5bfe4f266c58)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline5_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline5_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline5_1.o
# Pre-merging (1) ./combine-c99inline5_2.o
# Final merging phase (0): ./combine-c99inline5_1.o
# Final merging phase (1): ./combine-c99inline5_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline5.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline5.cil.c
# Compiling ./combine-c99inline5.cil.i into combine-c99inline5.exe_comb.o
# Preprocessing combine-c99inline6_1.c
# Saving source ./combine-c99inline6_1.i into ./combine-c99inline6_1.o
# Preprocessing combine-c99inline6_2.c
# Saving source ./combine-c99inline6_2.i into ./combine-c99inline6_2.o
# Merging saved sources into combine-c99inline6.exe_comb.o (in process of linking combine-c99inline6.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5e356657d7d0) App::Cilly::KeptFile=HASH(0x5e3566022cb8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline6_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline6_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline6_1.o
# Pre-merging (1) ./combine-c99inline6_2.o
# Final merging phase (0): ./combine-c99inline6_1.o
# Final merging phase (1): ./combine-c99inline6_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline6.cil.c
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline6.cil.c
# Compiling ./combine-c99inline6.cil.i into combine-c99inline6.exe_comb.o
# Preprocessing combine-c99inline7_1.c
# Saving source ./combine-c99inline7_1.i into ./combine-c99inline7_1.o
# Preprocessing combine-c99inline7_2.c
# Saving source ./combine-c99inline7_2.i into ./combine-c99inline7_2.o
# Preprocessing combine-c99inline7_3.c
# Saving source ./combine-c99inline7_3.i into ./combine-c99inline7_3.o
# Merging saved sources into combine-c99inline7.exe_comb.o (in process of linking combine-c99inline7.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x565ccd1fd760) App::Cilly::KeptFile=HASH(0x565cccca3eb8) App::Cilly::KeptFile=HASH(0x565cccca5588)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline7_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline7_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline7_3.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline7_1.o
# Pre-merging (1) ./combine-c99inline7_2.o
# Pre-merging (2) ./combine-c99inline7_3.o
# Final merging phase (0): ./combine-c99inline7_1.o
# Final merging phase (1): ./combine-c99inline7_2.o
# Final merging phase (2): ./combine-c99inline7_3.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline7.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.42MB, max=1.69MB, minor=7.34MB, major=1.00MB, promoted=0.92MB
# minor collections=5 major collections=3 compactions=0
# Preprocessing ./combine-c99inline7.cil.c
# Compiling ./combine-c99inline7.cil.i into combine-c99inline7.exe_comb.o
# Preprocessing combine-c99inline8_1.c
# Saving source ./combine-c99inline8_1.i into ./combine-c99inline8_1.o
# Preprocessing combine-c99inline8_2.c
# Saving source ./combine-c99inline8_2.i into ./combine-c99inline8_2.o
# Preprocessing combine-c99inline8_3.c
# Saving source ./combine-c99inline8_3.i into ./combine-c99inline8_3.o
# Merging saved sources into combine-c99inline8.exe_comb.o (in process of linking combine-c99inline8.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5752ee2d7018) App::Cilly::KeptFile=HASH(0x5752edd7b098) App::Cilly::KeptFile=HASH(0x5752edd7c648)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline8_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline8_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline8_3.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline8_1.o
# Pre-merging (1) ./combine-c99inline8_2.o
# Pre-merging (2) ./combine-c99inline8_3.o
# Final merging phase (0): ./combine-c99inline8_1.o
# Final merging phase (1): ./combine-c99inline8_2.o
# Final merging phase (2): ./combine-c99inline8_3.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline8.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.42MB, max=1.69MB, minor=7.34MB, major=1.00MB, promoted=0.92MB
# minor collections=5 major collections=3 compactions=0
# Preprocessing ./combine-c99inline8.cil.c
# Compiling ./combine-c99inline8.cil.i into combine-c99inline8.exe_comb.o
# Preprocessing combine-c99inline9_1.c
# Saving source ./combine-c99inline9_1.i into ./combine-c99inline9_1.o
# Preprocessing combine-c99inline9_2.c
# Saving source ./combine-c99inline9_2.i into ./combine-c99inline9_2.o
# Merging saved sources into combine-c99inline9.exe_comb.o (in process of linking combine-c99inline9.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x62f4f21836b0) App::Cilly::KeptFile=HASH(0x62f4f1c28e98)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline9_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline9_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline9_1.o
# Pre-merging (1) ./combine-c99inline9_2.o
# Final merging phase (0): ./combine-c99inline9_1.o
# Final merging phase (1): ./combine-c99inline9_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline9.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# ...TRUNCATED BY DUNE...
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.81MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./stringsize.cil.c: In function 'main':
# ./stringsize.cil.c:115:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 115 | printf((char const *)"%d\n", sizeof("ertewrtert"));
# | ^~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.002 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.61MB, max=1.90MB, minor=9.44MB, major=1.31MB, promoted=1.14MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.004 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=11.64MB, max=2.25MB, minor=11.53MB, major=1.56MB, promoted=1.45MB
# minor collections=7 major collections=3 compactions=0
# ./strloop3.cil.c: In function 'BuildWord':
# ./strloop3.cil.c:15:9: warning: variable 'pch' set but not used [-Wunused-but-set-variable]
# 15 | char *pch ;
# | ^~~
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# typeof1.c:60: Warning: Calling function exit without prototype.
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.001 s
# convert to CIL 0.001 s
# printCIL 0.001 s
# Timing used
# Memory statistics: total=6.46MB, max=1.59MB, minor=6.29MB, major=0.97MB, promoted=0.80MB
# minor collections=4 major collections=2 compactions=0
# ./typeof1.cil.c:80:14: warning: conflicting types for built-in function 'exit'; expected 'void(int)' [-Wbuiltin-declaration-mismatch]
# 80 | extern int ( /* missing proto */ exit)() ;
# | ^~~~
# ./typeof1.cil.c:1:1: note: 'exit' is declared in header '<stdlib.h>'
# +++ |+#include <stdlib.h>
# 1 | /* Generated by Goblint-CIL v. 2.0.2 */
# ./typeof1.cil.c: In function 'main':
# ./typeof1.cil.c:110:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 110 | printf((char const *)"sizeof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:110:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 110 | printf((char const *)"sizeof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 111 | sizeof(foo));
# | ~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:122:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 122 | printf((char const *)"sizeof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___0) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:122:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 122 | printf((char const *)"sizeof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___0) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 123 | sizeof(afun));
# | ~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:160:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 160 | printf((char const *)"sizeof(\"a long string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 161 | sizeof(a___1) - 1UL, sizeof("a long string"));
# | ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:160:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 160 | printf((char const *)"sizeof(\"a long string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 161 | sizeof(a___1) - 1UL, sizeof("a long string"));
# | ~~~~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:198:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 198 | printf((char const *)"sizeof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___2) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:198:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 198 | printf((char const *)"sizeof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___2) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 199 | sizeof(str));
# | ~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:280:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 280 | printf((char const *)"sizeof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___3) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:280:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 280 | printf((char const *)"sizeof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___3) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 281 | sizeof(arr));
# | ~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:362:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 362 | printf((char const *)"sizeof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___4) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:362:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 362 | printf((char const *)"sizeof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___4) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 363 | sizeof(barr));
# | ~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:388:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 388 | printf((char const *)"sizeof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___5) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:388:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 388 | printf((char const *)"sizeof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___5) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 389 | sizeof(funp));
# | ~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:400:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 400 | printf((char const *)"__alignof(\"a string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 401 | sizeof(a___6) - 1UL, __alignof__("a string"));
# | ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:400:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 400 | printf((char const *)"__alignof(\"a string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 401 | sizeof(a___6) - 1UL, __alignof__("a string"));
# | ~~~~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:412:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 412 | printf((char const *)"__alignof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___7) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:412:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 412 | printf((char const *)"__alignof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___7) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 413 | __alignof__(str));
# | ~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:424:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 424 | printf((char const *)"__alignof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a___8) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:424:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 424 | printf((char const *)"__alignof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a___8) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 425 | __alignof__(foo));
# | ~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:436:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 436 | printf((char const *)"__alignof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___9) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:436:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 436 | printf((char const *)"__alignof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___9) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 437 | __alignof__(afun));
# | ~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:454:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 454 | printf((char const *)"__alignof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___10) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:454:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 454 | printf((char const *)"__alignof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___10) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 455 | __alignof__(arr));
# | ~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:472:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 472 | printf((char const *)"__alignof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___11) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:472:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 472 | printf((char const *)"__alignof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___11) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 473 | __alignof__(barr));
# | ~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:498:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 498 | printf((char const *)"__alignof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___12) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:498:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 498 | printf((char const *)"__alignof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___12) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 499 | __alignof__(funp));
# | ~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# typespec1.c:7: Error: Invalid combination of type specifiers
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:184: testrun/typespec1] Error 2
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=6.39MB, max=1.56MB, minor=6.29MB, major=0.86MB, promoted=0.76MB
# minor collections=4 major collections=2 compactions=0
# ./union3.cil.c: In function 'main':
# ./union3.cil.c:77:79: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 77 | printf((char const *)"Offset of large in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.large),
# | ^
# ./union3.cil.c:80:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 80 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.large) != 0) {
# | ^
# ./union3.cil.c:87:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 87 | printf((char const *)"Offset of i1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i1),
# | ^
# ./union3.cil.c:90:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 90 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i1) != 40) {
# | ^
# ./union3.cil.c:97:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 97 | printf((char const *)"Offset of i2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i2),
# | ^
# ./union3.cil.c:100:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 100 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i2) != 40) {
# | ^
# ./union3.cil.c:107:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 107 | printf((char const *)"Offset of i3 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.i3),
# | ^
# ./union3.cil.c:110:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 110 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.i3) != 44) {
# | ^
# ./union3.cil.c:117:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 117 | printf((char const *)"Offset of a in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->a),
# | ^
# ./union3.cil.c:120:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 120 | if ((int )(& ((TEST_STRUCT *)0)->a) != 48) {
# | ^
# ./union3.cil.c:127:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 127 | printf((char const *)"Offset of u1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.u1),
# | ^
# ./union3.cil.c:130:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 130 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.u1) != 52) {
# | ^
# ./union3.cil.c:137:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 137 | printf((char const *)"Offset of u2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.u2),
# | ^
# ./union3.cil.c:140:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 140 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.u2) != 52) {
# | ^
# ./union3.cil.c:147:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 147 | printf((char const *)"Offset of f1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f1),
# | ^
# ./union3.cil.c:150:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 150 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f1) != 52) {
# | ^
# ./union3.cil.c:157:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 157 | printf((char const *)"Offset of f2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f2),
# | ^
# ./union3.cil.c:160:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 160 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f2) != 56) {
# | ^
# ./union3.cil.c:167:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 167 | printf((char const *)"Offset of b in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->b),
# | ^
# ./union3.cil.c:170:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 170 | if ((int )(& ((TEST_STRUCT *)0)->b) != 60) {
# | ^
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# make: *** [Makefile:185: testrun/union6] Error 1
# va-arg-1.c:22: Warning: Body of function f falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.60MB, max=1.79MB, minor=9.44MB, major=1.24MB, promoted=1.08MB
# minor collections=6 major collections=3 compactions=0
# ./va-arg-2.cil.c:19:21: warning: conflicting types for built-in function 'strlen'; expected 'long unsigned int(const char *)' [-Wbuiltin-declaration-mismatch]
# 19 | extern unsigned int strlen(char const * ) ;
# | ^~~~~~
# ./va-arg-2.cil.c:1:1: note: 'strlen' is declared in header '<string.h>'
# +++ |+#include <string.h>
# 1 | /* Generated by Goblint-CIL v. 2.0.2 */
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.15MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# ./var_named_hidden.cil.c: In function 'main':
# ./var_named_hidden.cil.c:9:7: warning: variable 'hidden' set but not used [-Wunused-but-set-variable]
# 9 | int hidden ;
# | ^~~~~~
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.002 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.57MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.17MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.001 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.57MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.16MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.009 s
# parse 0.004 s
# convert to CIL 0.004 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=19.11MB, max=3.04MB, minor=18.87MB, major=2.49MB, promoted=2.25MB
# minor collections=11 major collections=4 compactions=0
# vararg3: Cucu Bau
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.56MB, max=1.90MB, minor=9.44MB, major=1.29MB, promoted=1.17MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.003 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=11.76MB, max=2.31MB, minor=11.53MB, major=1.75MB, promoted=1.52MB
# minor collections=7 major collections=3 compactions=0
# ./vararg5.cil.c: In function 'main':
# ./vararg5.cil.c:96:9: warning: variable 's' set but not used [-Wunused-but-set-variable]
# 96 | char *s ;
# | ^
# ./vararg5.cil.c:95:7: warning: variable 'y' set but not used [-Wunused-but-set-variable]
# 95 | int y ;
# | ^
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.83MB, promoted=0.66MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.002 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.56MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.17MB
# minor collections=6 major collections=3 compactions=0
# ./varargauto1.cil.c: In function 'main':
# ./varargauto1.cil.c:28:15: warning: variable 'py' set but not used [-Wunused-but-set-variable]
# 28 | struct foo *py ;
# | ^~
# ./varargauto1.cil.c: In function 'myva1':
# ./varargauto1.cil.c:100:26: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'long int' [-Wformat=]
# 100 | printf((char const *)"An_intptr: %x (%d)\n", (long )data___1, *data___1);
# | ^~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
# | |
# | long int
# First CIL check
# Timings:
# TOTAL 0.007 s
# parse 0.004 s
# convert to CIL 0.003 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=14.87MB, max=2.54MB, minor=14.68MB, major=1.94MB, promoted=1.74MB
# minor collections=9 major collections=4 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.51MB, max=1.89MB, minor=7.34MB, major=1.29MB, promoted=1.12MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.58MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.16MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# wchar3.c:5: Warning: Body of function check falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# wchar4.c:64: Warning: Truncating integer 416611827811 to 99
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.003 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=11.73MB, max=2.31MB, minor=11.53MB, major=1.75MB, promoted=1.55MB
# minor collections=7 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.53MB, max=1.89MB, minor=7.34MB, major=1.23MB, promoted=1.04MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.67MB, max=1.99MB, minor=9.44MB, major=1.35MB, promoted=1.11MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.60MB, max=1.89MB, minor=7.34MB, major=1.32MB, promoted=1.05MB
# minor collections=5 major collections=3 compactions=0
# wrongnumargs.c:11: Warning: Too few arguments in call to f.
# First CIL check
# wrongnumargs.c:11: Warning: CIL invariant broken: Not enough arguments
# Bug: CIL's internal data structures are inconsistent (see the warnings above). This may be a bug in CIL.
#
# Error: Error while processing file; see above for details.
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:184: testrun/wrongnumargs] Error 2
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# ./c11-align-of.cil.c: In function 'main':
# ./c11-align-of.cil.c:11:7: warning: variable 'x' set but not used [-Wunused-but-set-variable]
# 11 | int x ;
# | ^
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.52MB, minor=4.19MB, major=0.85MB, promoted=0.68MB
# minor collections=3 major collections=2 compactions=0
# ./c11-atomic-store.cil.c: In function 'main':
# ./c11-atomic-store.cil.c:17:14: warning: variable 'blub' set but not used [-Wunused-but-set-variable]
# 17 | atomic_int blub ;
# | ^~~~
# ./c11-atomic-store.cil.c:29:10: warning: 'ato' is used uninitialized [-Wuninitialized]
# 29 | blub = ato;
# | ^~~
# <built-in>: note: by argument 1 of type 'const volatile void *' to '__atomic_load_4' declared here
# ./c11-atomic-store.cil.c:15:14: note: 'ato' declared here
# 15 | atomic_int ato ;
# | ^~~
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.80MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./gcc-c11-generic-1.cil.c: In function 'main':
# ./gcc-c11-generic-1.cil.c:43:7: warning: variable 'cn' set but not used [-Wunused-but-set-variable]
# 43 | int cn ;
# | ^~
# c99-bool.c:15: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.001 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.50MB, max=1.73MB, minor=7.34MB, major=1.09MB, promoted=0.93MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.015 s
# parse 0.007 s
# convert to CIL 0.008 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=34.84MB, max=3.43MB, minor=34.60MB, major=2.83MB, promoted=2.59MB
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build goblint-cil 2.0.2
+-
- No changes have been performed
# minor collections=19 major collections=5 compactions=0
# ./c99-complex.cil.c: In function 'main':
# ./c99-complex.cil.c:135:19: warning: variable 'x00' set but not used [-Wunused-but-set-variable]
# 135 | _Complex double x00 ;
# | ^~~
# ./c99-complex.cil.c:133:19: warning: variable 'x0' set but not used [-Wunused-but-set-variable]
# 133 | _Complex double x0 ;
# | ^~
# ./c99-complex.cil.c: In function 'parsedebug':
# ./c99-complex.cil.c:272:5: warning: statement with no effect [-Wunused-value]
# 272 | cpowl((_Complex long double )1.0iF, (_Complex long double )2);
# | ^~~~~
# ./c99-complex.cil.c:277:5: warning: statement with no effect [-Wunused-value]
# 277 | cpow((_Complex double )1.0iF, (_Complex double )2);
# | ^~~~
# ./c99-complex.cil.c:282:5: warning: statement with no effect [-Wunused-value]
# 282 | cpow((_Complex double )1.0iF, (_Complex double )2);
# | ^~~~
# ./c99-complex.cil.c:285:5: warning: statement with no effect [-Wunused-value]
# 285 | cpow((_Complex double )1.0iF, (_Complex double )2);
# | ^~~~
# ./c99-complex.cil.c:258:7: warning: variable 'tmp' set but not used [-Wunused-but-set-variable]
# 258 | int tmp ;
# | ^~~
# c99-fixed-width-int.c:31: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=6.47MB, max=1.67MB, minor=6.29MB, major=0.95MB, promoted=0.78MB
# minor collections=4 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.004 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=14.91MB, max=2.65MB, minor=14.68MB, major=2.04MB, promoted=1.81MB
# minor collections=9 major collections=4 compactions=0
# ./c99-float-pragma.cil.c:22: warning: ignoring '#pragma STDC FENV_ACCESS' [-Wunknown-pragmas]
# 22 | #pragma STDC FENV_ACCESS OFF
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.002 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.49MB, max=1.73MB, minor=7.34MB, major=1.08MB, promoted=0.93MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.50MB, max=1.56MB, minor=7.34MB, major=0.99MB, promoted=0.82MB
# minor collections=5 major collections=3 compactions=0
# ./c99-struct.cil.c: In function 'foo':
# ./c99-struct.cil.c:45:15: warning: variable 'f2' set but not used [-Wunused-but-set-variable]
# 45 | struct fops f2 ;
# | ^~
# ./c99-struct.cil.c:44:36: warning: variable 'ar' set but not used [-Wunused-but-set-variable]
# 44 | struct __anonstruct_ar_109580352 ar[4] ;
# | ^~
# ./c99-struct.cil.c:42:7: warning: variable 'a' set but not used [-Wunused-but-set-variable]
# 42 | int a[6] ;
# | ^
# ./c99-struct.cil.c: In function 'main':
# ./c99-struct.cil.c:193:10: warning: variable 'sx' set but not used [-Wunused-but-set-variable]
# 193 | char **sx ;
# | ^~
# ./c99-struct.cil.c:189:16: warning: variable 'p1' set but not used [-Wunused-but-set-variable]
# 189 | struct point p1 ;
# | ^~
# treating long double constant 1.0l as double constant at c99-tgmath.c:12 (only relevant if first argument of CReal is used).
# treating long double constant 1.0l as double constant at c99-tgmath.c:37 (only relevant if first argument of CReal is used).
# First CIL check
# Timings:
# TOTAL 0.010 s
# parse 0.006 s
# convert to CIL 0.004 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=20.19MB, max=3.23MB, minor=19.92MB, major=2.65MB, promoted=2.38MB
# minor collections=12 major collections=5 compactions=0
# ./c99-tgmath.cil.c: In function 'main':
# ./c99-tgmath.cil.c:74:15: warning: variable 'idk3' set but not used [-Wunused-but-set-variable]
# 74 | long double idk3 ;
# | ^~~~
# ./c99-tgmath.cil.c:72:7: warning: variable 'j' set but not used [-Wunused-but-set-variable]
# 72 | int j ;
# | ^
# ./c99-tgmath.cil.c:70:7: warning: variable 'i' set but not used [-Wunused-but-set-variable]
# 70 | int i ;
# | ^
# ./c99-tgmath.cil.c:68:19: warning: variable 'idk2' set but not used [-Wunused-but-set-variable]
# 68 | _Complex double idk2 ;
# | ^~~~
# ./c99-tgmath.cil.c:66:19: warning: variable 'idk' set but not used [-Wunused-but-set-variable]
# 66 | _Complex double idk ;
# | ^~~
# ./c99-tgmath.cil.c:64:10: warning: variable 'f2d' set but not used [-Wunused-but-set-variable]
# 64 | double f2d ;
# | ^~~
# ./c99-tgmath.cil.c:61:9: warning: variable 'f2' set but not used [-Wunused-but-set-variable]
# 61 | float f2 ;
# | ^~
# First CIL check
# Timings:
# TOTAL 0.009 s
# parse 0.005 s
# convert to CIL 0.004 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=19.15MB, max=3.17MB, minor=18.87MB, major=2.61MB, promoted=2.34MB
# minor collections=11 major collections=4 compactions=0
# ./c99-tgmath2.cil.c: In function 'fun':
# ./c99-tgmath2.cil.c:34:7: warning: variable 'n1' set but not used [-Wunused-but-set-variable]
# 34 | int n1 ;
# | ^~
# ./c99-tgmath2.cil.c:32:7: warning: variable 'n0' set but not used [-Wunused-but-set-variable]
# 32 | int n0 ;
# | ^~
# c99-universal-character-names.c:3: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# ./c99-universal-character-names.cil.c: In function 'main':
# ./c99-universal-character-names.cil.c:8:9: warning: variable 'arr' set but not used [-Wunused-but-set-variable]
# 8 | char *arr ;
# | ^~~
# ./c99-universal-character-names.cil.c:7:7: warning: variable '\U000003b1' set but not used [-Wunused-but-set-variable]
# 7 | int \U000003b1 ;
# | ^~~~~~~~~~
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.81MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# enum3c.c:3: Error: Constant initializer 22 << 34 not an integer
# Error on A.ONLYTYPEDEF (GoblintCil__Errormsg.Error)
# enum3c.c:11: Error: Cannot resolve variable LARGE.
# enum3c.c:11: Error: global initializer
# error in createGlobal(magic2: enum3c.c:11): GoblintCil__Errormsg.Errorenum3c.c:17: Error: Cannot resolve variable TINY.
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:208: testrungcc/enum3c] Error 2
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# To update the current shell environment, run: eval $(opam env)
2026-03-02 11:52.04 ---> saved as "ccca9f37cad6a85b5c053493a126f933d90ee75a1700b5610f64cb1245306d2f"
/home/opam: (run (shell "opam reinstall --with-test --verbose goblint-cil.2.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'goblint-cil.2.0.2' && 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.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [goblint-cil.2.0.2: extract]
-> retrieved goblint-cil.2.0.2 (cached)
Processing 2/4: [goblint-cil: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "goblint-cil" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlyacc src/frontc/cparser.mly)
- 1 shift/reduce conflict, 1 reduce/reduce conflict.
- (cd _build/default/src && /home/opam/.opam/5.4/bin/cppo -V OCAML:5.4.0~beta1 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-193:
- 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 --showoutput))))
- (cd _build/default/test && ./testcil -r --regrtest --showoutput)
- Test infrastructure for CIL on linux
- There are 453 tests enabled
- ------------ [0] CC="gcc" make arcombine ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -c array1.c array2.c
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly \
- --mode=AR --merge --verbose crv array.a array1.o array2.o
- AR called with crv array.a array1.o array2.o
- a - array1.o
- a - array2.o
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -o matrix.exe array.a matrix.c
- cd ./small1; ./matrix.exe
- ------------ [1] CC="gcc" make baddef ------------
- cd ./small2; gcc baddef1.c baddef2.c -o baddef.exe \
- && ./baddef.exe
- size1: 8
- size2: 12
- (correct output is 8, then 12)
- rm -f ./small2/baddef.exe
- cd ./small2; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.c -c -o baddef1.o; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef2.c -c -o baddef2.o; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.o baddef2.o -obaddef.exe
- ./small2/baddef.exe
- size1: 8
- size2: 12
- (correct output is 8, then 12)
- ------------ [2] CC="gcc" make comb ------------
- rm -f ./small2/comb.exe
- cd ./small2; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c -c -o comb1.o; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb2.c -c -o comb2.o; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb3.c -c -o comb3.o; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb4.c -c -o comb4.o; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.o comb2.o comb3.o comb4.o -ocomb.exe
- ./small2/comb.exe
- foo_com3(6): 19
- foo2_com4(61): 70
- ------------ [3] CC="gcc" make combine1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine1_1.c combine1_2.c combine1_3.c \
- -ocombine1.exe
- cd ./small1; ./combine1.exe
- Success
- ------------ [4] CC="gcc" make combine10 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine10_1.c combine10_2.c combine10_3.c \
- -ocombine10.exe
- cd ./small1; ./combine10.exe
- Success
- ------------ [5] CC="gcc" make combine11 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine11_1.c combine11_2.c \
- -ocombine11.exe
- cd ./small1; ./combine11.exe
- ------------ [6] CC="gcc" make combine12 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine12_1.c combine12_2.c \
- -ocombine12.exe
- cd ./small1; ./combine12.exe
- ------------ [7] CC="gcc" make combine13 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine13_1.c combine13_2.c \
- -ocombine13.exe
- cd ./small1; ./combine13.exe
- Address is 7e930040
- Success
- ------------ [8] CC="gcc" make combine14 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine14_1.c combine14_2.c \
- -ocombine14.exe
- cd ./small1; ./combine14.exe
- Success
- ------------ [9] CC="gcc" make combine15 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine15_1.c combine15_2.c \
- -ocombine15.exe
- cd ./small1; ./combine15.exe
- Address of x1=9d983060 and x2=9d983050
- Address of y1=9d983058 and y2=9d983068
- ------------ [10] CC="gcc" make combine16 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine16_1.c combine16_2.c \
- -ocombine16.exe
- cd ./small1; ./combine16.exe
- ------------ [11] CC="gcc" make combine17 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine17_1.c combine17_2.c \
- -ocombine17.exe
- cd ./small1; ./combine17.exe
- Success
- ------------ [12] CC="gcc" make combine18 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine18_1.c combine18_2.c \
- -ocombine18.exe
- cd ./small1; ./combine18.exe
- Success
- ------------ [13] CC="gcc" make combine2 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine2_1.c combine2_2.c combine2_3.c \
- -ocombine2.exe
- cd ./small1; ./combine2.exe
- Success
- ------------ [14] CC="gcc" make combine20 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine20_1.c combine20_2.c \
- -ocombine20.exe
- cd ./small1; ./combine20.exe
- ------------ [15] CC="gcc" make combine21 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine21_1.c combine21_2.c \
- -ocombine21.exe
- cd ./small1; ./combine21.exe
- ------------ [16] (fail) CC="gcc" make combine22 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine22_1.c combine22_2.c \
- -ocombine22.exe
- ------------ [17] CC="gcc" make combine3 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine3_1.c combine3_2.c combine3_3.c \
- -ocombine3.exe
- cd ./small1; ./combine3.exe
- Success
- ------------ [18] CC="gcc" make combine5 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine5_1.c combine5_2.c combine5_3.c \
- -ocombine5.exe
- cd ./small1; ./combine5.exe
- Address of TimeOuts=3b322040
- ------------ [19] CC="gcc" make combine6 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine6_1.c combine6_2.c combine6_3.c \
- -ocombine6.exe
- cd ./small1; ./combine6.exe
- ------------ [20] CC="gcc" make combine8 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine8_1.c combine8_2.c \
- -ocombine8.exe
- cd ./small1; ./combine8.exe
- Success
- ------------ [21] (fail) CC="gcc" make combine9 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine9_1.c combine9_2.c \
- -ocombine9.exe
- cd ./small1; ./combine9.exe
- Error 1
- ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_allocate_1.c combine_allocate_2.c \
- -ocombine_allocate.exe
- cd ./small1; ./combine_allocate.exe
- ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -fcommon \
- combine_copyptrs_1.c combine_copyptrs_2.c \
- -ocombine_copyptrs.exe
- cd ./small1; ./combine_copyptrs.exe
- ------------ [24] CC="gcc" make combine_init ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_init_1.c combine_init_2.c \
- -ocombine_init.exe
- cd ./small1; ./combine_init.exe
- ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_node_alloc_1.c combine_node_alloc_2.c \
- -ocombine_node_alloc.exe
- ------------ [26] (fail) CC="gcc" make combine_samefn ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_samefn_1.c combine_samefn_2.c \
- -ocombine_samefn.exe
- ------------ [27] CC="gcc" make combine_sbump ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_sbump_1.c combine_sbump_2.c \
- -ocombine_sbump.exe
- cd ./small1; ./combine_sbump.exe
- ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_sbumpB_1.c combine_sbumpB_2.c combine_sbumpB_3.c \
- -ocombine_sbumpB.exe
- cd ./small1; ./combine_sbumpB.exe
- ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_syserr_1.c combine_syserr_2.c \
- -ocombine_syserr.exe
- cd ./small1; ./combine_syserr.exe
- ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combine_theFunc_1.c combine_theFunc_2.c combine_theFunc_3.c \
- -ocombine_theFunc.exe
- cd ./small1; ./combine_theFunc.exe
- ------------ [31] CC="gcc" make combinealias ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combinealias_1.c combinealias_2.c \
- -ocombinealias.exe
- cd ./small1; ./combinealias.exe
- Hello, world! 42
- ------------ [32] (fail) CC="gcc" make combinec99inline ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline_1.c combine-c99inline_2.c \
- -ocombine-c99inline.exe
- ------------ [33] CC="gcc" make combinec99inline1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline1_1.c combine-c99inline1_2.c \
- -ocombine-c99inline1.exe
- cd ./small1; ./combine-c99inline1.exe
- ------------ [34] CC="gcc" make combinec99inline2 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline2_1.c combine-c99inline2_2.c \
- -ocombine-c99inline2.exe
- cd ./small1; ./combine-c99inline2.exe
- ------------ [35] CC="gcc" make combinec99inline3 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline3_1.c combine-c99inline3_2.c \
- -ocombine-c99inline3.exe
- cd ./small1; ./combine-c99inline3.exe
- ------------ [36] CC="gcc" make combinec99inline4 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline4_1.c combine-c99inline4_2.c \
- -ocombine-c99inline4.exe
- cd ./small1; ./combine-c99inline4.exe
- ------------ [37] CC="gcc" make combinec99inline5 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline5_1.c combine-c99inline5_2.c \
- -ocombine-c99inline5.exe
- cd ./small1; ./combine-c99inline5.exe
- ------------ [38] CC="gcc" make combinec99inline6 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline6_1.c combine-c99inline6_2.c \
- -ocombine-c99inline6.exe
- cd ./small1; ./combine-c99inline6.exe
- ------------ [39] CC="gcc" make combinec99inline7 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline7_1.c combine-c99inline7_2.c combine-c99inline7_3.c \
- -ocombine-c99inline7.exe
- cd ./small1; ./combine-c99inline7.exe
- ------------ [40] CC="gcc" make combinec99inline8 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline8_1.c combine-c99inline8_2.c combine-c99inline8_3.c \
- -ocombine-c99inline8.exe
- cd ./small1; ./combine-c99inline8.exe
- ------------ [41] CC="gcc" make combinec99inline9 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
- combine-c99inline9_1.c combine-c99inline9_2.c \
- -ocombine-c99inline9.exe
- cd ./small1; ./combine-c99inline9.exe
- ------------ [42] CC="gcc" make combinec99mergeinline1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
- combine-c99-mergeinline1_1.c combine-c99-mergeinline1_2.c \
- -ocombine-c99-mergeinline1.exe
- cd ./small1; ./combine-c99-mergeinline1.exe
- ------------ [43] CC="gcc" make combinec99mergeinline2 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
- combine-c99-mergeinline2_1.c combine-c99-mergeinline2_2.c \
- -ocombine-c99-mergeinline2.exe
- cd ./small1; ./combine-c99-mergeinline2.exe
- ------------ [44] CC="gcc" make combinec99mergeinline3 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
- combine-c99-mergeinline3_1.c combine-c99-mergeinline3_2.c \
- -ocombine-c99-mergeinline3.exe
- cd ./small1; ./combine-c99-mergeinline3.exe
- ------------ [45] CC="gcc" make combinec99mergeinline4 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
- combine-c99-mergeinline4_1.c combine-c99-mergeinline4_2.c \
- -ocombine-c99-mergeinline4.exe
- cd ./small1; ./combine-c99-mergeinline4.exe
- ------------ [46] CC="gcc" make combinec99mergeinline5 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
- combine-c99-mergeinline5_1.c combine-c99-mergeinline5_2.c \
- -ocombine-c99-mergeinline5.exe
- cd ./small1; ./combine-c99-mergeinline5.exe
- ------------ [47] CC="gcc" make combinec99mergeinline6 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
- combine-c99-mergeinline6_1.c combine-c99-mergeinline6_2.c \
- -ocombine-c99-mergeinline6.exe
- cd ./small1; ./combine-c99-mergeinline6.exe
- ------------ [48] CC="gcc" make combinec99mergeinline7 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
- combine-c99-mergeinline7_1.c combine-c99-mergeinline7_2.c \
- -ocombine-c99-mergeinline7.exe
- cd ./small1; ./combine-c99-mergeinline7.exe
- ------------ [49] CC="gcc" make combineenum1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineenum1_1.c combineenum1_2.c \
- -ocombineenum1.exe
- cd ./small1; ./combineenum1.exe
- Success
- ------------ [50] CC="gcc" make combineenum2 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineenum2_1.c combineenum2_2.c \
- -ocombineenum2.exe
- cd ./small1; ./combineenum2.exe
- ------------ [51] CC="gcc" make combineenum3 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineenum3_1.c combineenum3_2.c \
- -ocombineenum3.exe
- cd ./small1; ./combineenum3.exe
- ------------ [52] CC="gcc" make combinegnuinline ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --merge -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combinegnuinline_1.c combinegnuinline_2.c \
- -ocombinegnuinline.exe
- cd ./small1; ./combinegnuinline.exe
- ------------ [53] (fail) CC="gcc" make combineinline1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineinline1_1.c combineinline1_2.c \
- -ocombineinline1.exe
- ------------ [54] CC="gcc" make combineinline2 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineinline2_1.c combineinline2_2.c \
- -ocombineinline2.exe
- cd ./small1; ./combineinline2.exe
- Success
- ------------ [55] (fail) CC="gcc" make combineinline3 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineinline3_1.c combineinline3_2.c \
- -ocombineinline3.exe
- cd ./small1; ./combineinline3.exe
- Error 1
- ------------ [56] (fail) CC="gcc" make combineinline4 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineinline4_1.c combineinline4_2.c \
- -ocombineinline4.exe
- cd ./small1; ./combineinline4.exe
- Merging of inlines did not work
- Error 1
- ------------ [57] CC="gcc" make combineinline6 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combineinline6_1.c combineinline6_2.c \
- -ocombineinline6.exe
- cd ./small1; ./combineinline6.exe
- ------------ [58] CC="gcc" make combinelibrik ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combinelibrik_1.c combinelibrik_2.c \
- -ocombinelibrik.exe
- cd ./small1; ./combinelibrik.exe
- ------------ [59] CC="gcc" make combinemerge1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon --merge\
- combinemerge1_1.c combinemerge1_2.c combinemerge1_3.c \
- -ocombinemerge1.exe
- cd ./small1; ./combinemerge1.exe
- ------------ [60] CC="gcc" make combinestruct1 ------------
- cd ./small1; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
- combinestruct1_1.c combinestruct1_2.c \
- -ocombinestruct1.exe
- cd ./small1; ./combinestruct1.exe
- ------------ [61] CC="gcc" make merge-ar ------------
- cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge -c merge-ar.c merge-twice-1.c
- cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge --mode=AR cr libmerge.a merge-ar.o merge-twice-1.o
- cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge libmerge.a -o merge-ar
- ------------ [62] CC="gcc" make mergeinit ------------
- cd ./small2; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --merge --strictcheck --keepunused mergeinit1.c mergeinit2_1_reftable.c mergeinit2_2_definition.c mergeinit3.c mergeinit4.c
- ------------ [63] CC="gcc" make mergeinline ------------
- cd ./small2; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats mergeinline1.c mergeinline2.c -o mergeinline.exe
- ./small2/mergeinline.exe
- ------------ [64] CC="gcc" make mergestruct ------------
- cd ./small2; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon mergestruct1.c mergestruct2.c -o mergestruct.exe
- ./small2/mergestruct.exe
- ------------ [65] CC="gcc" make mixedcomb ------------
- rm -f ./small2/comb.exe
- cd ./small2; \
- gcc -fcommon -E -o comb2.i comb2.c; \
- gcc -fcommon -S -o comb3.s comb3.c; \
- gcc -fcommon -c -o comb4.o comb4.c; \
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c comb2.i comb3.s comb4.o -ocomb.exe
- ./small2/comb.exe
- foo_com3(6): 19
- foo2_com4(61): 70
- ------------ [66] CC="gcc" make runall/alpha ------------
- cd ./small2; \
- CCURED_NO_SIGABRT=1 \
- COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
- && ./__BASENAME__.exe" \
- COMMENT="//" \
- perl ../runall.pl alpha.c
- Found test baseline with msg:
- Found test overflow with msg:Encountered a variable name containing ___ and many digits
-
- ********* alpha: Running test baseline from line 2
- Test baseline:
- SUCCESS => 1
- LINE => 2
- MSG => ,
- MSGPATTERN => 0
- 2: KEEP(baseline): keep=1
- 21: KEEP(overflow): keep=0
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./alpha-tmp.c -oalpha-tmp.exe && ./alpha-tmp.exe
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- ./alpha-tmp.c: In function 'f':
- ./alpha-tmp.c:7:17: warning: variable 'G___152598332' set but not used [-Wunused-but-set-variable]
- 7 | }
- | ^
- ./alpha-tmp.c: In function 'f2':
- ./alpha-tmp.c:13:17: warning: variable 'G___1525983317___0' set but not used [-Wunused-but-set-variable]
- 13 | }
- | ^
- ./alpha-tmp.c: In function 'f3':
- ./alpha-tmp.c:18:17: warning: variable 'G__1525983317999999999994352352523523993424999' set but not used [-Wunused-but-set-variable]
- 18 | }
- | ^
- ./alpha-tmp.c: In function 'f4':
- ./alpha-tmp.c:24:17: warning: variable 'G___152598332' set but not used [-Wunused-but-set-variable]
- 24 | }
- | ^
- Test baseline returned with code 0. Expected success
- Test baseline (line 2) was successful
-
- ********* alpha: Running test overflow from line 21
- Test overflow:
- SUCCESS => 0
- LINE => 21
- MSG => Encountered a variable name containing ___ and many digits,
- MSGPATTERN =>
- 2: KEEP(baseline): keep=0
- 21: KEEP(overflow): keep=1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./alpha-tmp.c -oalpha-tmp.exe && ./alpha-tmp.exe
- Unimplemented: Encountered a variable name containing ___ and many digits. This could cause overflow in the Alpha renaming module.
- Context : 2cil: f4
- Error in doStatement (GoblintCil__Errormsg.Error)
- Error: Cabs2cil had some errors
- Fatal error: exception GoblintCil__Errormsg.Error
- Test overflow returned with code 512. Expected failure
- All 2 tests were successful!
- ------------ [67] CC="gcc" make runall/extinline ------------
- cd ./small2; \
- CCURED_NO_SIGABRT=1 \
- COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
- && ./__BASENAME__.exe" \
- COMMENT="//" \
- perl ../runall.pl extinline.c
- Found test baseline with msg:
- Found test bad with msg:Trying to rename
-
- ********* extinline: Running test bad from line 20
- Test bad:
- SUCCESS => 0
- LINE => 20
- MSG => Trying to rename,
- MSGPATTERN =>
- 7: KEEP(baseline): keep=0
- 20: KEEP(bad): keep=1
- 21: KEEP(bad): keep=1
- 22: KEEP(bad): keep=1
- 23: KEEP(bad): keep=1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./extinline-tmp.c -oextinline-tmp.exe && ./extinline-tmp.exe
- ./extinline-tmp.c:20: Unimplemented: Trying to rename identity to
- identity__extinline, but identity__extinline already exists in the env.
- "__extinline" is reserved for CIL.
-
- Fatal error: exception GoblintCil__Errormsg.Error
- Test bad returned with code 512. Expected failure
-
- ********* extinline: Running test baseline from line 7
- Test baseline:
- SUCCESS => 1
- LINE => 7
- MSG => ,
- MSGPATTERN => 0
- 7: KEEP(baseline): keep=1
- 20: KEEP(bad): keep=0
- 21: KEEP(bad): keep=0
- 22: KEEP(bad): keep=0
- 23: KEEP(bad): keep=0
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./extinline-tmp.c -oextinline-tmp.exe && ./extinline-tmp.exe
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- ./extinline-tmp.c:31:5: warning: first argument of 'main' should be 'int' [-Wmain]
- 31 | int main(int *p, char** argv)
- | ^~~~
- Test baseline returned with code 0. Expected success
- Test baseline (line 7) was successful
- All 2 tests were successful!
- ------------ [68] CC="gcc" make runall/runall_misc ------------
- cd ./small2; \
- CCURED_NO_SIGABRT=1 \
- COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
- && ./__BASENAME__.exe" \
- COMMENT="//" \
- perl ../runall.pl runall_misc.c
- Found test rbrace with msg:syntax error
-
- ********* runall_misc: Running test rbrace from line 8
- Test rbrace:
- SUCCESS => 0
- LINE => 8
- MSG => syntax error,
- MSGPATTERN =>
- 8: KEEP(rbrace): keep=1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./runall_misc-tmp.c -orunall_misc-tmp.exe && ./runall_misc-tmp.exe
- ./runall_misc-tmp.c[8:0-0] : syntax error
- Parsing errorFatal error: exception GoblintCil__Frontc.ParseError("Parse error")
- Test rbrace returned with code 512. Expected failure
- All 1 tests were successful!
- ------------ [69] CC="gcc" make runall/structattr2 ------------
- cd ./small2; \
- CCURED_NO_SIGABRT=1 \
- COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
- && ./__BASENAME__.exe" \
- COMMENT="//" \
- perl ../runall.pl structattr2.c
- Found test baseline with msg:
- Found test archspecific with msg:
- Found test const1 with msg:
- Found test const2 with msg:
-
- ********* structattr2: Running test archspecific from line 42
- Test archspecific:
- SUCCESS => 1
- LINE => 42
- MSG => ,
- MSGPATTERN => 0
- 45: KEEP(const1): keep=0
- 47: KEEP(const2): keep=0
- 51: IFTEST(archspecific): keep=1, env = 1,1
- 59: ENDIF: keep=1, env = 1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.83MB, promoted=0.67MB
- minor collections=3 major collections=2 compactions=0
- ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
- 23 |
- | ^
- ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
- 27 |
- | ^
- Test archspecific returned with code 0. Expected success
- Test archspecific (line 42) was successful
-
- ********* structattr2: Running test baseline from line 40
- Test baseline:
- SUCCESS => 1
- LINE => 40
- MSG => ,
- MSGPATTERN => 0
- 45: KEEP(const1): keep=0
- 47: KEEP(const2): keep=0
- 51: IFTEST(archspecific): keep=0, env = 0,1
- 59: ENDIF: keep=1, env = 1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
- minor collections=3 major collections=2 compactions=0
- ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
- 23 |
- | ^
- ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
- 27 |
- | ^
- Test baseline returned with code 0. Expected success
- Test baseline (line 40) was successful
-
- ********* structattr2: Running test const1 from line 45
- Test const1:
- SUCCESS => 0
- LINE => 45
- MSG => ,
- MSGPATTERN => 0
- 45: KEEP(const1): keep=1
- 47: KEEP(const2): keep=0
- 51: IFTEST(archspecific): keep=0, env = 0,1
- 59: ENDIF: keep=1, env = 1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
- minor collections=3 major collections=2 compactions=0
- ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
- 23 |
- | ^
- ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
- 27 |
- | ^
- ./structattr2-tmp.c: In function 'main':
- ./structattr2-tmp.c:45:9: error: increment of member 'a' in read-only object
- 45 | e.a++; //KEEP const1: error
- | ^~
- Test const1 returned with code 256. Expected failure
- Test const1 (line 45) was successful
-
- ********* structattr2: Running test const2 from line 47
- Test const2:
- SUCCESS => 0
- LINE => 47
- MSG => ,
- MSGPATTERN => 0
- 45: KEEP(const1): keep=0
- 47: KEEP(const2): keep=1
- 51: IFTEST(archspecific): keep=0, env = 0,1
- 59: ENDIF: keep=1, env = 1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
- minor collections=3 major collections=2 compactions=0
- ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
- 23 |
- | ^
- ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
- 27 |
- | ^
- ./structattr2-tmp.c: In function 'main':
- ./structattr2-tmp.c:47:10: error: increment of member 'a' in read-only object
- 47 | e2.a++; //KEEP const2: error
- | ^~
- Test const2 returned with code 256. Expected failure
- Test const2 (line 47) was successful
- All 4 tests were successful!
- ------------ [70] CC="gcc" make runall/switch ------------
- cd ./small2; \
- CCURED_NO_SIGABRT=1 \
- COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
- && ./__BASENAME__.exe" \
- COMMENT="//" \
- perl ../runall.pl switch.c
- Found test baseline with msg:
- Found test dupDefault1 with msg:duplicate default
- Found test dupDefault2 with msg:duplicate default
-
- ********* switch: Running test baseline from line 4
- Test baseline:
- SUCCESS => 1
- LINE => 4
- MSG => ,
- MSGPATTERN => 0
- 12: KEEP(dupDefault1): keep=0
- 27: KEEP(dupDefault2): keep=0
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.15MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
- minor collections=3 major collections=2 compactions=0
- ./switch-tmp.c: In function 'foo':
- ./switch-tmp.c:9:13: warning: statement will never be executed [-Wswitch-unreachable]
- 9 | y = "who runs this?"[3];
- | ^~~~~~~~~~~~~~~~
- Result is: 171822
- Test baseline returned with code 0. Expected success
- Test baseline (line 4) was successful
-
- ********* switch: Running test dupDefault1 from line 12
- Test dupDefault1:
- SUCCESS => 0
- LINE => 12
- MSG => duplicate default,
- MSGPATTERN =>
- 12: KEEP(dupDefault1): keep=1
- 27: KEEP(dupDefault2): keep=0
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
- ./switch-tmp.c:35: Error: Switch statement at ./switch-tmp.c:8 has duplicate default entries.
- Error in doStatement (GoblintCil__Errormsg.Error)
- Error: Cabs2cil had some errors
- Fatal error: exception GoblintCil__Errormsg.Error
- Test dupDefault1 returned with code 512. Expected failure
-
- ********* switch: Running test dupDefault2 from line 27
- Test dupDefault2:
- SUCCESS => 0
- LINE => 27
- MSG => duplicate default,
- MSGPATTERN =>
- 12: KEEP(dupDefault1): keep=0
- 27: KEEP(dupDefault2): keep=1
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
- ./switch-tmp.c:35: Error: Switch statement at ./switch-tmp.c:8 has duplicate default entries.
- Error in doStatement (GoblintCil__Errormsg.Error)
- Error: Cabs2cil had some errors
- Fatal error: exception GoblintCil__Errormsg.Error
- Test dupDefault2 returned with code 512. Expected failure
- All 3 tests were successful!
- ------------ [71] CC="gcc" make scott-nogcc/bogus_redef ------------
- rm -f ./small2/bogus_redef.exe
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- bogus_redef.c \
- -obogus_redef.exe
- bash -c "time ./small2/bogus_redef.exe"
- ------------ [72] CC="gcc" make scott-nogcc/funcname ------------
- rm -f ./small2/funcname.exe
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- funcname.c \
- -ofuncname.exe
- bash -c "time ./small2/funcname.exe"
- __FUNCTION__ = main
- __PRETTY_FUNCTION__ = main
- ------------ [73] CC="gcc" make scott-nolink/brlock ------------
- rm -f ./small2/brlock.exe
- cd ./small2; gcc -c -Wall brlock.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge -c --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall --commPrintLn \
- brlock.c \
- -obrlock.exe
- ------------ [74] CC="gcc" make scott/arrayinit ------------
- rm -f ./small2/arrayinit.exe
- cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall arrayinit.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- arrayinit.c \
- -oarrayinit.exe
- bash -c "time ./small2/arrayinit.exe"
- ------------ [75] (fail) CC="gcc" make scott/asmfndecl ------------
- rm -f ./small2/asmfndecl.exe
- cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall asmfndecl.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- asmfndecl.c \
- -oasmfndecl.exe
- bash -c "time ./small2/asmfndecl.exe"
-
- [75] 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
- ------------ [76] CC="gcc" make scott/bisonerror ------------
- rm -f ./small2/bisonerror.exe
- cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall bisonerror.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- bisonerror.c \
- -obisonerror.exe
- bash -c "time ./small2/bisonerror.exe"
- ------------ [77] CC="gcc" make scott/cmpzero ------------
- rm -f ./small2/cmpzero.exe
- cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall cmpzero.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- cmpzero.c \
- -ocmpzero.exe
- bash -c "time ./small2/cmpzero.exe"
- i: 512
- c: 0
- no
- 2nd yes
- Success
- ------------ [78] CC="gcc" make scott/constdecl ------------
- rm -f ./small2/constdecl.exe
- cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall constdecl.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- constdecl.c \
- -oconstdecl.exe
- bash -c "time ./small2/constdecl.exe"
- ------------ [79] CC="gcc" make scott/constfold ------------
- rm -f ./small2/constfold.exe
- cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall constfold.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- constfold.c \
- -oconstfold.exe
- bash -c "time ./small2/constfold.exe"
- ------------ [80] CC="gcc" make scott/ctype ------------
- rm -f ./small2/ctype.exe
- cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ctype.c
- cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
- ctype.c \
- -octype.exe
- bash -c "time ./small2/ctype.exe"
- character: a
- decimal: 97
- isalpha: 1
- isdigit: 0
- character: 5
- decimal: 53
- isalpha: 0
- isdigit: 1
- character: $
- decimal: 36
- isalpha: 0
- isdigit: 0
- character: Z
- ...TRUNCATED BY DUNE...
- echo SUCCESS
- SUCCESS
- ------------ [331] CC="gcc" make testrun/label1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel1.exe label1.c
- cd ./small1; ./label1.exe
- echo SUCCESS
- SUCCESS
- ------------ [332] CC="gcc" make testrun/label2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel2.exe label2.c
- cd ./small1; ./label2.exe
- echo SUCCESS
- SUCCESS
- ------------ [333] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel2b.exe label2b.c
- cd ./small1; ./label2b.exe
- echo SUCCESS
- SUCCESS
- ------------ [334] CC="gcc" make testrun/label3 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel3.exe label3.c
- cd ./small1; ./label3.exe
- echo SUCCESS
- SUCCESS
- ------------ [335] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --noMakeStaticGlobal --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel3b.exe label3b.c
- cd ./small1; ./label3b.exe
- echo SUCCESS
- SUCCESS
- ------------ [336] CC="gcc" make testrun/label4 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel4.exe label4.c
- cd ./small1; ./label4.exe
- echo SUCCESS
- SUCCESS
- ------------ [337] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel4b.exe label4b.c
- cd ./small1; ./label4b.exe
- echo SUCCESS
- SUCCESS
- ------------ [338] CC="gcc" make testrun/label6 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel6.exe label6.c
- cd ./small1; ./label6.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [339] CC="gcc" make testrun/land_expr ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oland_expr.exe land_expr.c
- cd ./small1; ./land_expr.exe
- echo SUCCESS
- SUCCESS
- ------------ [340] CC="gcc" make testrun/large_unsigned_long ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olarge_unsigned_long.exe large_unsigned_long.c
- cd ./small1; ./large_unsigned_long.exe
- echo SUCCESS
- SUCCESS
- ------------ [341] CC="gcc" make testrun/linux_signal ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olinux_signal.exe linux_signal.c
- cd ./small1; ./linux_signal.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [342] CC="gcc" make testrun/localinit ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olocalinit.exe localinit.c
- cd ./small1; ./localinit.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [343] CC="gcc" make testrun/logical ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological.exe logical.c
- cd ./small1; ./logical.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [344] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological1.exe logical1.c
- cd ./small1; ./logical1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [345] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological2.exe logical2.c
- cd ./small1; ./logical2.exe
- echo SUCCESS
- SUCCESS
- ------------ [346] CC="gcc" make testrun/longBlock ------------
- ocamlfind ocamlc -I /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../../install/default/lib/goblint-cil -I /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../_build/src -package zarith unix.cma str.cma zarith.cma \
- goblintCil.cma \
- -o small1/longBlock.exe small1/longBlock.ml
- small1/longBlock.exe
- echo SUCCESS
- SUCCESS
- ------------ [347] CC="gcc" make testrun/lval1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olval1.exe lval1.c
- cd ./small1; ./lval1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [348] CC="gcc" make testrun/macro_hidden ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omacro_hidden.exe macro_hidden.c
- cd ./small1; ./macro_hidden.exe
- echo SUCCESS
- SUCCESS
- ------------ [349] CC="gcc" make testrun/math1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omath1.exe math1.c
- cd ./small1; ./math1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [350] CC="gcc" make testrun/memcpy1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omemcpy1.exe memcpy1.c
- cd ./small1; ./memcpy1.exe
- echo SUCCESS
- SUCCESS
- ------------ [351] CC="gcc" make testrun/min ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omin.exe min.c
- cd ./small1; ./min.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [352] CC="gcc" make testrun/msvc1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omsvc1.exe msvc1.c
- cd ./small1; ./msvc1.exe
- echo SUCCESS
- SUCCESS
- ------------ [353] CC="gcc" make testrun/msvc5 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omsvc5.exe msvc5.c
- cd ./small1; ./msvc5.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [354] CC="gcc" make testrun/nan-global ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -onan-global.exe nan-global.c
- cd ./small1; ./nan-global.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [355] CC="gcc" make testrun/offsetof ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof.exe offsetof.c
- cd ./small1; ./offsetof.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [356] CC="gcc" make testrun/offsetof1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof1.exe offsetof1.c
- cd ./small1; ./offsetof1.exe
- echo SUCCESS
- SUCCESS
- ------------ [357] CC="gcc" make testrun/offsetof2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof2.exe offsetof2.c
- cd ./small1; ./offsetof2.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [358] CC="gcc" make testrun/offsetof3 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof3.exe offsetof3.c
- cd ./small1; ./offsetof3.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [359] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -opacked.exe packed.c
- cd ./small1; ./packed.exe
- sizeof(foo) = 9.
- echo SUCCESS
- SUCCESS
- ------------ [360] CC="gcc" make testrun/percent400 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opercent400.exe percent400.c
- cd ./small1; ./percent400.exe
- echo SUCCESS
- SUCCESS
- ------------ [361] CC="gcc" make testrun/percentm ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opercentm.exe percentm.c
- cd ./small1; ./percentm.exe
- echo SUCCESS
- SUCCESS
- ------------ [362] CC="gcc" make testrun/perror ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -operror.exe perror.c
- cd ./small1; ./perror.exe
- echo SUCCESS
- SUCCESS
- ------------ [363] CC="gcc" make testrun/perror1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -operror1.exe perror1.c
- cd ./small1; ./perror1.exe
- echo SUCCESS
- SUCCESS
- ------------ [364] (fail) CC="gcc" make testrun/post-assign ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opost-assign.exe post-assign.c
- cd ./small1; ./post-assign.exe
- Error 1
- ------------ [365] CC="gcc" make testrun/printf2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oprintf2.exe printf2.c
- cd ./small1; ./printf2.exe
- The buffer is: 7.75
- Success
- echo SUCCESS
- SUCCESS
- ------------ [366] CC="gcc" make testrun/question ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion.exe question.c
- cd ./small1; ./question.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [367] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion-fold-float.exe question-fold-float.c
- cd ./small1; ./question-fold-float.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [368] CC="gcc" make testrun/question2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion2.exe question2.c
- cd ./small1; ./question2.exe
- 5
- echo SUCCESS
- SUCCESS
- ------------ [369] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion3.exe question3.c
- cd ./small1; ./question3.exe
- echo SUCCESS
- SUCCESS
- ------------ [370] CC="gcc" make testrun/return1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturn1.exe return1.c
- cd ./small1; ./return1.exe
- echo SUCCESS
- SUCCESS
- ------------ [371] CC="gcc" make testrun/returnvoid ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturnvoid.exe returnvoid.c
- cd ./small1; ./returnvoid.exe
- echo SUCCESS
- SUCCESS
- ------------ [372] CC="gcc" make testrun/returnvoid1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturnvoid1.exe returnvoid1.c
- cd ./small1; ./returnvoid1.exe
- echo SUCCESS
- SUCCESS
- ------------ [373] (fail) CC="gcc" make testrun/rmUnused-attr ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused-attr.exe rmUnused-attr.c
- ------------ [374] CC="gcc" make testrun/rmUnused1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused1.exe rmUnused1.c
- cd ./small1; ./rmUnused1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [375] CC="gcc" make testrun/rmUnused2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused2.exe rmUnused2.c
- cd ./small1; ./rmUnused2.exe
- echo SUCCESS
- SUCCESS
- ------------ [376] CC="gcc" make testrun/scope1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope1.exe scope1.c
- cd ./small1; ./scope1.exe
- echo SUCCESS
- SUCCESS
- ------------ [377] CC="gcc" make testrun/scope10 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope10.exe scope10.c
- cd ./small1; ./scope10.exe
- echo SUCCESS
- SUCCESS
- ------------ [378] CC="gcc" make testrun/scope11 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope11.exe scope11.c
- cd ./small1; ./scope11.exe
- echo SUCCESS
- SUCCESS
- ------------ [379] CC="gcc" make testrun/scope5 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope5.exe scope5.c
- cd ./small1; ./scope5.exe
- echo SUCCESS
- SUCCESS
- ------------ [380] CC="gcc" make testrun/scope6 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope6.exe scope6.c
- cd ./small1; ./scope6.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [381] CC="gcc" make testrun/scope8 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope8.exe scope8.c
- cd ./small1; ./scope8.exe
- echo SUCCESS
- SUCCESS
- ------------ [382] CC="gcc" make testrun/scope9 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope9.exe scope9.c
- cd ./small1; ./scope9.exe
- echo SUCCESS
- SUCCESS
- ------------ [383] CC="gcc" make testrun/semicolon ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osemicolon.exe semicolon.c
- cd ./small1; ./semicolon.exe
- echo SUCCESS
- SUCCESS
- ------------ [384] CC="gcc" make testrun/simon6 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osimon6.exe simon6.c
- cd ./small1; ./simon6.exe
- 10
- [0:1][1:4][2:7][3:0][4:3][5:6][6:9][7:2][8:5][9:8]echo SUCCESS
- SUCCESS
- ------------ [385] CC="gcc" make testrun/sizeof1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osizeof1.exe sizeof1.c
- cd ./small1; ./sizeof1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [386] CC="gcc" make testrun/sizeof2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osizeof2.exe sizeof2.c
- cd ./small1; ./sizeof2.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [387] CC="gcc" make testrun/static ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostatic.exe static.c
- cd ./small1; ./static.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [388] CC="gcc" make testrun/static2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostatic2.exe static2.c
- cd ./small1; ./static2.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [389] CC="gcc" make testrun/stringsize ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostringsize.exe stringsize.c
- cd ./small1; ./stringsize.exe
- 11
- Success
- echo SUCCESS
- SUCCESS
- ------------ [390] CC="gcc" make testrun/strloop ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostrloop.exe strloop.c
- cd ./small1; ./strloop.exe
- foo
- Success
- echo SUCCESS
- SUCCESS
- ------------ [391] CC="gcc" make testrun/strloop3 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostrloop3.exe strloop3.c
- cd ./small1; ./strloop3.exe
- aaa
- Success
- echo SUCCESS
- SUCCESS
- ------------ [392] CC="gcc" make testrun/struct1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostruct1.exe struct1.c
- cd ./small1; ./struct1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [393] CC="gcc" make testrun/typeof1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -otypeof1.exe typeof1.c
- cd ./small1; ./typeof1.exe
- sizeof(foo) = 1 (CIL) and 1 (Compiler)
- sizeof(afun) = 1 (CIL) and 1 (Compiler)
- sizeof("a long string") = 14 (CIL) and 14 (Compiler)
- sizeof(str) = 14 (CIL) and 14 (Compiler)
- sizeof(arr) = 36 (CIL) and 36 (Compiler)
- sizeof(barr) = 36 (CIL) and 36 (Compiler)
- sizeof(funp) = 8 (CIL) and 8 (Compiler)
- __alignof("a string") = 1 (CIL) and 1 (Compiler)
- __alignof(str) = 1 (CIL) and 1 (Compiler)
- __alignof(foo) = 1 (CIL) and 1 (Compiler)
- __alignof(afun) = 1 (CIL) and 1 (Compiler)
- __alignof(arr) = 4 (CIL) and 4 (Compiler)
- __alignof(barr) = 4 (CIL) and 4 (Compiler)
- __alignof(funp) = 8 (CIL) and 8 (Compiler)
- echo SUCCESS
- SUCCESS
- ------------ [394] (fail) CC="gcc" make testrun/typespec1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -otypespec1.exe typespec1.c
- ------------ [395] CC="gcc" make testrun/union2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion2.exe union2.c
- cd ./small1; ./union2.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [396] CC="gcc" make testrun/union3 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion3.exe union3.c
- cd ./small1; ./union3.exe
- Offset of large in TEST_STRUCT is 0. Expected 0
- Offset of i1 in TEST_STRUCT is 40. Expected 40
- Offset of i2 in TEST_STRUCT is 40. Expected 40
- Offset of i3 in TEST_STRUCT is 44. Expected 44
- Offset of a in TEST_STRUCT is 48. Expected 48
- Offset of u1 in TEST_STRUCT is 52. Expected 52
- Offset of u2 in TEST_STRUCT is 52. Expected 52
- Offset of f1 in TEST_STRUCT is 52. Expected 52
- Offset of f2 in TEST_STRUCT is 56. Expected 56
- Offset of b in TEST_STRUCT is 60. Expected 60
- Success
- echo SUCCESS
- SUCCESS
- ------------ [397] (fail) CC="gcc" make testrun/union6 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion6.exe union6.c
- cd ./small1; ./union6.exe
- Error 1
- ------------ [398] CC="gcc" make testrun/va-arg-1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-1.exe va-arg-1.c
- cd ./small1; ./va-arg-1.exe
- echo SUCCESS
- SUCCESS
- ------------ [399] CC="gcc" make testrun/va-arg-2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-2.exe va-arg-2.c
- cd ./small1; ./va-arg-2.exe
- echo SUCCESS
- SUCCESS
- ------------ [400] CC="gcc" make testrun/va-arg-7 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-7.exe va-arg-7.c
- cd ./small1; ./va-arg-7.exe
- echo SUCCESS
- SUCCESS
- ------------ [401] CC="gcc" make testrun/var_named_hidden ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovar_named_hidden.exe var_named_hidden.c
- cd ./small1; ./var_named_hidden.exe
- echo SUCCESS
- SUCCESS
- ------------ [402] CC="gcc" make testrun/vararg1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg1.exe vararg1.c
- cd ./small1; ./vararg1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [403] CC="gcc" make testrun/vararg2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg2.exe vararg2.c
- cd ./small1; ./vararg2.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [404] CC="gcc" make testrun/vararg3 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg3.exe vararg3.c
- cd ./small1; ./vararg3.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [405] CC="gcc" make testrun/vararg4 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg4.exe vararg4.c
- cd ./small1; ./vararg4.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [406] CC="gcc" make testrun/vararg5 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg5.exe vararg5.c
- cd ./small1; ./vararg5.exe
- Should be 5 5.0 10.0: 5 5.0 10.0
- Success
- echo SUCCESS
- SUCCESS
- ------------ [407] CC="gcc" make testrun/vararg6 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg6.exe vararg6.c
- cd ./small1; ./vararg6.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [408] CC="gcc" make testrun/varargauto1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovarargauto1.exe varargauto1.c
- cd ./small1; ./varargauto1.exe
- An_int: 5
- An_str: hello
- An_str: world
- An_intptr: 467a460c (1)
- Success
- echo SUCCESS
- SUCCESS
- ------------ [409] CC="gcc" make testrun/void ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovoid.exe void.c
- cd ./small1; ./void.exe
- wow
- yippie!
- echo SUCCESS
- SUCCESS
- ------------ [410] CC="gcc" make testrun/voidarg ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovoidarg.exe voidarg.c
- cd ./small1; ./voidarg.exe
- hello, nice to meet you.
- echo SUCCESS
- SUCCESS
- ------------ [411] CC="gcc" make testrun/vsp ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovsp.exe vsp.c
- cd ./small1; ./vsp.exe
- Hello, world! 2+2=4
-
- echo SUCCESS
- SUCCESS
- ------------ [412] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -owarnings-unused-label.exe warnings-unused-label.c
- cd ./small1; ./warnings-unused-label.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [413] CC="gcc" make testrun/wchar1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar1.exe wchar1.c
- cd ./small1; ./wchar1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [414] CC="gcc" make testrun/wchar2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar2.exe wchar2.c
- cd ./small1; ./wchar2.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [415] CC="gcc" make testrun/wchar3 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar3.exe wchar3.c
- cd ./small1; ./wchar3.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [416] CC="gcc" make testrun/wchar4 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar4.exe wchar4.c
- cd ./small1; ./wchar4.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [417] CC="gcc" make testrun/wchar5 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar5.exe wchar5.c
- cd ./small1; ./wchar5.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [418] CC="gcc" make testrun/wchar6 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar6.exe wchar6.c
- cd ./small1; ./wchar6.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [419] CC="gcc" make testrun/wchar7 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar7.exe wchar7.c
- cd ./small1; ./wchar7.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [420] (fail) CC="gcc" make testrun/wrongnumargs ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owrongnumargs.exe wrongnumargs.c
- ------------ [421] CC="gcc" make testrunc11/c11-align-of ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-align-of.exe c11-align-of.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-align-of.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [422] CC="gcc" make testrunc11/c11-atomic ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-atomic.exe c11-atomic.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-atomic.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [423] CC="gcc" make testrunc11/c11-atomic-store ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-atomic-store.exe c11-atomic-store.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-atomic-store.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [424] CC="gcc" make testrunc11/c11-caserange ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-caserange.exe c11-caserange.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-caserange.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [425] CC="gcc" make testrunc11/c11-extendedFloat ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-extendedFloat.exe c11-extendedFloat.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-extendedFloat.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [426] CC="gcc" make testrunc11/c11-generic ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-generic.exe c11-generic.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-generic.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [427] CC="gcc" make testrunc11/c11-noreturn ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-noreturn.exe c11-noreturn.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-noreturn.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [428] CC="gcc" make testrunc11/c11-static-assert ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-static-assert.exe c11-static-assert.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./c11-static-assert.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [429] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -ogcc-c11-generic-1.exe gcc-c11-generic-1.c -lm
- Warning: Unknown argument -std=c11
- cd ./small1; ./gcc-c11-generic-1.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [430] CC="gcc" make testrunc99/c99-bool ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-bool.exe c99-bool.c -lm
- cd ./small1; ./c99-bool.exe
- echo SUCCESS
- SUCCESS
- ------------ [431] CC="gcc" make testrunc99/c99-complex ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-complex.exe c99-complex.c -lm
- cd ./small1; ./c99-complex.exe
- I * I = 1.0+1.0i
- pow(I, 2) = -1.0+0.0i
- exp(I*PI) = -1.0+0.1i
- (1+2i)*(1-2i) = 5.0+0.0i
- I * I = 1.0+1.0i
- pow(I, 2) = -1.0+0.0i
- exp(I*PI) = -1.0+0.1i
- (1+2i)*(1-2i) = 5+0i
- echo SUCCESS
- SUCCESS
- ------------ [432] CC="gcc" make testrunc99/c99-fixed-width-int ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-fixed-width-int.exe c99-fixed-width-int.c -lm
- cd ./small1; ./c99-fixed-width-int.exe
- echo SUCCESS
- SUCCESS
- ------------ [433] CC="gcc" make testrunc99/c99-float-pragma ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-float-pragma.exe c99-float-pragma.c -lm
- cd ./small1; ./c99-float-pragma.exe
- echo SUCCESS
- SUCCESS
- ------------ [434] CC="gcc" make testrunc99/c99-predefined ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-predefined.exe c99-predefined.c -lm
- cd ./small1; ./c99-predefined.exe
- c99-predefined.c
- 5
- main
- Mar 2 2026
- 11:53:12
- 199901
- echo SUCCESS
- SUCCESS
- ------------ [435] CC="gcc" make testrunc99/c99-struct ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-struct.exe c99-struct.c -lm
- cd ./small1; ./c99-struct.exe
- echo SUCCESS
- SUCCESS
- ------------ [436] CC="gcc" make testrunc99/c99-tgmath ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-tgmath.exe c99-tgmath.c -lm
- cd ./small1; ./c99-tgmath.exe
- echo SUCCESS
- SUCCESS
- ------------ [437] CC="gcc" make testrunc99/c99-tgmath2 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-tgmath2.exe c99-tgmath2.c -lm
- cd ./small1; ./c99-tgmath2.exe
- Success
- echo SUCCESS
- SUCCESS
- ------------ [438] CC="gcc" make testrunc99/c99-universal-character-names ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-universal-character-names.exe c99-universal-character-names.c -lm
- cd ./small1; ./c99-universal-character-names.exe
- echo SUCCESS
- SUCCESS
- ------------ [439] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck -O2 --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -obuiltin_object_size.exe builtin_object_size.c
- cd ./small1; ./builtin_object_size.exe
- echo SUCCESS
- SUCCESS
- ------------ [440] CC="gcc" make testrungcc/enum3 ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3.exe enum3.c
- cd ./small1; ./enum3.exe
- echo SUCCESS
- SUCCESS
- ------------ [441] CC="gcc" make testrungcc/enum3a ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3a.exe enum3a.c
- cd ./small1; ./enum3a.exe
- echo SUCCESS
- SUCCESS
- ------------ [442] CC="gcc" make testrungcc/enum3b ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3b.exe enum3b.c
- cd ./small1; ./enum3b.exe
- echo SUCCESS
- SUCCESS
- ------------ [443] (fail) CC="gcc" make testrungcc/enum3c ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3c.exe enum3c.c
- ------------ [444] CC="gcc" make testrungcc/enum3d ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3d.exe enum3d.c
- cd ./small1; ./enum3d.exe
- echo SUCCESS
- SUCCESS
- ------------ [445] CC="gcc" make testrungcc/enum3e ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3e.exe enum3e.c
- cd ./small1; ./enum3e.exe
- echo SUCCESS
- SUCCESS
- ------------ [446] CC="gcc" make testrungcc/enum3f ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3f.exe enum3f.c
- cd ./small1; ./enum3f.exe
- echo SUCCESS
- SUCCESS
- ------------ [447] CC="gcc" make testrungcc/enum3g ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3g.exe enum3g.c
- cd ./small1; ./enum3g.exe
- echo SUCCESS
- SUCCESS
- ------------ [448] CC="gcc" make testrungcc/enum3h ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3h.exe enum3h.c
- cd ./small1; ./enum3h.exe
- echo SUCCESS
- SUCCESS
- ------------ [449] CC="gcc" make testrungcc/enum3i ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3i.exe enum3i.c
- cd ./small1; ./enum3i.exe
- echo SUCCESS
- SUCCESS
- ------------ [450] CC="gcc" make testrungcc/enum3j ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3j.exe enum3j.c
- cd ./small1; ./enum3j.exe
- echo SUCCESS
- SUCCESS
- ------------ [451] CC="gcc" make testrungcc/enum3k ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3k.exe enum3k.c
- cd ./small1; ./enum3k.exe
- echo SUCCESS
- SUCCESS
- ------------ [452] CC="gcc" make testrungcc/enum3l ------------
- cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
- -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3l.exe enum3l.c
- cd ./small1; ./enum3l.exe
- echo SUCCESS
- SUCCESS
-
- Successful tests: 407
- Failed as expected: 38
- Unexpected success: 4
- Unexpected failure: 4
-
- [75] 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
- [87] 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
- [91] A regression test command failed:
- CC=gcc make scott/kernel1
- [99] A regression test command failed:
- CC=gcc make scott/neg64
- [104] 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
- [113] A regression test command failed:
- CC=gcc make scott/typeof
- [114] A regression test command failed:
- CC=gcc make scott/uninit_tmp
- [206] 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
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- Linking into library array.a
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.52MB, max=1.94MB, minor=7.34MB, major=1.31MB, promoted=1.13MB
- minor collections=5 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- combine1_1.c:10:13: warning: conflicting types for built-in function 'printf'; expected 'int(const char *, ...)' [-Wbuiltin-declaration-mismatch]
- 10 | extern void printf(char *, ...);
- | ^~~~~~
- combine1_1.c:1:1: note: 'printf' is declared in header '<stdio.h>'
- +++ |+#include <stdio.h>
- 1 | typedef int INT;
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine1_3.c: In function 'c3':
- combine1_3.c:10:7: warning: variable 'var' set but not used [-Wunused-but-set-variable]
- 10 |
- | ^
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine11_2.c:17: Warning: Calling function f1 without prototype.
- combine11_2.c:18: Warning: Body of function main falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine11_2.c: In function 'main':
- combine11_2.c:17:8: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
- 17 | void *v1 = f1(); /* Without prototype */
- | ^
- combine11_2.c:20:9: warning: variable 'v2' set but not used [-Wunused-but-set-variable]
- combine11_2.c:18:9: warning: variable 'v1' set but not used [-Wunused-but-set-variable]
- 18 | void *v2 = f2();
- | ^~
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine13_2.c: In function 'main':
- combine13_2.c:11:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct foo *' [-Wformat=]
- 11 | printf("Address is %x\n", &g); /* Make sure we use g */
- | ^~~~~~~~~~~~~~~~~ ~~~
- | |
- | struct foo *
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine15_1.c:36: Warning: Body of function main falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- combine15_1.c:10:18: warning: built-in function 'y1' declared as non-function [-Wbuiltin-declaration-mismatch]
- 10 | } y1;
- | ^
- combine15_1.c: In function 'main':
- combine15_1.c:34:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct s1 *' [-Wformat=]
- 34 | printf("Address of x1=%x and x2=%x\n",
- | ^~~~~~~~~~~~~~~~~
- | |
- | struct s1 *
- combine15_1.c:34:24: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'struct s11 *' [-Wformat=]
- 34 | printf("Address of x1=%x and x2=%x\n",
- | ^~~~~~~~~~~~~~~~~
- | |
- | struct s11 *
- combine15_1.c:36:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct d1 *' [-Wformat=]
- 36 | printf("Address of y1=%x and y2=%x\n",
- | ^~~~~~~~~~~~~~~~~
- | |
- | struct d1 *
- combine15_1.c:36:24: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'struct d11 *' [-Wformat=]
- 36 | printf("Address of y1=%x and y2=%x\n",
- | ^~~~~~~~~~~~~~~~~
- | |
- | struct d11 *
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine15_2.c:7:11: warning: built-in function 'y1' declared as non-function [-Wbuiltin-declaration-mismatch]
- 7 | } y2, y1; /* Constrain both d11 and d1 to be isomorphic */
- | ^~
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- combine17_2.c:7: Warning: Calling function read without prototype.
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- combine2_3.c:6: Warning: Calling function f1 without prototype.
- combine2_3.c:7: Warning: Calling function f2 without prototype.
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine20_2.c: In function 'main':
- combine20_2.c:14:9: warning: variable 'path' set but not used [-Wunused-but-set-variable]
- 14 | char *path = tmp.s; // This will be changed to tmp___0.s !!!
- | ^~~~
- combine20_2.c:13:7: warning: variable 'tmp___0' set but not used [-Wunused-but-set-variable]
- 13 | // new global
- | ^
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- combine22_1.c: In function 'other':
- combine22_1.c:7:24: error: invalid application of 'sizeof' to incomplete type 'struct empty'
- 7 | return (sizeof(struct empty));
- | ^~~~~~
- combine22_1.c:9:1: warning: control reaches end of non-void function [-Wreturn-type]
- make: *** [Makefile:284: combine22] Error 1
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine3_2.c: In function 'main2':
- combine3_2.c:14:8: warning: variable 'd' set but not used [-Wunused-but-set-variable]
- 14 | return 0;
- | ^
- combine3_3.c:13: Warning: Calling function main2 without prototype.
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.001 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- combine5_1.c: In function 'main':
- combine5_1.c:7:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct __anonstruct_TimeOuts_971210525 *' [-Wformat=]
- 7 | printf("Address of TimeOuts=%x\n", &TimeOuts);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- | |
- | struct __anonstruct_TimeOuts_971210525 *
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.23MB, max=1.46MB, minor=4.19MB, major=0.65MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- make: *** [Makefile:285: combine9] Error 1
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine_copyptrs_1.c:2: Warning: Body of function copyptrs falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine_copyptrs_2.c:43: Warning: Body of function copyptrs falls-through. Adding a return statement
- combine_copyptrs_2.c:75: Warning: Body of function copyptrs___0 falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.52MB, minor=4.19MB, major=0.84MB, promoted=0.67MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine_node_alloc_2.c: In function 'main':
- combine_node_alloc_2.c:13:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 13 | return (int)( list[0] );
- | ^
- /usr/bin/ld: ./combine_node_alloc_2.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_node_alloc_2.c:7: multiple definition of `list'; ./combine_node_alloc_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_node_alloc_1.c:7: first defined here
- collect2: error: ld returned 1 exit status
- make: *** [Makefile:284: combine_node_alloc] Error 1
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- /usr/bin/ld: ./combine_samefn_2.o: in function `foo':
- /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_2.c:5: multiple definition of `foo'; ./combine_samefn_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_1.c:11: first defined here
- /usr/bin/ld: ./combine_samefn_2.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_2.c:13: multiple definition of `myglobal'; ./combine_samefn_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_1.c:18: first defined here
- collect2: error: ld returned 1 exit status
- make: *** [Makefile:284: combine_samefn] Error 1
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- combine_sbump_2.c:17: Warning: Body of function foo falls-through. Adding a return statement
- combine_sbump_2.c:22: Warning: Body of function main falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- combine_sbumpB_3.c: In function 'sbump___0':
- combine_sbumpB_3.c:36:15: warning: variable 'tmp___4' set but not used [-Wunused-but-set-variable]
- 36 | char const *tmp___4;
- | ^~~~~~~
- combine_sbumpB_3.c: At top level:
- combine_sbumpB_3.c:48:5: warning: second argument of 'main' should be 'char **' [-Wmain]
- 48 | int main(int argc, char *argv)
- | ^~~~
- combine_sbumpB_3.c: In function 'sbump___0':
- combine_sbumpB_3.c:44:10: warning: 'tmp___3' is used uninitialized [-Wuninitialized]
- 44 | return (tmp___3);
- | ^
- combine_sbumpB_3.c:35:7: note: 'tmp___3' was declared here
- 35 | int tmp___3;
- | ^~~~~~~
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine_theFunc_1.c:3: Warning: Body of function theFunc falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- combine_theFunc_2.c:3: Warning: Body of function theFunc falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- combine_theFunc_3.c:12: Warning: Body of function sgetc___0 falls-through. Adding a return statement
- combine_theFunc_3.c:25: Warning: Body of function theFunc___0 falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.51MB, max=1.89MB, minor=7.34MB, major=1.29MB, promoted=1.12MB
- minor collections=5 major collections=3 compactions=0
- combinealias_2.c:4: Warning: Calling function foo without prototype.
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- Preprocessing combine-c99inline_1.c
- Saving source ./combine-c99inline_1.i into ./combine-c99inline_1.o
- Preprocessing combine-c99inline_2.c
- Saving source ./combine-c99inline_2.i into ./combine-c99inline_2.o
- Merging saved sources into combine-c99inline.exe_comb.o (in process of linking combine-c99inline.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x560ac40e5b20) App::Cilly::KeptFile=HASH(0x560ac3b897c8)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline_1.o
- Pre-merging (1) ./combine-c99inline_2.o
- Final merging phase (0): ./combine-c99inline_1.o
- Final merging phase (1): ./combine-c99inline_2.o
- First CIL check
- Checking file stdout
- /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
- FILE */* __restrict */
- and FILE *
-
- /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
- char const */* __restrict */
- and char const *
-
- combine-c99inline_1.c:3: Warning: CIL invariant broken: Type mismatch:
- char const */* __restrict */
- and char const *
-
- /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
- FILE */* __restrict */
- and FILE *
-
- /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
- char const */* __restrict */
- and char const *
-
- combine-c99inline_2.c:3: Warning: CIL invariant broken: Type mismatch:
- char const */* __restrict */
- and char const *
-
- Finished checking file stdout
- Bug: CIL's internal data structures are inconsistent (see the warnings above). This may be a bug in CIL.
-
- printing file ./combine-c99inline.cil.c
- Error: Error while processing file; see above for details.
- Fatal error: exception GoblintCil__Errormsg.Error
- make: *** [Makefile:315: combinec99inline] Error 2
- Preprocessing combine-c99inline1_1.c
- Saving source ./combine-c99inline1_1.i into ./combine-c99inline1_1.o
- Preprocessing combine-c99inline1_2.c
- Saving source ./combine-c99inline1_2.i into ./combine-c99inline1_2.o
- Merging saved sources into combine-c99inline1.exe_comb.o (in process of linking combine-c99inline1.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x5e53383005e8) App::Cilly::KeptFile=HASH(0x5e5337da5e18)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline1_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline1_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline1_1.o
- Pre-merging (1) ./combine-c99inline1_2.o
- Final merging phase (0): ./combine-c99inline1_1.o
- Final merging phase (1): ./combine-c99inline1_2.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline1.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- Preprocessing ./combine-c99inline1.cil.c
- Compiling ./combine-c99inline1.cil.i into combine-c99inline1.exe_comb.o
- Preprocessing combine-c99inline2_1.c
- Saving source ./combine-c99inline2_1.i into ./combine-c99inline2_1.o
- Preprocessing combine-c99inline2_2.c
- Saving source ./combine-c99inline2_2.i into ./combine-c99inline2_2.o
- Merging saved sources into combine-c99inline2.exe_comb.o (in process of linking combine-c99inline2.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x5ff748152860) App::Cilly::KeptFile=HASH(0x5ff747bf7378)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline2_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline2_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline2_1.o
- Pre-merging (1) ./combine-c99inline2_2.o
- Final merging phase (0): ./combine-c99inline2_1.o
- Final merging phase (1): ./combine-c99inline2_2.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline2.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- Preprocessing ./combine-c99inline2.cil.c
- Compiling ./combine-c99inline2.cil.i into combine-c99inline2.exe_comb.o
- Preprocessing combine-c99inline3_1.c
- Saving source ./combine-c99inline3_1.i into ./combine-c99inline3_1.o
- Preprocessing combine-c99inline3_2.c
- Saving source ./combine-c99inline3_2.i into ./combine-c99inline3_2.o
- Merging saved sources into combine-c99inline3.exe_comb.o (in process of linking combine-c99inline3.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x5c8f388506f8) App::Cilly::KeptFile=HASH(0x5c8f382f4418)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline3_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline3_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline3_1.o
- Pre-merging (1) ./combine-c99inline3_2.o
- Final merging phase (0): ./combine-c99inline3_1.o
- Final merging phase (1): ./combine-c99inline3_2.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline3.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- Preprocessing ./combine-c99inline3.cil.c
- Compiling ./combine-c99inline3.cil.i into combine-c99inline3.exe_comb.o
- Preprocessing combine-c99inline4_1.c
- Saving source ./combine-c99inline4_1.i into ./combine-c99inline4_1.o
- Preprocessing combine-c99inline4_2.c
- Saving source ./combine-c99inline4_2.i into ./combine-c99inline4_2.o
- Merging saved sources into combine-c99inline4.exe_comb.o (in process of linking combine-c99inline4.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x5c9f2074a690) App::Cilly::KeptFile=HASH(0x5c9f201eee98)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline4_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline4_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline4_1.o
- Pre-merging (1) ./combine-c99inline4_2.o
- Final merging phase (0): ./combine-c99inline4_1.o
- Final merging phase (1): ./combine-c99inline4_2.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline4.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- Preprocessing ./combine-c99inline4.cil.c
- Compiling ./combine-c99inline4.cil.i into combine-c99inline4.exe_comb.o
- Preprocessing combine-c99inline5_1.c
- Saving source ./combine-c99inline5_1.i into ./combine-c99inline5_1.o
- Preprocessing combine-c99inline5_2.c
- Saving source ./combine-c99inline5_2.i into ./combine-c99inline5_2.o
- Merging saved sources into combine-c99inline5.exe_comb.o (in process of linking combine-c99inline5.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x580f9229aa20) App::Cilly::KeptFile=HASH(0x580f91d3f7c8)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline5_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline5_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline5_1.o
- Pre-merging (1) ./combine-c99inline5_2.o
- Final merging phase (0): ./combine-c99inline5_1.o
- Final merging phase (1): ./combine-c99inline5_2.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline5.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- Preprocessing ./combine-c99inline5.cil.c
- Compiling ./combine-c99inline5.cil.i into combine-c99inline5.exe_comb.o
- Preprocessing combine-c99inline6_1.c
- Saving source ./combine-c99inline6_1.i into ./combine-c99inline6_1.o
- Preprocessing combine-c99inline6_2.c
- Saving source ./combine-c99inline6_2.i into ./combine-c99inline6_2.o
- Merging saved sources into combine-c99inline6.exe_comb.o (in process of linking combine-c99inline6.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x5928b2b40668) App::Cilly::KeptFile=HASH(0x5928b25e4ee8)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline6_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline6_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline6_1.o
- Pre-merging (1) ./combine-c99inline6_2.o
- Final merging phase (0): ./combine-c99inline6_1.o
- Final merging phase (1): ./combine-c99inline6_2.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline6.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- Preprocessing ./combine-c99inline6.cil.c
- Compiling ./combine-c99inline6.cil.i into combine-c99inline6.exe_comb.o
- Preprocessing combine-c99inline7_1.c
- Saving source ./combine-c99inline7_1.i into ./combine-c99inline7_1.o
- Preprocessing combine-c99inline7_2.c
- Saving source ./combine-c99inline7_2.i into ./combine-c99inline7_2.o
- Preprocessing combine-c99inline7_3.c
- Saving source ./combine-c99inline7_3.i into ./combine-c99inline7_3.o
- Merging saved sources into combine-c99inline7.exe_comb.o (in process of linking combine-c99inline7.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x6478eb4dc850) App::Cilly::KeptFile=HASH(0x6478eaf82008) App::Cilly::KeptFile=HASH(0x6478eaf836d8)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline7_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline7_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline7_3.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline7_1.o
- Pre-merging (1) ./combine-c99inline7_2.o
- Pre-merging (2) ./combine-c99inline7_3.o
- Final merging phase (0): ./combine-c99inline7_1.o
- Final merging phase (1): ./combine-c99inline7_2.o
- Final merging phase (2): ./combine-c99inline7_3.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline7.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.42MB, max=1.69MB, minor=7.34MB, major=1.00MB, promoted=0.92MB
- minor collections=5 major collections=3 compactions=0
- Preprocessing ./combine-c99inline7.cil.c
- Compiling ./combine-c99inline7.cil.i into combine-c99inline7.exe_comb.o
- Preprocessing combine-c99inline8_1.c
- Saving source ./combine-c99inline8_1.i into ./combine-c99inline8_1.o
- Preprocessing combine-c99inline8_2.c
- Saving source ./combine-c99inline8_2.i into ./combine-c99inline8_2.o
- Preprocessing combine-c99inline8_3.c
- Saving source ./combine-c99inline8_3.i into ./combine-c99inline8_3.o
- Merging saved sources into combine-c99inline8.exe_comb.o (in process of linking combine-c99inline8.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x595a5d28abb8) App::Cilly::KeptFile=HASH(0x595a5cd2ff78) App::Cilly::KeptFile=HASH(0x595a5cd31648)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline8_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline8_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline8_3.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline8_1.o
- Pre-merging (1) ./combine-c99inline8_2.o
- Pre-merging (2) ./combine-c99inline8_3.o
- Final merging phase (0): ./combine-c99inline8_1.o
- Final merging phase (1): ./combine-c99inline8_2.o
- Final merging phase (2): ./combine-c99inline8_3.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline8.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- merge 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.42MB, max=1.69MB, minor=7.34MB, major=1.00MB, promoted=0.92MB
- minor collections=5 major collections=3 compactions=0
- Preprocessing ./combine-c99inline8.cil.c
- Compiling ./combine-c99inline8.cil.i into combine-c99inline8.exe_comb.o
- Preprocessing combine-c99inline9_1.c
- Saving source ./combine-c99inline9_1.i into ./combine-c99inline9_1.o
- Preprocessing combine-c99inline9_2.c
- Saving source ./combine-c99inline9_2.i into ./combine-c99inline9_2.o
- Merging saved sources into combine-c99inline9.exe_comb.o (in process of linking combine-c99inline9.exe)
- Will merge the following: App::Cilly::KeptFile=HASH(0x623d0a0b5888) App::Cilly::KeptFile=HASH(0x623d09b585b8)
- Will just link the genuine object files:
- After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
- Frontc is parsing ./combine-c99inline9_1.o
- Converting CABS->CIL
- Removing unused temporaries
- Frontc is parsing ./combine-c99inline9_2.o
- Converting CABS->CIL
- Removing unused temporaries
- Pre-merging (0) ./combine-c99inline9_1.o
- Pre-merging (1) ./combine-c99inline9_2.o
- Final merging phase (0): ./combine-c99inline9_1.o
- Final merging phase (1): ./combine-c99inline9_2.o
- First CIL check
- Checking file stdout
- Finished checking file stdout
- printing file ./combine-c99inline9.cil.c
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- ...TRUNCATED BY DUNE...
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.001 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.81MB, promoted=0.65MB
- minor collections=3 major collections=2 compactions=0
- ./stringsize.cil.c: In function 'main':
- ./stringsize.cil.c:115:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 115 | printf((char const *)"%d\n", sizeof("ertewrtert"));
- | ^~~~~~ ~~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- First CIL check
- Timings:
- TOTAL 0.004 s
- parse 0.002 s
- convert to CIL 0.002 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=9.61MB, max=1.90MB, minor=9.44MB, major=1.31MB, promoted=1.14MB
- minor collections=6 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.006 s
- parse 0.003 s
- convert to CIL 0.003 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=11.64MB, max=2.25MB, minor=11.53MB, major=1.56MB, promoted=1.45MB
- minor collections=7 major collections=3 compactions=0
- ./strloop3.cil.c: In function 'BuildWord':
- ./strloop3.cil.c:15:9: warning: variable 'pch' set but not used [-Wunused-but-set-variable]
- 15 | char *pch ;
- | ^~~
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- typeof1.c:60: Warning: Calling function exit without prototype.
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.001 s
- convert to CIL 0.001 s
- printCIL 0.001 s
- Timing used
- Memory statistics: total=6.46MB, max=1.59MB, minor=6.29MB, major=0.97MB, promoted=0.80MB
- minor collections=4 major collections=2 compactions=0
- ./typeof1.cil.c:80:14: warning: conflicting types for built-in function 'exit'; expected 'void(int)' [-Wbuiltin-declaration-mismatch]
- 80 | extern int ( /* missing proto */ exit)() ;
- | ^~~~
- ./typeof1.cil.c:1:1: note: 'exit' is declared in header '<stdlib.h>'
- +++ |+#include <stdlib.h>
- 1 | /* Generated by Goblint-CIL v. 2.0.2 */
- ./typeof1.cil.c: In function 'main':
- ./typeof1.cil.c:110:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 110 | printf((char const *)"sizeof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:110:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 110 | printf((char const *)"sizeof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 111 | sizeof(foo));
- | ~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:122:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 122 | printf((char const *)"sizeof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___0) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:122:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 122 | printf((char const *)"sizeof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___0) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 123 | sizeof(afun));
- | ~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:160:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 160 | printf((char const *)"sizeof(\"a long string\") = %d (CIL) and %d (Compiler)\n",
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 161 | sizeof(a___1) - 1UL, sizeof("a long string"));
- | ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:160:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 160 | printf((char const *)"sizeof(\"a long string\") = %d (CIL) and %d (Compiler)\n",
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 161 | sizeof(a___1) - 1UL, sizeof("a long string"));
- | ~~~~~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:198:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 198 | printf((char const *)"sizeof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___2) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:198:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 198 | printf((char const *)"sizeof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___2) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 199 | sizeof(str));
- | ~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:280:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 280 | printf((char const *)"sizeof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___3) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:280:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 280 | printf((char const *)"sizeof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___3) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 281 | sizeof(arr));
- | ~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:362:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 362 | printf((char const *)"sizeof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___4) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:362:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 362 | printf((char const *)"sizeof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___4) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 363 | sizeof(barr));
- | ~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:388:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 388 | printf((char const *)"sizeof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___5) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:388:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 388 | printf((char const *)"sizeof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___5) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 389 | sizeof(funp));
- | ~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:400:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 400 | printf((char const *)"__alignof(\"a string\") = %d (CIL) and %d (Compiler)\n",
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 401 | sizeof(a___6) - 1UL, __alignof__("a string"));
- | ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:400:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 400 | printf((char const *)"__alignof(\"a string\") = %d (CIL) and %d (Compiler)\n",
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 401 | sizeof(a___6) - 1UL, __alignof__("a string"));
- | ~~~~~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:412:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 412 | printf((char const *)"__alignof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___7) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:412:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 412 | printf((char const *)"__alignof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___7) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 413 | __alignof__(str));
- | ~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:424:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 424 | printf((char const *)"__alignof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a___8) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:424:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 424 | printf((char const *)"__alignof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a___8) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 425 | __alignof__(foo));
- | ~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:436:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 436 | printf((char const *)"__alignof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___9) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:436:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 436 | printf((char const *)"__alignof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___9) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 437 | __alignof__(afun));
- | ~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:454:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 454 | printf((char const *)"__alignof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___10) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:454:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 454 | printf((char const *)"__alignof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___10) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 455 | __alignof__(arr));
- | ~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:472:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 472 | printf((char const *)"__alignof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___11) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:472:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 472 | printf((char const *)"__alignof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___11) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 473 | __alignof__(barr));
- | ~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:498:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
- 498 | printf((char const *)"__alignof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___12) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- ./typeof1.cil.c:498:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
- 498 | printf((char const *)"__alignof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___12) - 1UL,
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 499 | __alignof__(funp));
- | ~~~~~~~~~~~~~~~~~
- | |
- | long unsigned int
- typespec1.c:7: Error: Invalid combination of type specifiers
- Fatal error: exception GoblintCil__Errormsg.Error
- make: *** [Makefile:184: testrun/typespec1] Error 2
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.001 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.001 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=6.39MB, max=1.56MB, minor=6.29MB, major=0.86MB, promoted=0.76MB
- minor collections=4 major collections=2 compactions=0
- ./union3.cil.c: In function 'main':
- ./union3.cil.c:77:79: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 77 | printf((char const *)"Offset of large in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.large),
- | ^
- ./union3.cil.c:80:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 80 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.large) != 0) {
- | ^
- ./union3.cil.c:87:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 87 | printf((char const *)"Offset of i1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i1),
- | ^
- ./union3.cil.c:90:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 90 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i1) != 40) {
- | ^
- ./union3.cil.c:97:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 97 | printf((char const *)"Offset of i2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i2),
- | ^
- ./union3.cil.c:100:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 100 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i2) != 40) {
- | ^
- ./union3.cil.c:107:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 107 | printf((char const *)"Offset of i3 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.i3),
- | ^
- ./union3.cil.c:110:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 110 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.i3) != 44) {
- | ^
- ./union3.cil.c:117:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 117 | printf((char const *)"Offset of a in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->a),
- | ^
- ./union3.cil.c:120:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 120 | if ((int )(& ((TEST_STRUCT *)0)->a) != 48) {
- | ^
- ./union3.cil.c:127:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 127 | printf((char const *)"Offset of u1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.u1),
- | ^
- ./union3.cil.c:130:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 130 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.u1) != 52) {
- | ^
- ./union3.cil.c:137:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 137 | printf((char const *)"Offset of u2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.u2),
- | ^
- ./union3.cil.c:140:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 140 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.u2) != 52) {
- | ^
- ./union3.cil.c:147:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 147 | printf((char const *)"Offset of f1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f1),
- | ^
- ./union3.cil.c:150:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 150 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f1) != 52) {
- | ^
- ./union3.cil.c:157:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 157 | printf((char const *)"Offset of f2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f2),
- | ^
- ./union3.cil.c:160:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 160 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f2) != 56) {
- | ^
- ./union3.cil.c:167:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 167 | printf((char const *)"Offset of b in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->b),
- | ^
- ./union3.cil.c:170:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
- 170 | if ((int )(& ((TEST_STRUCT *)0)->b) != 60) {
- | ^
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- make: *** [Makefile:185: testrun/union6] Error 1
- va-arg-1.c:22: Warning: Body of function f falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.001 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.004 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.001 s
- Timing used
- Memory statistics: total=9.60MB, max=1.79MB, minor=9.44MB, major=1.24MB, promoted=1.08MB
- minor collections=6 major collections=3 compactions=0
- ./va-arg-2.cil.c:19:21: warning: conflicting types for built-in function 'strlen'; expected 'long unsigned int(const char *)' [-Wbuiltin-declaration-mismatch]
- 19 | extern unsigned int strlen(char const * ) ;
- | ^~~~~~
- ./va-arg-2.cil.c:1:1: note: 'strlen' is declared in header '<string.h>'
- +++ |+#include <string.h>
- 1 | /* Generated by Goblint-CIL v. 2.0.2 */
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.15MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- ./var_named_hidden.cil.c: In function 'main':
- ./var_named_hidden.cil.c:9:7: warning: variable 'hidden' set but not used [-Wunused-but-set-variable]
- 9 | int hidden ;
- | ^~~~~~
- First CIL check
- Timings:
- TOTAL 0.004 s
- parse 0.002 s
- convert to CIL 0.002 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=9.57MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.17MB
- minor collections=6 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=9.57MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.16MB
- minor collections=6 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.010 s
- parse 0.006 s
- convert to CIL 0.003 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=19.11MB, max=3.04MB, minor=18.87MB, major=2.49MB, promoted=2.25MB
- minor collections=11 major collections=4 compactions=0
- vararg3: Cucu Bau
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=9.56MB, max=1.90MB, minor=9.44MB, major=1.29MB, promoted=1.17MB
- minor collections=6 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.006 s
- parse 0.003 s
- convert to CIL 0.002 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=11.76MB, max=2.31MB, minor=11.53MB, major=1.75MB, promoted=1.52MB
- minor collections=7 major collections=3 compactions=0
- ./vararg5.cil.c: In function 'main':
- ./vararg5.cil.c:96:9: warning: variable 's' set but not used [-Wunused-but-set-variable]
- 96 | char *s ;
- | ^
- ./vararg5.cil.c:95:7: warning: variable 'y' set but not used [-Wunused-but-set-variable]
- 95 | int y ;
- | ^
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.83MB, promoted=0.66MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.004 s
- parse 0.002 s
- convert to CIL 0.002 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=9.56MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.17MB
- minor collections=6 major collections=3 compactions=0
- ./varargauto1.cil.c: In function 'main':
- ./varargauto1.cil.c:28:15: warning: variable 'py' set but not used [-Wunused-but-set-variable]
- 28 | struct foo *py ;
- | ^~
- ./varargauto1.cil.c: In function 'myva1':
- ./varargauto1.cil.c:100:26: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'long int' [-Wformat=]
- 100 | printf((char const *)"An_intptr: %x (%d)\n", (long )data___1, *data___1);
- | ^~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
- | |
- | long int
- First CIL check
- Timings:
- TOTAL 0.006 s
- parse 0.004 s
- convert to CIL 0.002 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=14.87MB, max=2.54MB, minor=14.68MB, major=1.94MB, promoted=1.74MB
- minor collections=9 major collections=4 compactions=0
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.51MB, max=1.89MB, minor=7.34MB, major=1.29MB, promoted=1.12MB
- minor collections=5 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=9.58MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.16MB
- minor collections=6 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- wchar3.c:5: Warning: Body of function check falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- wchar4.c:64: Warning: Truncating integer 416611827811 to 99
- First CIL check
- Timings:
- TOTAL 0.006 s
- parse 0.003 s
- convert to CIL 0.002 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=11.73MB, max=2.31MB, minor=11.53MB, major=1.75MB, promoted=1.55MB
- minor collections=7 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.53MB, max=1.89MB, minor=7.34MB, major=1.23MB, promoted=1.04MB
- minor collections=5 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.002 s
- parse 0.002 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=9.67MB, max=1.99MB, minor=9.44MB, major=1.35MB, promoted=1.11MB
- minor collections=6 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.003 s
- parse 0.001 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.60MB, max=1.89MB, minor=7.34MB, major=1.32MB, promoted=1.05MB
- minor collections=5 major collections=3 compactions=0
- wrongnumargs.c:11: Warning: Too few arguments in call to f.
- First CIL check
- wrongnumargs.c:11: Warning: CIL invariant broken: Not enough arguments
- Bug: CIL's internal data structures are inconsistent (see the warnings above). This may be a bug in CIL.
-
- Error: Error while processing file; see above for details.
- Fatal error: exception GoblintCil__Errormsg.Error
- make: *** [Makefile:184: testrun/wrongnumargs] Error 2
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- ./c11-align-of.cil.c: In function 'main':
- ./c11-align-of.cil.c:11:7: warning: variable 'x' set but not used [-Wunused-but-set-variable]
- 11 | int x ;
- | ^
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.001 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.52MB, minor=4.19MB, major=0.85MB, promoted=0.68MB
- minor collections=3 major collections=2 compactions=0
- ./c11-atomic-store.cil.c: In function 'main':
- ./c11-atomic-store.cil.c:17:14: warning: variable 'blub' set but not used [-Wunused-but-set-variable]
- 17 | atomic_int blub ;
- | ^~~~
- ./c11-atomic-store.cil.c:29:10: warning: 'ato' is used uninitialized [-Wuninitialized]
- 29 | blub = ato;
- | ^~~
- <built-in>: note: by argument 1 of type 'const volatile void *' to '__atomic_load_4' declared here
- ./c11-atomic-store.cil.c:15:14: note: 'ato' declared here
- 15 | atomic_int ato ;
- | ^~~
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.80MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
- minor collections=3 major collections=2 compactions=0
- ./gcc-c11-generic-1.cil.c: In function 'main':
- ./gcc-c11-generic-1.cil.c:43:7: warning: variable 'cn' set but not used [-Wunused-but-set-variable]
- 43 | int cn ;
- | ^~
- c99-bool.c:15: Warning: Body of function main falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.002 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.50MB, max=1.73MB, minor=7.34MB, major=1.09MB, promoted=0.93MB
- minor collections=5 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.014 s
- parse 0.006 s
- convert to CIL 0.008 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=34.84MB, max=3.43MB, minor=34.60MB, major=2.83MB, promoted=2.59MB
- minor collections=19 major collections=5 compactions=0
- ./c99-complex.cil.c: In function 'main':
- ./c99-complex.cil.c:135:19: warning: variable 'x00' set but not used [-Wunused-but-set-variable]
- 135 | _Complex double x00 ;
- | ^~~
- ./c99-complex.cil.c:133:19: warning: variable 'x0' set but not used [-Wunused-but-set-variable]
- 133 | _Complex double x0 ;
- | ^~
- ./c99-complex.cil.c: In function 'parsedebug':
- ./c99-complex.cil.c:272:5: warning: statement with no effect [-Wunused-value]
- 272 | cpowl((_Complex long double )1.0iF, (_Complex long double )2);
- | ^~~~~
- ./c99-complex.cil.c:277:5: warning: statement with no effect [-Wunused-value]
- 277 | cpow((_Complex double )1.0iF, (_Complex double )2);
- | ^~~~
- ./c99-complex.cil.c:282:5: warning: statement with no effect [-Wunused-value]
- 282 | cpow((_Complex double )1.0iF, (_Complex double )2);
- | ^~~~
- ./c99-complex.cil.c:285:5: warning: statement with no effect [-Wunused-value]
- 285 | cpow((_Complex double )1.0iF, (_Complex double )2);
- | ^~~~
- ./c99-complex.cil.c:258:7: warning: variable 'tmp' set but not used [-Wunused-but-set-variable]
- 258 | int tmp ;
- | ^~~
- c99-fixed-width-int.c:31: Warning: Body of function main falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=6.47MB, max=1.67MB, minor=6.29MB, major=0.95MB, promoted=0.78MB
- minor collections=4 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.006 s
- parse 0.004 s
- convert to CIL 0.002 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=14.91MB, max=2.65MB, minor=14.68MB, major=2.04MB, promoted=1.81MB
- minor collections=9 major collections=4 compactions=0
- ./c99-float-pragma.cil.c:22: warning: ignoring '#pragma STDC FENV_ACCESS' [-Wunknown-pragmas]
- 22 | #pragma STDC FENV_ACCESS OFF
- First CIL check
- Timings:
- TOTAL 0.002 s
- parse 0.002 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.49MB, max=1.73MB, minor=7.34MB, major=1.08MB, promoted=0.93MB
- minor collections=5 major collections=3 compactions=0
- First CIL check
- Timings:
- TOTAL 0.002 s
- parse 0.001 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=7.50MB, max=1.56MB, minor=7.34MB, major=0.99MB, promoted=0.82MB
- minor collections=5 major collections=3 compactions=0
- ./c99-struct.cil.c: In function 'foo':
- ./c99-struct.cil.c:45:15: warning: variable 'f2' set but not used [-Wunused-but-set-variable]
- 45 | struct fops f2 ;
- | ^~
- ./c99-struct.cil.c:44:36: warning: variable 'ar' set but not used [-Wunused-but-set-variable]
- 44 | struct __anonstruct_ar_109580352 ar[4] ;
- | ^~
- ./c99-struct.cil.c:42:7: warning: variable 'a' set but not used [-Wunused-but-set-variable]
- 42 | int a[6] ;
- | ^
- ./c99-struct.cil.c: In function 'main':
- ./c99-struct.cil.c:193:10: warning: variable 'sx' set but not used [-Wunused-but-set-variable]
- 193 | char **sx ;
- | ^~
- ./c99-struct.cil.c:189:16: warning: variable 'p1' set but not used [-Wunused-but-set-variable]
- 189 | struct point p1 ;
- | ^~
- treating long double constant 1.0l as double constant at c99-tgmath.c:12 (only relevant if first argument of CReal is used).
- treating long double constant 1.0l as double constant at c99-tgmath.c:37 (only relevant if first argument of CReal is used).
- First CIL check
- Timings:
- TOTAL 0.006 s
- parse 0.005 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=20.19MB, max=3.23MB, minor=19.92MB, major=2.65MB, promoted=2.38MB
- minor collections=12 major collections=5 compactions=0
- ./c99-tgmath.cil.c: In function 'main':
- ./c99-tgmath.cil.c:74:15: warning: variable 'idk3' set but not used [-Wunused-but-set-variable]
- 74 | long double idk3 ;
- | ^~~~
- ./c99-tgmath.cil.c:72:7: warning: variable 'j' set but not used [-Wunused-but-set-variable]
- 72 | int j ;
- | ^
- ./c99-tgmath.cil.c:70:7: warning: variable 'i' set but not used [-Wunused-but-set-variable]
- 70 | int i ;
- | ^
- ./c99-tgmath.cil.c:68:19: warning: variable 'idk2' set but not used [-Wunused-but-set-variable]
- 68 | _Complex double idk2 ;
- | ^~~~
- ./c99-tgmath.cil.c:66:19: warning: variable 'idk' set but not used [-Wunused-but-set-variable]
- 66 | _Complex double idk ;
- | ^~~
- ./c99-tgmath.cil.c:64:10: warning: variable 'f2d' set but not used [-Wunused-but-set-variable]
- 64 | double f2d ;
- | ^~~
- ./c99-tgmath.cil.c:61:9: warning: variable 'f2' set but not used [-Wunused-but-set-variable]
- 61 | float f2 ;
- | ^~
- First CIL check
- Timings:
- TOTAL 0.014 s
- parse 0.009 s
- convert to CIL 0.005 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=19.15MB, max=3.17MB, minor=18.87MB, major=2.61MB, promoted=2.34MB
- minor collections=11 major collections=4 compactions=0
- ./c99-tgmath2.cil.c: In function 'fun':
- ./c99-tgmath2.cil.c:34:7: warning: variable 'n1' set but not used [-Wunused-but-set-variable]
- 34 | int n1 ;
- | ^~
- ./c99-tgmath2.cil.c:32:7: warning: variable 'n0' set but not used [-Wunused-but-set-variable]
- 32 | int n0 ;
- | ^~
- c99-universal-character-names.c:3: Warning: Body of function main falls-through. Adding a return statement
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
- minor collections=3 major collections=2 compactions=0
- ./c99-universal-character-names.cil.c: In function 'main':
- ./c99-universal-character-names.cil.c:8:9: warning: variable 'arr' set but not used [-Wunused-but-set-variable]
- 8 | char *arr ;
- | ^~~
- ./c99-universal-character-names.cil.c:7:7: warning: variable '\U000003b1' set but not used [-Wunused-but-set-variable]
- 7 | int \U000003b1 ;
- | ^~~~~~~~~~
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.81MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- enum3c.c:3: Error: Constant initializer 22 << 34 not an integer
- Error on A.ONLYTYPEDEF (GoblintCil__Errormsg.Error)
- enum3c.c:11: Error: Cannot resolve variable LARGE.
- enum3c.c:11: Error: global initializer
- error in createGlobal(magic2: enum3c.c:11): GoblintCil__Errormsg.Errorenum3c.c:17: Error: Cannot resolve variable TINY.
- Error: Cabs2cil had some errors
- Fatal error: exception GoblintCil__Errormsg.Error
- make: *** [Makefile:208: testrungcc/enum3c] Error 2
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.001 s
- parse 0.000 s
- convert to CIL 0.001 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
- First CIL check
- Timings:
- TOTAL 0.000 s
- parse 0.000 s
- convert to CIL 0.000 s
- printCIL 0.000 s
- Timing used
- Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
- minor collections=3 major collections=2 compactions=0
[ERROR] The compilation of goblint-cil.2.0.2 failed at "dune build -p goblint-cil -j 255 @install @runtest".
#=== ERROR while compiling goblint-cil.2.0.2 ==================================#
# context 2.5.0 | linux/x86_64 | ocaml-variants.5.4.0~beta1+options | file:///home/opam/opam-repository
# path ~/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p goblint-cil -j 255 @install @runtest
# exit-code 1
# env-file ~/.opam/log/goblint-cil-7-b88793.env
# output-file ~/.opam/log/goblint-cil-7-b88793.out
### output ###
# (cd _build/default && /home/opam/.opam/5.4/bin/ocamlyacc src/frontc/cparser.mly)
# 1 shift/reduce conflict, 1 reduce/reduce conflict.
# (cd _build/default/src && /home/opam/.opam/5.4/bin/cppo -V OCAML:5.4.0~beta1 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-193:
# 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 --showoutput))))
# (cd _build/default/test && ./testcil -r --regrtest --showoutput)
# Test infrastructure for CIL on linux
# There are 453 tests enabled
# ------------ [0] CC="gcc" make arcombine ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -c array1.c array2.c
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly \
# --mode=AR --merge --verbose crv array.a array1.o array2.o
# AR called with crv array.a array1.o array2.o
# a - array1.o
# a - array2.o
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -o matrix.exe array.a matrix.c
# cd ./small1; ./matrix.exe
# ------------ [1] CC="gcc" make baddef ------------
# cd ./small2; gcc baddef1.c baddef2.c -o baddef.exe \
# && ./baddef.exe
# size1: 8
# size2: 12
# (correct output is 8, then 12)
# rm -f ./small2/baddef.exe
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.c -c -o baddef1.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef2.c -c -o baddef2.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.o baddef2.o -obaddef.exe
# ./small2/baddef.exe
# size1: 8
# size2: 12
# (correct output is 8, then 12)
# ------------ [2] CC="gcc" make comb ------------
# rm -f ./small2/comb.exe
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c -c -o comb1.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb2.c -c -o comb2.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb3.c -c -o comb3.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb4.c -c -o comb4.o; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.o comb2.o comb3.o comb4.o -ocomb.exe
# ./small2/comb.exe
# foo_com3(6): 19
# foo2_com4(61): 70
# ------------ [3] CC="gcc" make combine1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine1_1.c combine1_2.c combine1_3.c \
# -ocombine1.exe
# cd ./small1; ./combine1.exe
# Success
# ------------ [4] CC="gcc" make combine10 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine10_1.c combine10_2.c combine10_3.c \
# -ocombine10.exe
# cd ./small1; ./combine10.exe
# Success
# ------------ [5] CC="gcc" make combine11 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine11_1.c combine11_2.c \
# -ocombine11.exe
# cd ./small1; ./combine11.exe
# ------------ [6] CC="gcc" make combine12 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine12_1.c combine12_2.c \
# -ocombine12.exe
# cd ./small1; ./combine12.exe
# ------------ [7] CC="gcc" make combine13 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine13_1.c combine13_2.c \
# -ocombine13.exe
# cd ./small1; ./combine13.exe
# Address is 7e930040
# Success
# ------------ [8] CC="gcc" make combine14 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine14_1.c combine14_2.c \
# -ocombine14.exe
# cd ./small1; ./combine14.exe
# Success
# ------------ [9] CC="gcc" make combine15 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine15_1.c combine15_2.c \
# -ocombine15.exe
# cd ./small1; ./combine15.exe
# Address of x1=9d983060 and x2=9d983050
# Address of y1=9d983058 and y2=9d983068
# ------------ [10] CC="gcc" make combine16 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine16_1.c combine16_2.c \
# -ocombine16.exe
# cd ./small1; ./combine16.exe
# ------------ [11] CC="gcc" make combine17 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine17_1.c combine17_2.c \
# -ocombine17.exe
# cd ./small1; ./combine17.exe
# Success
# ------------ [12] CC="gcc" make combine18 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine18_1.c combine18_2.c \
# -ocombine18.exe
# cd ./small1; ./combine18.exe
# Success
# ------------ [13] CC="gcc" make combine2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine2_1.c combine2_2.c combine2_3.c \
# -ocombine2.exe
# cd ./small1; ./combine2.exe
# Success
# ------------ [14] CC="gcc" make combine20 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine20_1.c combine20_2.c \
# -ocombine20.exe
# cd ./small1; ./combine20.exe
# ------------ [15] CC="gcc" make combine21 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine21_1.c combine21_2.c \
# -ocombine21.exe
# cd ./small1; ./combine21.exe
# ------------ [16] (fail) CC="gcc" make combine22 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine22_1.c combine22_2.c \
# -ocombine22.exe
# ------------ [17] CC="gcc" make combine3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine3_1.c combine3_2.c combine3_3.c \
# -ocombine3.exe
# cd ./small1; ./combine3.exe
# Success
# ------------ [18] CC="gcc" make combine5 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine5_1.c combine5_2.c combine5_3.c \
# -ocombine5.exe
# cd ./small1; ./combine5.exe
# Address of TimeOuts=3b322040
# ------------ [19] CC="gcc" make combine6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine6_1.c combine6_2.c combine6_3.c \
# -ocombine6.exe
# cd ./small1; ./combine6.exe
# ------------ [20] CC="gcc" make combine8 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine8_1.c combine8_2.c \
# -ocombine8.exe
# cd ./small1; ./combine8.exe
# Success
# ------------ [21] (fail) CC="gcc" make combine9 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine9_1.c combine9_2.c \
# -ocombine9.exe
# cd ./small1; ./combine9.exe
# Error 1
# ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_allocate_1.c combine_allocate_2.c \
# -ocombine_allocate.exe
# cd ./small1; ./combine_allocate.exe
# ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -fcommon \
# combine_copyptrs_1.c combine_copyptrs_2.c \
# -ocombine_copyptrs.exe
# cd ./small1; ./combine_copyptrs.exe
# ------------ [24] CC="gcc" make combine_init ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_init_1.c combine_init_2.c \
# -ocombine_init.exe
# cd ./small1; ./combine_init.exe
# ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_node_alloc_1.c combine_node_alloc_2.c \
# -ocombine_node_alloc.exe
# ------------ [26] (fail) CC="gcc" make combine_samefn ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_samefn_1.c combine_samefn_2.c \
# -ocombine_samefn.exe
# ------------ [27] CC="gcc" make combine_sbump ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_sbump_1.c combine_sbump_2.c \
# -ocombine_sbump.exe
# cd ./small1; ./combine_sbump.exe
# ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_sbumpB_1.c combine_sbumpB_2.c combine_sbumpB_3.c \
# -ocombine_sbumpB.exe
# cd ./small1; ./combine_sbumpB.exe
# ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_syserr_1.c combine_syserr_2.c \
# -ocombine_syserr.exe
# cd ./small1; ./combine_syserr.exe
# ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combine_theFunc_1.c combine_theFunc_2.c combine_theFunc_3.c \
# -ocombine_theFunc.exe
# cd ./small1; ./combine_theFunc.exe
# ------------ [31] CC="gcc" make combinealias ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinealias_1.c combinealias_2.c \
# -ocombinealias.exe
# cd ./small1; ./combinealias.exe
# Hello, world! 42
# ------------ [32] (fail) CC="gcc" make combinec99inline ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline_1.c combine-c99inline_2.c \
# -ocombine-c99inline.exe
# ------------ [33] CC="gcc" make combinec99inline1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline1_1.c combine-c99inline1_2.c \
# -ocombine-c99inline1.exe
# cd ./small1; ./combine-c99inline1.exe
# ------------ [34] CC="gcc" make combinec99inline2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline2_1.c combine-c99inline2_2.c \
# -ocombine-c99inline2.exe
# cd ./small1; ./combine-c99inline2.exe
# ------------ [35] CC="gcc" make combinec99inline3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline3_1.c combine-c99inline3_2.c \
# -ocombine-c99inline3.exe
# cd ./small1; ./combine-c99inline3.exe
# ------------ [36] CC="gcc" make combinec99inline4 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline4_1.c combine-c99inline4_2.c \
# -ocombine-c99inline4.exe
# cd ./small1; ./combine-c99inline4.exe
# ------------ [37] CC="gcc" make combinec99inline5 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline5_1.c combine-c99inline5_2.c \
# -ocombine-c99inline5.exe
# cd ./small1; ./combine-c99inline5.exe
# ------------ [38] CC="gcc" make combinec99inline6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline6_1.c combine-c99inline6_2.c \
# -ocombine-c99inline6.exe
# cd ./small1; ./combine-c99inline6.exe
# ------------ [39] CC="gcc" make combinec99inline7 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline7_1.c combine-c99inline7_2.c combine-c99inline7_3.c \
# -ocombine-c99inline7.exe
# cd ./small1; ./combine-c99inline7.exe
# ------------ [40] CC="gcc" make combinec99inline8 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline8_1.c combine-c99inline8_2.c combine-c99inline8_3.c \
# -ocombine-c99inline8.exe
# cd ./small1; ./combine-c99inline8.exe
# ------------ [41] CC="gcc" make combinec99inline9 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge \
# combine-c99inline9_1.c combine-c99inline9_2.c \
# -ocombine-c99inline9.exe
# cd ./small1; ./combine-c99inline9.exe
# ------------ [42] CC="gcc" make combinec99mergeinline1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline1_1.c combine-c99-mergeinline1_2.c \
# -ocombine-c99-mergeinline1.exe
# cd ./small1; ./combine-c99-mergeinline1.exe
# ------------ [43] CC="gcc" make combinec99mergeinline2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline2_1.c combine-c99-mergeinline2_2.c \
# -ocombine-c99-mergeinline2.exe
# cd ./small1; ./combine-c99-mergeinline2.exe
# ------------ [44] CC="gcc" make combinec99mergeinline3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline3_1.c combine-c99-mergeinline3_2.c \
# -ocombine-c99-mergeinline3.exe
# cd ./small1; ./combine-c99-mergeinline3.exe
# ------------ [45] CC="gcc" make combinec99mergeinline4 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline4_1.c combine-c99-mergeinline4_2.c \
# -ocombine-c99-mergeinline4.exe
# cd ./small1; ./combine-c99-mergeinline4.exe
# ------------ [46] CC="gcc" make combinec99mergeinline5 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline5_1.c combine-c99-mergeinline5_2.c \
# -ocombine-c99-mergeinline5.exe
# cd ./small1; ./combine-c99-mergeinline5.exe
# ------------ [47] CC="gcc" make combinec99mergeinline6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline6_1.c combine-c99-mergeinline6_2.c \
# -ocombine-c99-mergeinline6.exe
# cd ./small1; ./combine-c99-mergeinline6.exe
# ------------ [48] CC="gcc" make combinec99mergeinline7 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -O1 -std=c99 --verbose -fcommon --merge --mergeinlines \
# combine-c99-mergeinline7_1.c combine-c99-mergeinline7_2.c \
# -ocombine-c99-mergeinline7.exe
# cd ./small1; ./combine-c99-mergeinline7.exe
# ------------ [49] CC="gcc" make combineenum1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineenum1_1.c combineenum1_2.c \
# -ocombineenum1.exe
# cd ./small1; ./combineenum1.exe
# Success
# ------------ [50] CC="gcc" make combineenum2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineenum2_1.c combineenum2_2.c \
# -ocombineenum2.exe
# cd ./small1; ./combineenum2.exe
# ------------ [51] CC="gcc" make combineenum3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineenum3_1.c combineenum3_2.c \
# -ocombineenum3.exe
# cd ./small1; ./combineenum3.exe
# ------------ [52] CC="gcc" make combinegnuinline ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --merge -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinegnuinline_1.c combinegnuinline_2.c \
# -ocombinegnuinline.exe
# cd ./small1; ./combinegnuinline.exe
# ------------ [53] (fail) CC="gcc" make combineinline1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline1_1.c combineinline1_2.c \
# -ocombineinline1.exe
# ------------ [54] CC="gcc" make combineinline2 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline2_1.c combineinline2_2.c \
# -ocombineinline2.exe
# cd ./small1; ./combineinline2.exe
# Success
# ------------ [55] (fail) CC="gcc" make combineinline3 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline3_1.c combineinline3_2.c \
# -ocombineinline3.exe
# cd ./small1; ./combineinline3.exe
# Error 1
# ------------ [56] (fail) CC="gcc" make combineinline4 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline4_1.c combineinline4_2.c \
# -ocombineinline4.exe
# cd ./small1; ./combineinline4.exe
# Merging of inlines did not work
# Error 1
# ------------ [57] CC="gcc" make combineinline6 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combineinline6_1.c combineinline6_2.c \
# -ocombineinline6.exe
# cd ./small1; ./combineinline6.exe
# ------------ [58] CC="gcc" make combinelibrik ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinelibrik_1.c combinelibrik_2.c \
# -ocombinelibrik.exe
# cd ./small1; ./combinelibrik.exe
# ------------ [59] CC="gcc" make combinemerge1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon --merge\
# combinemerge1_1.c combinemerge1_2.c combinemerge1_3.c \
# -ocombinemerge1.exe
# cd ./small1; ./combinemerge1.exe
# ------------ [60] CC="gcc" make combinestruct1 ------------
# cd ./small1; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -fcommon \
# combinestruct1_1.c combinestruct1_2.c \
# -ocombinestruct1.exe
# cd ./small1; ./combinestruct1.exe
# ------------ [61] CC="gcc" make merge-ar ------------
# cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge -c merge-ar.c merge-twice-1.c
# cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge --mode=AR cr libmerge.a merge-ar.o merge-twice-1.o
# cd small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --merge libmerge.a -o merge-ar
# ------------ [62] CC="gcc" make mergeinit ------------
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --merge --strictcheck --keepunused mergeinit1.c mergeinit2_1_reftable.c mergeinit2_2_definition.c mergeinit3.c mergeinit4.c
# ------------ [63] CC="gcc" make mergeinline ------------
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats mergeinline1.c mergeinline2.c -o mergeinline.exe
# ./small2/mergeinline.exe
# ------------ [64] CC="gcc" make mergestruct ------------
# cd ./small2; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon mergestruct1.c mergestruct2.c -o mergestruct.exe
# ./small2/mergestruct.exe
# ------------ [65] CC="gcc" make mixedcomb ------------
# rm -f ./small2/comb.exe
# cd ./small2; \
# gcc -fcommon -E -o comb2.i comb2.c; \
# gcc -fcommon -S -o comb3.s comb3.c; \
# gcc -fcommon -c -o comb4.o comb4.c; \
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c comb2.i comb3.s comb4.o -ocomb.exe
# ./small2/comb.exe
# foo_com3(6): 19
# foo2_com4(61): 70
# ------------ [66] CC="gcc" make runall/alpha ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl alpha.c
# Found test baseline with msg:
# Found test overflow with msg:Encountered a variable name containing ___ and many digits
#
# ********* alpha: Running test baseline from line 2
# Test baseline:
# SUCCESS => 1
# LINE => 2
# MSG => ,
# MSGPATTERN => 0
# 2: KEEP(baseline): keep=1
# 21: KEEP(overflow): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./alpha-tmp.c -oalpha-tmp.exe && ./alpha-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# ./alpha-tmp.c: In function 'f':
# ./alpha-tmp.c:7:17: warning: variable 'G___152598332' set but not used [-Wunused-but-set-variable]
# 7 | }
# | ^
# ./alpha-tmp.c: In function 'f2':
# ./alpha-tmp.c:13:17: warning: variable 'G___1525983317___0' set but not used [-Wunused-but-set-variable]
# 13 | }
# | ^
# ./alpha-tmp.c: In function 'f3':
# ./alpha-tmp.c:18:17: warning: variable 'G__1525983317999999999994352352523523993424999' set but not used [-Wunused-but-set-variable]
# 18 | }
# | ^
# ./alpha-tmp.c: In function 'f4':
# ./alpha-tmp.c:24:17: warning: variable 'G___152598332' set but not used [-Wunused-but-set-variable]
# 24 | }
# | ^
# Test baseline returned with code 0. Expected success
# Test baseline (line 2) was successful
#
# ********* alpha: Running test overflow from line 21
# Test overflow:
# SUCCESS => 0
# LINE => 21
# MSG => Encountered a variable name containing ___ and many digits,
# MSGPATTERN =>
# 2: KEEP(baseline): keep=0
# 21: KEEP(overflow): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./alpha-tmp.c -oalpha-tmp.exe && ./alpha-tmp.exe
# Unimplemented: Encountered a variable name containing ___ and many digits. This could cause overflow in the Alpha renaming module.
# Context : 2cil: f4
# Error in doStatement (GoblintCil__Errormsg.Error)
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# Test overflow returned with code 512. Expected failure
# All 2 tests were successful!
# ------------ [67] CC="gcc" make runall/extinline ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl extinline.c
# Found test baseline with msg:
# Found test bad with msg:Trying to rename
#
# ********* extinline: Running test bad from line 20
# Test bad:
# SUCCESS => 0
# LINE => 20
# MSG => Trying to rename,
# MSGPATTERN =>
# 7: KEEP(baseline): keep=0
# 20: KEEP(bad): keep=1
# 21: KEEP(bad): keep=1
# 22: KEEP(bad): keep=1
# 23: KEEP(bad): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./extinline-tmp.c -oextinline-tmp.exe && ./extinline-tmp.exe
# ./extinline-tmp.c:20: Unimplemented: Trying to rename identity to
# identity__extinline, but identity__extinline already exists in the env.
# "__extinline" is reserved for CIL.
#
# Fatal error: exception GoblintCil__Errormsg.Error
# Test bad returned with code 512. Expected failure
#
# ********* extinline: Running test baseline from line 7
# Test baseline:
# SUCCESS => 1
# LINE => 7
# MSG => ,
# MSGPATTERN => 0
# 7: KEEP(baseline): keep=1
# 20: KEEP(bad): keep=0
# 21: KEEP(bad): keep=0
# 22: KEEP(bad): keep=0
# 23: KEEP(bad): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./extinline-tmp.c -oextinline-tmp.exe && ./extinline-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# ./extinline-tmp.c:31:5: warning: first argument of 'main' should be 'int' [-Wmain]
# 31 | int main(int *p, char** argv)
# | ^~~~
# Test baseline returned with code 0. Expected success
# Test baseline (line 7) was successful
# All 2 tests were successful!
# ------------ [68] CC="gcc" make runall/runall_misc ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl runall_misc.c
# Found test rbrace with msg:syntax error
#
# ********* runall_misc: Running test rbrace from line 8
# Test rbrace:
# SUCCESS => 0
# LINE => 8
# MSG => syntax error,
# MSGPATTERN =>
# 8: KEEP(rbrace): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./runall_misc-tmp.c -orunall_misc-tmp.exe && ./runall_misc-tmp.exe
# ./runall_misc-tmp.c[8:0-0] : syntax error
# Parsing errorFatal error: exception GoblintCil__Frontc.ParseError("Parse error")
# Test rbrace returned with code 512. Expected failure
# All 1 tests were successful!
# ------------ [69] CC="gcc" make runall/structattr2 ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl structattr2.c
# Found test baseline with msg:
# Found test archspecific with msg:
# Found test const1 with msg:
# Found test const2 with msg:
#
# ********* structattr2: Running test archspecific from line 42
# Test archspecific:
# SUCCESS => 1
# LINE => 42
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=0
# 47: KEEP(const2): keep=0
# 51: IFTEST(archspecific): keep=1, env = 1,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.83MB, promoted=0.67MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# Test archspecific returned with code 0. Expected success
# Test archspecific (line 42) was successful
#
# ********* structattr2: Running test baseline from line 40
# Test baseline:
# SUCCESS => 1
# LINE => 40
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=0
# 47: KEEP(const2): keep=0
# 51: IFTEST(archspecific): keep=0, env = 0,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# Test baseline returned with code 0. Expected success
# Test baseline (line 40) was successful
#
# ********* structattr2: Running test const1 from line 45
# Test const1:
# SUCCESS => 0
# LINE => 45
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=1
# 47: KEEP(const2): keep=0
# 51: IFTEST(archspecific): keep=0, env = 0,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# ./structattr2-tmp.c: In function 'main':
# ./structattr2-tmp.c:45:9: error: increment of member 'a' in read-only object
# 45 | e.a++; //KEEP const1: error
# | ^~
# Test const1 returned with code 256. Expected failure
# Test const1 (line 45) was successful
#
# ********* structattr2: Running test const2 from line 47
# Test const2:
# SUCCESS => 0
# LINE => 47
# MSG => ,
# MSGPATTERN => 0
# 45: KEEP(const1): keep=0
# 47: KEEP(const2): keep=1
# 51: IFTEST(archspecific): keep=0, env = 0,1
# 59: ENDIF: keep=1, env = 1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./structattr2-tmp.c -ostructattr2-tmp.exe && ./structattr2-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.49MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./structattr2-tmp.c:23:1: warning: useless type qualifier in empty declaration
# 23 |
# | ^
# ./structattr2-tmp.c:27:1: warning: useless type qualifier in empty declaration
# 27 |
# | ^
# ./structattr2-tmp.c: In function 'main':
# ./structattr2-tmp.c:47:10: error: increment of member 'a' in read-only object
# 47 | e2.a++; //KEEP const2: error
# | ^~
# Test const2 returned with code 256. Expected failure
# Test const2 (line 47) was successful
# All 4 tests were successful!
# ------------ [70] CC="gcc" make runall/switch ------------
# cd ./small2; \
# CCURED_NO_SIGABRT=1 \
# COMMAND="/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall __FILE__ -o__BASENAME__.exe \
# && ./__BASENAME__.exe" \
# COMMENT="//" \
# perl ../runall.pl switch.c
# Found test baseline with msg:
# Found test dupDefault1 with msg:duplicate default
# Found test dupDefault2 with msg:duplicate default
#
# ********* switch: Running test baseline from line 4
# Test baseline:
# SUCCESS => 1
# LINE => 4
# MSG => ,
# MSGPATTERN => 0
# 12: KEEP(dupDefault1): keep=0
# 27: KEEP(dupDefault2): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.15MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./switch-tmp.c: In function 'foo':
# ./switch-tmp.c:9:13: warning: statement will never be executed [-Wswitch-unreachable]
# 9 | y = "who runs this?"[3];
# | ^~~~~~~~~~~~~~~~
# Result is: 171822
# Test baseline returned with code 0. Expected success
# Test baseline (line 4) was successful
#
# ********* switch: Running test dupDefault1 from line 12
# Test dupDefault1:
# SUCCESS => 0
# LINE => 12
# MSG => duplicate default,
# MSGPATTERN =>
# 12: KEEP(dupDefault1): keep=1
# 27: KEEP(dupDefault2): keep=0
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
# ./switch-tmp.c:35: Error: Switch statement at ./switch-tmp.c:8 has duplicate default entries.
# Error in doStatement (GoblintCil__Errormsg.Error)
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# Test dupDefault1 returned with code 512. Expected failure
#
# ********* switch: Running test dupDefault2 from line 27
# Test dupDefault2:
# SUCCESS => 0
# LINE => 27
# MSG => duplicate default,
# MSGPATTERN =>
# 12: KEEP(dupDefault1): keep=0
# 27: KEEP(dupDefault2): keep=1
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ./switch-tmp.c -oswitch-tmp.exe && ./switch-tmp.exe
# ./switch-tmp.c:35: Error: Switch statement at ./switch-tmp.c:8 has duplicate default entries.
# Error in doStatement (GoblintCil__Errormsg.Error)
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# Test dupDefault2 returned with code 512. Expected failure
# All 3 tests were successful!
# ------------ [71] CC="gcc" make scott-nogcc/bogus_redef ------------
# rm -f ./small2/bogus_redef.exe
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# bogus_redef.c \
# -obogus_redef.exe
# bash -c "time ./small2/bogus_redef.exe"
# ------------ [72] CC="gcc" make scott-nogcc/funcname ------------
# rm -f ./small2/funcname.exe
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# funcname.c \
# -ofuncname.exe
# bash -c "time ./small2/funcname.exe"
# __FUNCTION__ = main
# __PRETTY_FUNCTION__ = main
# ------------ [73] CC="gcc" make scott-nolink/brlock ------------
# rm -f ./small2/brlock.exe
# cd ./small2; gcc -c -Wall brlock.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge -c --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall --commPrintLn \
# brlock.c \
# -obrlock.exe
# ------------ [74] CC="gcc" make scott/arrayinit ------------
# rm -f ./small2/arrayinit.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall arrayinit.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# arrayinit.c \
# -oarrayinit.exe
# bash -c "time ./small2/arrayinit.exe"
# ------------ [75] (fail) CC="gcc" make scott/asmfndecl ------------
# rm -f ./small2/asmfndecl.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall asmfndecl.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# asmfndecl.c \
# -oasmfndecl.exe
# bash -c "time ./small2/asmfndecl.exe"
#
# [75] 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
# ------------ [76] CC="gcc" make scott/bisonerror ------------
# rm -f ./small2/bisonerror.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall bisonerror.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# bisonerror.c \
# -obisonerror.exe
# bash -c "time ./small2/bisonerror.exe"
# ------------ [77] CC="gcc" make scott/cmpzero ------------
# rm -f ./small2/cmpzero.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall cmpzero.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# cmpzero.c \
# -ocmpzero.exe
# bash -c "time ./small2/cmpzero.exe"
# i: 512
# c: 0
# no
# 2nd yes
# Success
# ------------ [78] CC="gcc" make scott/constdecl ------------
# rm -f ./small2/constdecl.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall constdecl.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# constdecl.c \
# -oconstdecl.exe
# bash -c "time ./small2/constdecl.exe"
# ------------ [79] CC="gcc" make scott/constfold ------------
# rm -f ./small2/constfold.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall constfold.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# constfold.c \
# -oconstfold.exe
# bash -c "time ./small2/constfold.exe"
# ------------ [80] CC="gcc" make scott/ctype ------------
# rm -f ./small2/ctype.exe
# cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall ctype.c
# cd ./small2; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \
# ctype.c \
# -octype.exe
# bash -c "time ./small2/ctype.exe"
# character: a
# decimal: 97
# isalpha: 1
# isdigit: 0
# character: 5
# decimal: 53
# isalpha: 0
# isdigit: 1
# character: $
# decimal: 36
# isalpha: 0
# isdigit: 0
# character: Z
# ...TRUNCATED BY DUNE...
# echo SUCCESS
# SUCCESS
# ------------ [331] CC="gcc" make testrun/label1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel1.exe label1.c
# cd ./small1; ./label1.exe
# echo SUCCESS
# SUCCESS
# ------------ [332] CC="gcc" make testrun/label2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel2.exe label2.c
# cd ./small1; ./label2.exe
# echo SUCCESS
# SUCCESS
# ------------ [333] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel2b.exe label2b.c
# cd ./small1; ./label2b.exe
# echo SUCCESS
# SUCCESS
# ------------ [334] CC="gcc" make testrun/label3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel3.exe label3.c
# cd ./small1; ./label3.exe
# echo SUCCESS
# SUCCESS
# ------------ [335] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --noMakeStaticGlobal --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel3b.exe label3b.c
# cd ./small1; ./label3b.exe
# echo SUCCESS
# SUCCESS
# ------------ [336] CC="gcc" make testrun/label4 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel4.exe label4.c
# cd ./small1; ./label4.exe
# echo SUCCESS
# SUCCESS
# ------------ [337] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --useComputedGoto --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel4b.exe label4b.c
# cd ./small1; ./label4b.exe
# echo SUCCESS
# SUCCESS
# ------------ [338] CC="gcc" make testrun/label6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olabel6.exe label6.c
# cd ./small1; ./label6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [339] CC="gcc" make testrun/land_expr ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oland_expr.exe land_expr.c
# cd ./small1; ./land_expr.exe
# echo SUCCESS
# SUCCESS
# ------------ [340] CC="gcc" make testrun/large_unsigned_long ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olarge_unsigned_long.exe large_unsigned_long.c
# cd ./small1; ./large_unsigned_long.exe
# echo SUCCESS
# SUCCESS
# ------------ [341] CC="gcc" make testrun/linux_signal ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olinux_signal.exe linux_signal.c
# cd ./small1; ./linux_signal.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [342] CC="gcc" make testrun/localinit ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olocalinit.exe localinit.c
# cd ./small1; ./localinit.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [343] CC="gcc" make testrun/logical ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological.exe logical.c
# cd ./small1; ./logical.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [344] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological1.exe logical1.c
# cd ./small1; ./logical1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [345] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ological2.exe logical2.c
# cd ./small1; ./logical2.exe
# echo SUCCESS
# SUCCESS
# ------------ [346] CC="gcc" make testrun/longBlock ------------
# ocamlfind ocamlc -I /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../../install/default/lib/goblint-cil -I /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../_build/src -package zarith unix.cma str.cma zarith.cma \
# goblintCil.cma \
# -o small1/longBlock.exe small1/longBlock.ml
# small1/longBlock.exe
# echo SUCCESS
# SUCCESS
# ------------ [347] CC="gcc" make testrun/lval1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -olval1.exe lval1.c
# cd ./small1; ./lval1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [348] CC="gcc" make testrun/macro_hidden ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omacro_hidden.exe macro_hidden.c
# cd ./small1; ./macro_hidden.exe
# echo SUCCESS
# SUCCESS
# ------------ [349] CC="gcc" make testrun/math1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omath1.exe math1.c
# cd ./small1; ./math1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [350] CC="gcc" make testrun/memcpy1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omemcpy1.exe memcpy1.c
# cd ./small1; ./memcpy1.exe
# echo SUCCESS
# SUCCESS
# ------------ [351] CC="gcc" make testrun/min ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omin.exe min.c
# cd ./small1; ./min.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [352] CC="gcc" make testrun/msvc1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omsvc1.exe msvc1.c
# cd ./small1; ./msvc1.exe
# echo SUCCESS
# SUCCESS
# ------------ [353] CC="gcc" make testrun/msvc5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -omsvc5.exe msvc5.c
# cd ./small1; ./msvc5.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [354] CC="gcc" make testrun/nan-global ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -onan-global.exe nan-global.c
# cd ./small1; ./nan-global.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [355] CC="gcc" make testrun/offsetof ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof.exe offsetof.c
# cd ./small1; ./offsetof.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [356] CC="gcc" make testrun/offsetof1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof1.exe offsetof1.c
# cd ./small1; ./offsetof1.exe
# echo SUCCESS
# SUCCESS
# ------------ [357] CC="gcc" make testrun/offsetof2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof2.exe offsetof2.c
# cd ./small1; ./offsetof2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [358] CC="gcc" make testrun/offsetof3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ooffsetof3.exe offsetof3.c
# cd ./small1; ./offsetof3.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [359] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -opacked.exe packed.c
# cd ./small1; ./packed.exe
# sizeof(foo) = 9.
# echo SUCCESS
# SUCCESS
# ------------ [360] CC="gcc" make testrun/percent400 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opercent400.exe percent400.c
# cd ./small1; ./percent400.exe
# echo SUCCESS
# SUCCESS
# ------------ [361] CC="gcc" make testrun/percentm ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opercentm.exe percentm.c
# cd ./small1; ./percentm.exe
# echo SUCCESS
# SUCCESS
# ------------ [362] CC="gcc" make testrun/perror ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -operror.exe perror.c
# cd ./small1; ./perror.exe
# echo SUCCESS
# SUCCESS
# ------------ [363] CC="gcc" make testrun/perror1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -operror1.exe perror1.c
# cd ./small1; ./perror1.exe
# echo SUCCESS
# SUCCESS
# ------------ [364] (fail) CC="gcc" make testrun/post-assign ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -opost-assign.exe post-assign.c
# cd ./small1; ./post-assign.exe
# Error 1
# ------------ [365] CC="gcc" make testrun/printf2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oprintf2.exe printf2.c
# cd ./small1; ./printf2.exe
# The buffer is: 7.75
# Success
# echo SUCCESS
# SUCCESS
# ------------ [366] CC="gcc" make testrun/question ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion.exe question.c
# cd ./small1; ./question.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [367] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion-fold-float.exe question-fold-float.c
# cd ./small1; ./question-fold-float.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [368] CC="gcc" make testrun/question2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion2.exe question2.c
# cd ./small1; ./question2.exe
# 5
# echo SUCCESS
# SUCCESS
# ------------ [369] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oquestion3.exe question3.c
# cd ./small1; ./question3.exe
# echo SUCCESS
# SUCCESS
# ------------ [370] CC="gcc" make testrun/return1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturn1.exe return1.c
# cd ./small1; ./return1.exe
# echo SUCCESS
# SUCCESS
# ------------ [371] CC="gcc" make testrun/returnvoid ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturnvoid.exe returnvoid.c
# cd ./small1; ./returnvoid.exe
# echo SUCCESS
# SUCCESS
# ------------ [372] CC="gcc" make testrun/returnvoid1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oreturnvoid1.exe returnvoid1.c
# cd ./small1; ./returnvoid1.exe
# echo SUCCESS
# SUCCESS
# ------------ [373] (fail) CC="gcc" make testrun/rmUnused-attr ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused-attr.exe rmUnused-attr.c
# ------------ [374] CC="gcc" make testrun/rmUnused1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused1.exe rmUnused1.c
# cd ./small1; ./rmUnused1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [375] CC="gcc" make testrun/rmUnused2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormUnused2.exe rmUnused2.c
# cd ./small1; ./rmUnused2.exe
# echo SUCCESS
# SUCCESS
# ------------ [376] CC="gcc" make testrun/scope1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope1.exe scope1.c
# cd ./small1; ./scope1.exe
# echo SUCCESS
# SUCCESS
# ------------ [377] CC="gcc" make testrun/scope10 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope10.exe scope10.c
# cd ./small1; ./scope10.exe
# echo SUCCESS
# SUCCESS
# ------------ [378] CC="gcc" make testrun/scope11 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope11.exe scope11.c
# cd ./small1; ./scope11.exe
# echo SUCCESS
# SUCCESS
# ------------ [379] CC="gcc" make testrun/scope5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope5.exe scope5.c
# cd ./small1; ./scope5.exe
# echo SUCCESS
# SUCCESS
# ------------ [380] CC="gcc" make testrun/scope6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope6.exe scope6.c
# cd ./small1; ./scope6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [381] CC="gcc" make testrun/scope8 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope8.exe scope8.c
# cd ./small1; ./scope8.exe
# echo SUCCESS
# SUCCESS
# ------------ [382] CC="gcc" make testrun/scope9 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oscope9.exe scope9.c
# cd ./small1; ./scope9.exe
# echo SUCCESS
# SUCCESS
# ------------ [383] CC="gcc" make testrun/semicolon ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osemicolon.exe semicolon.c
# cd ./small1; ./semicolon.exe
# echo SUCCESS
# SUCCESS
# ------------ [384] CC="gcc" make testrun/simon6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osimon6.exe simon6.c
# cd ./small1; ./simon6.exe
# 10
# [0:1][1:4][2:7][3:0][4:3][5:6][6:9][7:2][8:5][9:8]echo SUCCESS
# SUCCESS
# ------------ [385] CC="gcc" make testrun/sizeof1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osizeof1.exe sizeof1.c
# cd ./small1; ./sizeof1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [386] CC="gcc" make testrun/sizeof2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -osizeof2.exe sizeof2.c
# cd ./small1; ./sizeof2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [387] CC="gcc" make testrun/static ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostatic.exe static.c
# cd ./small1; ./static.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [388] CC="gcc" make testrun/static2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostatic2.exe static2.c
# cd ./small1; ./static2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [389] CC="gcc" make testrun/stringsize ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostringsize.exe stringsize.c
# cd ./small1; ./stringsize.exe
# 11
# Success
# echo SUCCESS
# SUCCESS
# ------------ [390] CC="gcc" make testrun/strloop ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostrloop.exe strloop.c
# cd ./small1; ./strloop.exe
# foo
# Success
# echo SUCCESS
# SUCCESS
# ------------ [391] CC="gcc" make testrun/strloop3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostrloop3.exe strloop3.c
# cd ./small1; ./strloop3.exe
# aaa
# Success
# echo SUCCESS
# SUCCESS
# ------------ [392] CC="gcc" make testrun/struct1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ostruct1.exe struct1.c
# cd ./small1; ./struct1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [393] CC="gcc" make testrun/typeof1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -otypeof1.exe typeof1.c
# cd ./small1; ./typeof1.exe
# sizeof(foo) = 1 (CIL) and 1 (Compiler)
# sizeof(afun) = 1 (CIL) and 1 (Compiler)
# sizeof("a long string") = 14 (CIL) and 14 (Compiler)
# sizeof(str) = 14 (CIL) and 14 (Compiler)
# sizeof(arr) = 36 (CIL) and 36 (Compiler)
# sizeof(barr) = 36 (CIL) and 36 (Compiler)
# sizeof(funp) = 8 (CIL) and 8 (Compiler)
# __alignof("a string") = 1 (CIL) and 1 (Compiler)
# __alignof(str) = 1 (CIL) and 1 (Compiler)
# __alignof(foo) = 1 (CIL) and 1 (Compiler)
# __alignof(afun) = 1 (CIL) and 1 (Compiler)
# __alignof(arr) = 4 (CIL) and 4 (Compiler)
# __alignof(barr) = 4 (CIL) and 4 (Compiler)
# __alignof(funp) = 8 (CIL) and 8 (Compiler)
# echo SUCCESS
# SUCCESS
# ------------ [394] (fail) CC="gcc" make testrun/typespec1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -otypespec1.exe typespec1.c
# ------------ [395] CC="gcc" make testrun/union2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion2.exe union2.c
# cd ./small1; ./union2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [396] CC="gcc" make testrun/union3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion3.exe union3.c
# cd ./small1; ./union3.exe
# Offset of large in TEST_STRUCT is 0. Expected 0
# Offset of i1 in TEST_STRUCT is 40. Expected 40
# Offset of i2 in TEST_STRUCT is 40. Expected 40
# Offset of i3 in TEST_STRUCT is 44. Expected 44
# Offset of a in TEST_STRUCT is 48. Expected 48
# Offset of u1 in TEST_STRUCT is 52. Expected 52
# Offset of u2 in TEST_STRUCT is 52. Expected 52
# Offset of f1 in TEST_STRUCT is 52. Expected 52
# Offset of f2 in TEST_STRUCT is 56. Expected 56
# Offset of b in TEST_STRUCT is 60. Expected 60
# Success
# echo SUCCESS
# SUCCESS
# ------------ [397] (fail) CC="gcc" make testrun/union6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ounion6.exe union6.c
# cd ./small1; ./union6.exe
# Error 1
# ------------ [398] CC="gcc" make testrun/va-arg-1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-1.exe va-arg-1.c
# cd ./small1; ./va-arg-1.exe
# echo SUCCESS
# SUCCESS
# ------------ [399] CC="gcc" make testrun/va-arg-2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-2.exe va-arg-2.c
# cd ./small1; ./va-arg-2.exe
# echo SUCCESS
# SUCCESS
# ------------ [400] CC="gcc" make testrun/va-arg-7 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ova-arg-7.exe va-arg-7.c
# cd ./small1; ./va-arg-7.exe
# echo SUCCESS
# SUCCESS
# ------------ [401] CC="gcc" make testrun/var_named_hidden ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovar_named_hidden.exe var_named_hidden.c
# cd ./small1; ./var_named_hidden.exe
# echo SUCCESS
# SUCCESS
# ------------ [402] CC="gcc" make testrun/vararg1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg1.exe vararg1.c
# cd ./small1; ./vararg1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [403] CC="gcc" make testrun/vararg2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg2.exe vararg2.c
# cd ./small1; ./vararg2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [404] CC="gcc" make testrun/vararg3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg3.exe vararg3.c
# cd ./small1; ./vararg3.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [405] CC="gcc" make testrun/vararg4 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg4.exe vararg4.c
# cd ./small1; ./vararg4.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [406] CC="gcc" make testrun/vararg5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg5.exe vararg5.c
# cd ./small1; ./vararg5.exe
# Should be 5 5.0 10.0: 5 5.0 10.0
# Success
# echo SUCCESS
# SUCCESS
# ------------ [407] CC="gcc" make testrun/vararg6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovararg6.exe vararg6.c
# cd ./small1; ./vararg6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [408] CC="gcc" make testrun/varargauto1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovarargauto1.exe varargauto1.c
# cd ./small1; ./varargauto1.exe
# An_int: 5
# An_str: hello
# An_str: world
# An_intptr: 467a460c (1)
# Success
# echo SUCCESS
# SUCCESS
# ------------ [409] CC="gcc" make testrun/void ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovoid.exe void.c
# cd ./small1; ./void.exe
# wow
# yippie!
# echo SUCCESS
# SUCCESS
# ------------ [410] CC="gcc" make testrun/voidarg ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovoidarg.exe voidarg.c
# cd ./small1; ./voidarg.exe
# hello, nice to meet you.
# echo SUCCESS
# SUCCESS
# ------------ [411] CC="gcc" make testrun/vsp ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ovsp.exe vsp.c
# cd ./small1; ./vsp.exe
# Hello, world! 2+2=4
#
# echo SUCCESS
# SUCCESS
# ------------ [412] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -owarnings-unused-label.exe warnings-unused-label.c
# cd ./small1; ./warnings-unused-label.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [413] CC="gcc" make testrun/wchar1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar1.exe wchar1.c
# cd ./small1; ./wchar1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [414] CC="gcc" make testrun/wchar2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar2.exe wchar2.c
# cd ./small1; ./wchar2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [415] CC="gcc" make testrun/wchar3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar3.exe wchar3.c
# cd ./small1; ./wchar3.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [416] CC="gcc" make testrun/wchar4 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar4.exe wchar4.c
# cd ./small1; ./wchar4.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [417] CC="gcc" make testrun/wchar5 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar5.exe wchar5.c
# cd ./small1; ./wchar5.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [418] CC="gcc" make testrun/wchar6 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar6.exe wchar6.c
# cd ./small1; ./wchar6.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [419] CC="gcc" make testrun/wchar7 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owchar7.exe wchar7.c
# cd ./small1; ./wchar7.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [420] (fail) CC="gcc" make testrun/wrongnumargs ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -owrongnumargs.exe wrongnumargs.c
# ------------ [421] CC="gcc" make testrunc11/c11-align-of ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-align-of.exe c11-align-of.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-align-of.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [422] CC="gcc" make testrunc11/c11-atomic ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-atomic.exe c11-atomic.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-atomic.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [423] CC="gcc" make testrunc11/c11-atomic-store ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-atomic-store.exe c11-atomic-store.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-atomic-store.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [424] CC="gcc" make testrunc11/c11-caserange ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-caserange.exe c11-caserange.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-caserange.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [425] CC="gcc" make testrunc11/c11-extendedFloat ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-extendedFloat.exe c11-extendedFloat.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-extendedFloat.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [426] CC="gcc" make testrunc11/c11-generic ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-generic.exe c11-generic.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-generic.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [427] CC="gcc" make testrunc11/c11-noreturn ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-noreturn.exe c11-noreturn.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-noreturn.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [428] CC="gcc" make testrunc11/c11-static-assert ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oc11-static-assert.exe c11-static-assert.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./c11-static-assert.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [429] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -ogcc-c11-generic-1.exe gcc-c11-generic-1.c -lm
# Warning: Unknown argument -std=c11
# cd ./small1; ./gcc-c11-generic-1.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [430] CC="gcc" make testrunc99/c99-bool ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-bool.exe c99-bool.c -lm
# cd ./small1; ./c99-bool.exe
# echo SUCCESS
# SUCCESS
# ------------ [431] CC="gcc" make testrunc99/c99-complex ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-complex.exe c99-complex.c -lm
# cd ./small1; ./c99-complex.exe
# I * I = 1.0+1.0i
# pow(I, 2) = -1.0+0.0i
# exp(I*PI) = -1.0+0.1i
# (1+2i)*(1-2i) = 5.0+0.0i
# I * I = 1.0+1.0i
# pow(I, 2) = -1.0+0.0i
# exp(I*PI) = -1.0+0.1i
# (1+2i)*(1-2i) = 5+0i
# echo SUCCESS
# SUCCESS
# ------------ [432] CC="gcc" make testrunc99/c99-fixed-width-int ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-fixed-width-int.exe c99-fixed-width-int.c -lm
# cd ./small1; ./c99-fixed-width-int.exe
# echo SUCCESS
# SUCCESS
# ------------ [433] CC="gcc" make testrunc99/c99-float-pragma ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-float-pragma.exe c99-float-pragma.c -lm
# cd ./small1; ./c99-float-pragma.exe
# echo SUCCESS
# SUCCESS
# ------------ [434] CC="gcc" make testrunc99/c99-predefined ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-predefined.exe c99-predefined.c -lm
# cd ./small1; ./c99-predefined.exe
# c99-predefined.c
# 5
# main
# Mar 2 2026
# 11:53:12
# 199901
# echo SUCCESS
# SUCCESS
# ------------ [435] CC="gcc" make testrunc99/c99-struct ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-struct.exe c99-struct.c -lm
# cd ./small1; ./c99-struct.exe
# echo SUCCESS
# SUCCESS
# ------------ [436] CC="gcc" make testrunc99/c99-tgmath ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-tgmath.exe c99-tgmath.c -lm
# cd ./small1; ./c99-tgmath.exe
# echo SUCCESS
# SUCCESS
# ------------ [437] CC="gcc" make testrunc99/c99-tgmath2 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-tgmath2.exe c99-tgmath2.c -lm
# cd ./small1; ./c99-tgmath2.exe
# Success
# echo SUCCESS
# SUCCESS
# ------------ [438] CC="gcc" make testrunc99/c99-universal-character-names ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -oc99-universal-character-names.exe c99-universal-character-names.c -lm
# cd ./small1; ./c99-universal-character-names.exe
# echo SUCCESS
# SUCCESS
# ------------ [439] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck -O2 --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -obuiltin_object_size.exe builtin_object_size.c
# cd ./small1; ./builtin_object_size.exe
# echo SUCCESS
# SUCCESS
# ------------ [440] CC="gcc" make testrungcc/enum3 ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3.exe enum3.c
# cd ./small1; ./enum3.exe
# echo SUCCESS
# SUCCESS
# ------------ [441] CC="gcc" make testrungcc/enum3a ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3a.exe enum3a.c
# cd ./small1; ./enum3a.exe
# echo SUCCESS
# SUCCESS
# ------------ [442] CC="gcc" make testrungcc/enum3b ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3b.exe enum3b.c
# cd ./small1; ./enum3b.exe
# echo SUCCESS
# SUCCESS
# ------------ [443] (fail) CC="gcc" make testrungcc/enum3c ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3c.exe enum3c.c
# ------------ [444] CC="gcc" make testrungcc/enum3d ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3d.exe enum3d.c
# cd ./small1; ./enum3d.exe
# echo SUCCESS
# SUCCESS
# ------------ [445] CC="gcc" make testrungcc/enum3e ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3e.exe enum3e.c
# cd ./small1; ./enum3e.exe
# echo SUCCESS
# SUCCESS
# ------------ [446] CC="gcc" make testrungcc/enum3f ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3f.exe enum3f.c
# cd ./small1; ./enum3f.exe
# echo SUCCESS
# SUCCESS
# ------------ [447] CC="gcc" make testrungcc/enum3g ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3g.exe enum3g.c
# cd ./small1; ./enum3g.exe
# echo SUCCESS
# SUCCESS
# ------------ [448] CC="gcc" make testrungcc/enum3h ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3h.exe enum3h.c
# cd ./small1; ./enum3h.exe
# echo SUCCESS
# SUCCESS
# ------------ [449] CC="gcc" make testrungcc/enum3i ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3i.exe enum3i.c
# cd ./small1; ./enum3i.exe
# echo SUCCESS
# SUCCESS
# ------------ [450] CC="gcc" make testrungcc/enum3j ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3j.exe enum3j.c
# cd ./small1; ./enum3j.exe
# echo SUCCESS
# SUCCESS
# ------------ [451] CC="gcc" make testrungcc/enum3k ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3k.exe enum3k.c
# cd ./small1; ./enum3k.exe
# echo SUCCESS
# SUCCESS
# ------------ [452] CC="gcc" make testrungcc/enum3l ------------
# cd ./small1; /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \
# -D_GNUCC -Wall -g -ggdb -D_DEBUG -oenum3l.exe enum3l.c
# cd ./small1; ./enum3l.exe
# echo SUCCESS
# SUCCESS
#
# Successful tests: 407
# Failed as expected: 38
# Unexpected success: 4
# Unexpected failure: 4
#
# [75] 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
# [87] 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
# [91] A regression test command failed:
# CC=gcc make scott/kernel1
# [99] A regression test command failed:
# CC=gcc make scott/neg64
# [104] 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
# [113] A regression test command failed:
# CC=gcc make scott/typeof
# [114] A regression test command failed:
# CC=gcc make scott/uninit_tmp
# [206] 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
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# Linking into library array.a
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.52MB, max=1.94MB, minor=7.34MB, major=1.31MB, promoted=1.13MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# combine1_1.c:10:13: warning: conflicting types for built-in function 'printf'; expected 'int(const char *, ...)' [-Wbuiltin-declaration-mismatch]
# 10 | extern void printf(char *, ...);
# | ^~~~~~
# combine1_1.c:1:1: note: 'printf' is declared in header '<stdio.h>'
# +++ |+#include <stdio.h>
# 1 | typedef int INT;
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine1_3.c: In function 'c3':
# combine1_3.c:10:7: warning: variable 'var' set but not used [-Wunused-but-set-variable]
# 10 |
# | ^
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine11_2.c:17: Warning: Calling function f1 without prototype.
# combine11_2.c:18: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine11_2.c: In function 'main':
# combine11_2.c:17:8: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
# 17 | void *v1 = f1(); /* Without prototype */
# | ^
# combine11_2.c:20:9: warning: variable 'v2' set but not used [-Wunused-but-set-variable]
# combine11_2.c:18:9: warning: variable 'v1' set but not used [-Wunused-but-set-variable]
# 18 | void *v2 = f2();
# | ^~
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine13_2.c: In function 'main':
# combine13_2.c:11:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct foo *' [-Wformat=]
# 11 | printf("Address is %x\n", &g); /* Make sure we use g */
# | ^~~~~~~~~~~~~~~~~ ~~~
# | |
# | struct foo *
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine15_1.c:36: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# combine15_1.c:10:18: warning: built-in function 'y1' declared as non-function [-Wbuiltin-declaration-mismatch]
# 10 | } y1;
# | ^
# combine15_1.c: In function 'main':
# combine15_1.c:34:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct s1 *' [-Wformat=]
# 34 | printf("Address of x1=%x and x2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct s1 *
# combine15_1.c:34:24: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'struct s11 *' [-Wformat=]
# 34 | printf("Address of x1=%x and x2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct s11 *
# combine15_1.c:36:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct d1 *' [-Wformat=]
# 36 | printf("Address of y1=%x and y2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct d1 *
# combine15_1.c:36:24: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'struct d11 *' [-Wformat=]
# 36 | printf("Address of y1=%x and y2=%x\n",
# | ^~~~~~~~~~~~~~~~~
# | |
# | struct d11 *
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine15_2.c:7:11: warning: built-in function 'y1' declared as non-function [-Wbuiltin-declaration-mismatch]
# 7 | } y2, y1; /* Constrain both d11 and d1 to be isomorphic */
# | ^~
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine17_2.c:7: Warning: Calling function read without prototype.
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine2_3.c:6: Warning: Calling function f1 without prototype.
# combine2_3.c:7: Warning: Calling function f2 without prototype.
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine20_2.c: In function 'main':
# combine20_2.c:14:9: warning: variable 'path' set but not used [-Wunused-but-set-variable]
# 14 | char *path = tmp.s; // This will be changed to tmp___0.s !!!
# | ^~~~
# combine20_2.c:13:7: warning: variable 'tmp___0' set but not used [-Wunused-but-set-variable]
# 13 | // new global
# | ^
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine22_1.c: In function 'other':
# combine22_1.c:7:24: error: invalid application of 'sizeof' to incomplete type 'struct empty'
# 7 | return (sizeof(struct empty));
# | ^~~~~~
# combine22_1.c:9:1: warning: control reaches end of non-void function [-Wreturn-type]
# make: *** [Makefile:284: combine22] Error 1
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine3_2.c: In function 'main2':
# combine3_2.c:14:8: warning: variable 'd' set but not used [-Wunused-but-set-variable]
# 14 | return 0;
# | ^
# combine3_3.c:13: Warning: Calling function main2 without prototype.
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# combine5_1.c: In function 'main':
# combine5_1.c:7:24: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'struct __anonstruct_TimeOuts_971210525 *' [-Wformat=]
# 7 | printf("Address of TimeOuts=%x\n", &TimeOuts);
# | ^~~~~~~~~~~~~~~~~~~~~~~~~
# | |
# | struct __anonstruct_TimeOuts_971210525 *
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.23MB, max=1.46MB, minor=4.19MB, major=0.65MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# make: *** [Makefile:285: combine9] Error 1
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_copyptrs_1.c:2: Warning: Body of function copyptrs falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_copyptrs_2.c:43: Warning: Body of function copyptrs falls-through. Adding a return statement
# combine_copyptrs_2.c:75: Warning: Body of function copyptrs___0 falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.52MB, minor=4.19MB, major=0.84MB, promoted=0.67MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_node_alloc_2.c: In function 'main':
# combine_node_alloc_2.c:13:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 13 | return (int)( list[0] );
# | ^
# /usr/bin/ld: ./combine_node_alloc_2.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_node_alloc_2.c:7: multiple definition of `list'; ./combine_node_alloc_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_node_alloc_1.c:7: first defined here
# collect2: error: ld returned 1 exit status
# make: *** [Makefile:284: combine_node_alloc] Error 1
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# /usr/bin/ld: ./combine_samefn_2.o: in function `foo':
# /home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_2.c:5: multiple definition of `foo'; ./combine_samefn_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_1.c:11: first defined here
# /usr/bin/ld: ./combine_samefn_2.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_2.c:13: multiple definition of `myglobal'; ./combine_samefn_1.o:/home/opam/.opam/5.4/.opam-switch/build/goblint-cil.2.0.2/_build/default/test/small1/combine_samefn_1.c:18: first defined here
# collect2: error: ld returned 1 exit status
# make: *** [Makefile:284: combine_samefn] Error 1
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine_sbump_2.c:17: Warning: Body of function foo falls-through. Adding a return statement
# combine_sbump_2.c:22: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# combine_sbumpB_3.c: In function 'sbump___0':
# combine_sbumpB_3.c:36:15: warning: variable 'tmp___4' set but not used [-Wunused-but-set-variable]
# 36 | char const *tmp___4;
# | ^~~~~~~
# combine_sbumpB_3.c: At top level:
# combine_sbumpB_3.c:48:5: warning: second argument of 'main' should be 'char **' [-Wmain]
# 48 | int main(int argc, char *argv)
# | ^~~~
# combine_sbumpB_3.c: In function 'sbump___0':
# combine_sbumpB_3.c:44:10: warning: 'tmp___3' is used uninitialized [-Wuninitialized]
# 44 | return (tmp___3);
# | ^
# combine_sbumpB_3.c:35:7: note: 'tmp___3' was declared here
# 35 | int tmp___3;
# | ^~~~~~~
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_theFunc_1.c:3: Warning: Body of function theFunc falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# combine_theFunc_2.c:3: Warning: Body of function theFunc falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# combine_theFunc_3.c:12: Warning: Body of function sgetc___0 falls-through. Adding a return statement
# combine_theFunc_3.c:25: Warning: Body of function theFunc___0 falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.51MB, max=1.89MB, minor=7.34MB, major=1.29MB, promoted=1.12MB
# minor collections=5 major collections=3 compactions=0
# combinealias_2.c:4: Warning: Calling function foo without prototype.
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing combine-c99inline_1.c
# Saving source ./combine-c99inline_1.i into ./combine-c99inline_1.o
# Preprocessing combine-c99inline_2.c
# Saving source ./combine-c99inline_2.i into ./combine-c99inline_2.o
# Merging saved sources into combine-c99inline.exe_comb.o (in process of linking combine-c99inline.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x560ac40e5b20) App::Cilly::KeptFile=HASH(0x560ac3b897c8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline_1.o
# Pre-merging (1) ./combine-c99inline_2.o
# Final merging phase (0): ./combine-c99inline_1.o
# Final merging phase (1): ./combine-c99inline_2.o
# First CIL check
# Checking file stdout
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# FILE */* __restrict */
# and FILE *
#
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# combine-c99inline_1.c:3: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# FILE */* __restrict */
# and FILE *
#
# /usr/include/x86_64-linux-gnu/bits/stdio.h:41: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# combine-c99inline_2.c:3: Warning: CIL invariant broken: Type mismatch:
# char const */* __restrict */
# and char const *
#
# Finished checking file stdout
# Bug: CIL's internal data structures are inconsistent (see the warnings above). This may be a bug in CIL.
#
# printing file ./combine-c99inline.cil.c
# Error: Error while processing file; see above for details.
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:315: combinec99inline] Error 2
# Preprocessing combine-c99inline1_1.c
# Saving source ./combine-c99inline1_1.i into ./combine-c99inline1_1.o
# Preprocessing combine-c99inline1_2.c
# Saving source ./combine-c99inline1_2.i into ./combine-c99inline1_2.o
# Merging saved sources into combine-c99inline1.exe_comb.o (in process of linking combine-c99inline1.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5e53383005e8) App::Cilly::KeptFile=HASH(0x5e5337da5e18)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline1_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline1_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline1_1.o
# Pre-merging (1) ./combine-c99inline1_2.o
# Final merging phase (0): ./combine-c99inline1_1.o
# Final merging phase (1): ./combine-c99inline1_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline1.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline1.cil.c
# Compiling ./combine-c99inline1.cil.i into combine-c99inline1.exe_comb.o
# Preprocessing combine-c99inline2_1.c
# Saving source ./combine-c99inline2_1.i into ./combine-c99inline2_1.o
# Preprocessing combine-c99inline2_2.c
# Saving source ./combine-c99inline2_2.i into ./combine-c99inline2_2.o
# Merging saved sources into combine-c99inline2.exe_comb.o (in process of linking combine-c99inline2.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5ff748152860) App::Cilly::KeptFile=HASH(0x5ff747bf7378)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline2_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline2_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline2_1.o
# Pre-merging (1) ./combine-c99inline2_2.o
# Final merging phase (0): ./combine-c99inline2_1.o
# Final merging phase (1): ./combine-c99inline2_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline2.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline2.cil.c
# Compiling ./combine-c99inline2.cil.i into combine-c99inline2.exe_comb.o
# Preprocessing combine-c99inline3_1.c
# Saving source ./combine-c99inline3_1.i into ./combine-c99inline3_1.o
# Preprocessing combine-c99inline3_2.c
# Saving source ./combine-c99inline3_2.i into ./combine-c99inline3_2.o
# Merging saved sources into combine-c99inline3.exe_comb.o (in process of linking combine-c99inline3.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5c8f388506f8) App::Cilly::KeptFile=HASH(0x5c8f382f4418)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline3_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline3_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline3_1.o
# Pre-merging (1) ./combine-c99inline3_2.o
# Final merging phase (0): ./combine-c99inline3_1.o
# Final merging phase (1): ./combine-c99inline3_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline3.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline3.cil.c
# Compiling ./combine-c99inline3.cil.i into combine-c99inline3.exe_comb.o
# Preprocessing combine-c99inline4_1.c
# Saving source ./combine-c99inline4_1.i into ./combine-c99inline4_1.o
# Preprocessing combine-c99inline4_2.c
# Saving source ./combine-c99inline4_2.i into ./combine-c99inline4_2.o
# Merging saved sources into combine-c99inline4.exe_comb.o (in process of linking combine-c99inline4.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5c9f2074a690) App::Cilly::KeptFile=HASH(0x5c9f201eee98)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline4_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline4_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline4_1.o
# Pre-merging (1) ./combine-c99inline4_2.o
# Final merging phase (0): ./combine-c99inline4_1.o
# Final merging phase (1): ./combine-c99inline4_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline4.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline4.cil.c
# Compiling ./combine-c99inline4.cil.i into combine-c99inline4.exe_comb.o
# Preprocessing combine-c99inline5_1.c
# Saving source ./combine-c99inline5_1.i into ./combine-c99inline5_1.o
# Preprocessing combine-c99inline5_2.c
# Saving source ./combine-c99inline5_2.i into ./combine-c99inline5_2.o
# Merging saved sources into combine-c99inline5.exe_comb.o (in process of linking combine-c99inline5.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x580f9229aa20) App::Cilly::KeptFile=HASH(0x580f91d3f7c8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline5_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline5_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline5_1.o
# Pre-merging (1) ./combine-c99inline5_2.o
# Final merging phase (0): ./combine-c99inline5_1.o
# Final merging phase (1): ./combine-c99inline5_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline5.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline5.cil.c
# Compiling ./combine-c99inline5.cil.i into combine-c99inline5.exe_comb.o
# Preprocessing combine-c99inline6_1.c
# Saving source ./combine-c99inline6_1.i into ./combine-c99inline6_1.o
# Preprocessing combine-c99inline6_2.c
# Saving source ./combine-c99inline6_2.i into ./combine-c99inline6_2.o
# Merging saved sources into combine-c99inline6.exe_comb.o (in process of linking combine-c99inline6.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x5928b2b40668) App::Cilly::KeptFile=HASH(0x5928b25e4ee8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline6_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline6_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline6_1.o
# Pre-merging (1) ./combine-c99inline6_2.o
# Final merging phase (0): ./combine-c99inline6_1.o
# Final merging phase (1): ./combine-c99inline6_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline6.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.78MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# Preprocessing ./combine-c99inline6.cil.c
# Compiling ./combine-c99inline6.cil.i into combine-c99inline6.exe_comb.o
# Preprocessing combine-c99inline7_1.c
# Saving source ./combine-c99inline7_1.i into ./combine-c99inline7_1.o
# Preprocessing combine-c99inline7_2.c
# Saving source ./combine-c99inline7_2.i into ./combine-c99inline7_2.o
# Preprocessing combine-c99inline7_3.c
# Saving source ./combine-c99inline7_3.i into ./combine-c99inline7_3.o
# Merging saved sources into combine-c99inline7.exe_comb.o (in process of linking combine-c99inline7.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x6478eb4dc850) App::Cilly::KeptFile=HASH(0x6478eaf82008) App::Cilly::KeptFile=HASH(0x6478eaf836d8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline7_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline7_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline7_3.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline7_1.o
# Pre-merging (1) ./combine-c99inline7_2.o
# Pre-merging (2) ./combine-c99inline7_3.o
# Final merging phase (0): ./combine-c99inline7_1.o
# Final merging phase (1): ./combine-c99inline7_2.o
# Final merging phase (2): ./combine-c99inline7_3.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline7.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.42MB, max=1.69MB, minor=7.34MB, major=1.00MB, promoted=0.92MB
# minor collections=5 major collections=3 compactions=0
# Preprocessing ./combine-c99inline7.cil.c
# Compiling ./combine-c99inline7.cil.i into combine-c99inline7.exe_comb.o
# Preprocessing combine-c99inline8_1.c
# Saving source ./combine-c99inline8_1.i into ./combine-c99inline8_1.o
# Preprocessing combine-c99inline8_2.c
# Saving source ./combine-c99inline8_2.i into ./combine-c99inline8_2.o
# Preprocessing combine-c99inline8_3.c
# Saving source ./combine-c99inline8_3.i into ./combine-c99inline8_3.o
# Merging saved sources into combine-c99inline8.exe_comb.o (in process of linking combine-c99inline8.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x595a5d28abb8) App::Cilly::KeptFile=HASH(0x595a5cd2ff78) App::Cilly::KeptFile=HASH(0x595a5cd31648)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline8_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline8_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline8_3.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline8_1.o
# Pre-merging (1) ./combine-c99inline8_2.o
# Pre-merging (2) ./combine-c99inline8_3.o
# Final merging phase (0): ./combine-c99inline8_1.o
# Final merging phase (1): ./combine-c99inline8_2.o
# Final merging phase (2): ./combine-c99inline8_3.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline8.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# merge 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.42MB, max=1.69MB, minor=7.34MB, major=1.00MB, promoted=0.92MB
# minor collections=5 major collections=3 compactions=0
# Preprocessing ./combine-c99inline8.cil.c
# Compiling ./combine-c99inline8.cil.i into combine-c99inline8.exe_comb.o
# Preprocessing combine-c99inline9_1.c
# Saving source ./combine-c99inline9_1.i into ./combine-c99inline9_1.o
# Preprocessing combine-c99inline9_2.c
# Saving source ./combine-c99inline9_2.i into ./combine-c99inline9_2.o
# Merging saved sources into combine-c99inline9.exe_comb.o (in process of linking combine-c99inline9.exe)
# Will merge the following: App::Cilly::KeptFile=HASH(0x623d0a0b5888) App::Cilly::KeptFile=HASH(0x623d09b585b8)
# Will just link the genuine object files:
# After merge compile flags: -Wall -g -ggdb -O1 -std=c99 -fcommon
# Frontc is parsing ./combine-c99inline9_1.o
# Converting CABS->CIL
# Removing unused temporaries
# Frontc is parsing ./combine-c99inline9_2.o
# Converting CABS->CIL
# Removing unused temporaries
# Pre-merging (0) ./combine-c99inline9_1.o
# Pre-merging (1) ./combine-c99inline9_2.o
# Final merging phase (0): ./combine-c99inline9_1.o
# Final merging phase (1): ./combine-c99inline9_2.o
# First CIL check
# Checking file stdout
# Finished checking file stdout
# printing file ./combine-c99inline9.cil.c
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# ...TRUNCATED BY DUNE...
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.81MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./stringsize.cil.c: In function 'main':
# ./stringsize.cil.c:115:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 115 | printf((char const *)"%d\n", sizeof("ertewrtert"));
# | ^~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.002 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.61MB, max=1.90MB, minor=9.44MB, major=1.31MB, promoted=1.14MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.003 s
# convert to CIL 0.003 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=11.64MB, max=2.25MB, minor=11.53MB, major=1.56MB, promoted=1.45MB
# minor collections=7 major collections=3 compactions=0
# ./strloop3.cil.c: In function 'BuildWord':
# ./strloop3.cil.c:15:9: warning: variable 'pch' set but not used [-Wunused-but-set-variable]
# 15 | char *pch ;
# | ^~~
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# typeof1.c:60: Warning: Calling function exit without prototype.
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.001 s
# convert to CIL 0.001 s
# printCIL 0.001 s
# Timing used
# Memory statistics: total=6.46MB, max=1.59MB, minor=6.29MB, major=0.97MB, promoted=0.80MB
# minor collections=4 major collections=2 compactions=0
# ./typeof1.cil.c:80:14: warning: conflicting types for built-in function 'exit'; expected 'void(int)' [-Wbuiltin-declaration-mismatch]
# 80 | extern int ( /* missing proto */ exit)() ;
# | ^~~~
# ./typeof1.cil.c:1:1: note: 'exit' is declared in header '<stdlib.h>'
# +++ |+#include <stdlib.h>
# 1 | /* Generated by Goblint-CIL v. 2.0.2 */
# ./typeof1.cil.c: In function 'main':
# ./typeof1.cil.c:110:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 110 | printf((char const *)"sizeof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:110:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 110 | printf((char const *)"sizeof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 111 | sizeof(foo));
# | ~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:122:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 122 | printf((char const *)"sizeof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___0) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:122:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 122 | printf((char const *)"sizeof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___0) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 123 | sizeof(afun));
# | ~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:160:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 160 | printf((char const *)"sizeof(\"a long string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 161 | sizeof(a___1) - 1UL, sizeof("a long string"));
# | ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:160:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 160 | printf((char const *)"sizeof(\"a long string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 161 | sizeof(a___1) - 1UL, sizeof("a long string"));
# | ~~~~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:198:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 198 | printf((char const *)"sizeof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___2) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:198:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 198 | printf((char const *)"sizeof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___2) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 199 | sizeof(str));
# | ~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:280:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 280 | printf((char const *)"sizeof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___3) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:280:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 280 | printf((char const *)"sizeof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___3) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 281 | sizeof(arr));
# | ~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:362:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 362 | printf((char const *)"sizeof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___4) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:362:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 362 | printf((char const *)"sizeof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___4) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 363 | sizeof(barr));
# | ~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:388:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 388 | printf((char const *)"sizeof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___5) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:388:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 388 | printf((char const *)"sizeof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___5) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 389 | sizeof(funp));
# | ~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:400:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 400 | printf((char const *)"__alignof(\"a string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 401 | sizeof(a___6) - 1UL, __alignof__("a string"));
# | ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:400:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 400 | printf((char const *)"__alignof(\"a string\") = %d (CIL) and %d (Compiler)\n",
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 401 | sizeof(a___6) - 1UL, __alignof__("a string"));
# | ~~~~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:412:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 412 | printf((char const *)"__alignof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___7) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:412:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 412 | printf((char const *)"__alignof(str) = %d (CIL) and %d (Compiler)\n", sizeof(a___7) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 413 | __alignof__(str));
# | ~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:424:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 424 | printf((char const *)"__alignof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a___8) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:424:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 424 | printf((char const *)"__alignof(foo) = %d (CIL) and %d (Compiler)\n", sizeof(a___8) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 425 | __alignof__(foo));
# | ~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:436:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 436 | printf((char const *)"__alignof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___9) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:436:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 436 | printf((char const *)"__alignof(afun) = %d (CIL) and %d (Compiler)\n", sizeof(a___9) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 437 | __alignof__(afun));
# | ~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:454:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 454 | printf((char const *)"__alignof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___10) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:454:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 454 | printf((char const *)"__alignof(arr) = %d (CIL) and %d (Compiler)\n", sizeof(a___10) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 455 | __alignof__(arr));
# | ~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:472:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 472 | printf((char const *)"__alignof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___11) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:472:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 472 | printf((char const *)"__alignof(barr) = %d (CIL) and %d (Compiler)\n", sizeof(a___11) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 473 | __alignof__(barr));
# | ~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:498:24: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=]
# 498 | printf((char const *)"__alignof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___12) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# ./typeof1.cil.c:498:24: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
# 498 | printf((char const *)"__alignof(funp) = %d (CIL) and %d (Compiler)\n", sizeof(a___12) - 1UL,
# | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 499 | __alignof__(funp));
# | ~~~~~~~~~~~~~~~~~
# | |
# | long unsigned int
# typespec1.c:7: Error: Invalid combination of type specifiers
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:184: testrun/typespec1] Error 2
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=6.39MB, max=1.56MB, minor=6.29MB, major=0.86MB, promoted=0.76MB
# minor collections=4 major collections=2 compactions=0
# ./union3.cil.c: In function 'main':
# ./union3.cil.c:77:79: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 77 | printf((char const *)"Offset of large in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.large),
# | ^
# ./union3.cil.c:80:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 80 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.large) != 0) {
# | ^
# ./union3.cil.c:87:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 87 | printf((char const *)"Offset of i1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i1),
# | ^
# ./union3.cil.c:90:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 90 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i1) != 40) {
# | ^
# ./union3.cil.c:97:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 97 | printf((char const *)"Offset of i2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i2),
# | ^
# ./union3.cil.c:100:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 100 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.__annonCompField2.i2) != 40) {
# | ^
# ./union3.cil.c:107:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 107 | printf((char const *)"Offset of i3 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField3.i3),
# | ^
# ./union3.cil.c:110:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 110 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField3.i3) != 44) {
# | ^
# ./union3.cil.c:117:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 117 | printf((char const *)"Offset of a in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->a),
# | ^
# ./union3.cil.c:120:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 120 | if ((int )(& ((TEST_STRUCT *)0)->a) != 48) {
# | ^
# ./union3.cil.c:127:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 127 | printf((char const *)"Offset of u1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.u1),
# | ^
# ./union3.cil.c:130:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 130 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.u1) != 52) {
# | ^
# ./union3.cil.c:137:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 137 | printf((char const *)"Offset of u2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.u2),
# | ^
# ./union3.cil.c:140:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 140 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.u2) != 52) {
# | ^
# ./union3.cil.c:147:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 147 | printf((char const *)"Offset of f1 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f1),
# | ^
# ./union3.cil.c:150:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 150 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f1) != 52) {
# | ^
# ./union3.cil.c:157:76: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 157 | printf((char const *)"Offset of f2 in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f2),
# | ^
# ./union3.cil.c:160:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 160 | if ((int )(& ((TEST_STRUCT *)0)->__annonCompField5.__annonCompField4.f2) != 56) {
# | ^
# ./union3.cil.c:167:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 167 | printf((char const *)"Offset of b in TEST_STRUCT is %d. Expected %d\n", (int )(& ((TEST_STRUCT *)0)->b),
# | ^
# ./union3.cil.c:170:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
# 170 | if ((int )(& ((TEST_STRUCT *)0)->b) != 60) {
# | ^
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# make: *** [Makefile:185: testrun/union6] Error 1
# va-arg-1.c:22: Warning: Body of function f falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.001 s
# Timing used
# Memory statistics: total=9.60MB, max=1.79MB, minor=9.44MB, major=1.24MB, promoted=1.08MB
# minor collections=6 major collections=3 compactions=0
# ./va-arg-2.cil.c:19:21: warning: conflicting types for built-in function 'strlen'; expected 'long unsigned int(const char *)' [-Wbuiltin-declaration-mismatch]
# 19 | extern unsigned int strlen(char const * ) ;
# | ^~~~~~
# ./va-arg-2.cil.c:1:1: note: 'strlen' is declared in header '<string.h>'
# +++ |+#include <string.h>
# 1 | /* Generated by Goblint-CIL v. 2.0.2 */
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.15MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# ./var_named_hidden.cil.c: In function 'main':
# ./var_named_hidden.cil.c:9:7: warning: variable 'hidden' set but not used [-Wunused-but-set-variable]
# 9 | int hidden ;
# | ^~~~~~
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.002 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.57MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.17MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.57MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.16MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.010 s
# parse 0.006 s
# convert to CIL 0.003 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=19.11MB, max=3.04MB, minor=18.87MB, major=2.49MB, promoted=2.25MB
# minor collections=11 major collections=4 compactions=0
# vararg3: Cucu Bau
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.56MB, max=1.90MB, minor=9.44MB, major=1.29MB, promoted=1.17MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.003 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=11.76MB, max=2.31MB, minor=11.53MB, major=1.75MB, promoted=1.52MB
# minor collections=7 major collections=3 compactions=0
# ./vararg5.cil.c: In function 'main':
# ./vararg5.cil.c:96:9: warning: variable 's' set but not used [-Wunused-but-set-variable]
# 96 | char *s ;
# | ^
# ./vararg5.cil.c:95:7: warning: variable 'y' set but not used [-Wunused-but-set-variable]
# 95 | int y ;
# | ^
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.83MB, promoted=0.66MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.004 s
# parse 0.002 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.56MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.17MB
# minor collections=6 major collections=3 compactions=0
# ./varargauto1.cil.c: In function 'main':
# ./varargauto1.cil.c:28:15: warning: variable 'py' set but not used [-Wunused-but-set-variable]
# 28 | struct foo *py ;
# | ^~
# ./varargauto1.cil.c: In function 'myva1':
# ./varargauto1.cil.c:100:26: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'long int' [-Wformat=]
# 100 | printf((char const *)"An_intptr: %x (%d)\n", (long )data___1, *data___1);
# | ^~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
# | |
# | long int
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.004 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=14.87MB, max=2.54MB, minor=14.68MB, major=1.94MB, promoted=1.74MB
# minor collections=9 major collections=4 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.51MB, max=1.89MB, minor=7.34MB, major=1.29MB, promoted=1.12MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.58MB, max=1.90MB, minor=9.44MB, major=1.30MB, promoted=1.16MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# wchar3.c:5: Warning: Body of function check falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# wchar4.c:64: Warning: Truncating integer 416611827811 to 99
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.003 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=11.73MB, max=2.31MB, minor=11.53MB, major=1.75MB, promoted=1.55MB
# minor collections=7 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.53MB, max=1.89MB, minor=7.34MB, major=1.23MB, promoted=1.04MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.002 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=9.67MB, max=1.99MB, minor=9.44MB, major=1.35MB, promoted=1.11MB
# minor collections=6 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.003 s
# parse 0.001 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.60MB, max=1.89MB, minor=7.34MB, major=1.32MB, promoted=1.05MB
# minor collections=5 major collections=3 compactions=0
# wrongnumargs.c:11: Warning: Too few arguments in call to f.
# First CIL check
# wrongnumargs.c:11: Warning: CIL invariant broken: Not enough arguments
# Bug: CIL's internal data structures are inconsistent (see the warnings above). This may be a bug in CIL.
#
# Error: Error while processing file; see above for details.
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:184: testrun/wrongnumargs] Error 2
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# ./c11-align-of.cil.c: In function 'main':
# ./c11-align-of.cil.c:11:7: warning: variable 'x' set but not used [-Wunused-but-set-variable]
# 11 | int x ;
# | ^
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.001 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.52MB, minor=4.19MB, major=0.85MB, promoted=0.68MB
# minor collections=3 major collections=2 compactions=0
# ./c11-atomic-store.cil.c: In function 'main':
# ./c11-atomic-store.cil.c:17:14: warning: variable 'blub' set but not used [-Wunused-but-set-variable]
# 17 | atomic_int blub ;
# | ^~~~
# ./c11-atomic-store.cil.c:29:10: warning: 'ato' is used uninitialized [-Wuninitialized]
# 29 | blub = ato;
# | ^~~
# <built-in>: note: by argument 1 of type 'const volatile void *' to '__atomic_load_4' declared here
# ./c11-atomic-store.cil.c:15:14: note: 'ato' declared here
# 15 | atomic_int ato ;
# | ^~~
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.46MB, minor=4.19MB, major=0.80MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.18MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.63MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.16MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.65MB
# minor collections=3 major collections=2 compactions=0
# ./gcc-c11-generic-1.cil.c: In function 'main':
# ./gcc-c11-generic-1.cil.c:43:7: warning: variable 'cn' set but not used [-Wunused-but-set-variable]
# 43 | int cn ;
# | ^~
# c99-bool.c:15: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.50MB, max=1.73MB, minor=7.34MB, major=1.09MB, promoted=0.93MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.014 s
# parse 0.006 s
# convert to CIL 0.008 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=34.84MB, max=3.43MB, minor=34.60MB, major=2.83MB, promoted=2.59MB
# minor collections=19 major collections=5 compactions=0
# ./c99-complex.cil.c: In function 'main':
# ./c99-complex.cil.c:135:19: warning: variable 'x00' set but not used [-Wunused-but-set-variable]
# 135 | _Complex double x00 ;
# | ^~~
# ./c99-complex.cil.c:133:19: warning: variable 'x0' set but not used [-Wunused-but-set-variable]
# 133 | _Complex double x0 ;
# | ^~
# ./c99-complex.cil.c: In function 'parsedebug':
# ./c99-complex.cil.c:272:5: warning: statement with no effect [-Wunused-value]
# 272 | cpowl((_Complex long double )1.0iF, (_Complex long double )2);
# | ^~~~~
# ./c99-complex.cil.c:277:5: warning: statement with no effect [-Wunused-value]
# 277 | cpow((_Complex double )1.0iF, (_Complex double )2);
# | ^~~~
# ./c99-complex.cil.c:282:5: warning: statement with no effect [-Wunused-value]
# 282 | cpow((_Complex double )1.0iF, (_Complex double )2);
# | ^~~~
# ./c99-complex.cil.c:285:5: warning: statement with no effect [-Wunused-value]
# 285 | cpow((_Complex double )1.0iF, (_Complex double )2);
# | ^~~~
# ./c99-complex.cil.c:258:7: warning: variable 'tmp' set but not used [-Wunused-but-set-variable]
# 258 | int tmp ;
# | ^~~
# c99-fixed-width-int.c:31: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=6.47MB, max=1.67MB, minor=6.29MB, major=0.95MB, promoted=0.78MB
# minor collections=4 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.004 s
# convert to CIL 0.002 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=14.91MB, max=2.65MB, minor=14.68MB, major=2.04MB, promoted=1.81MB
# minor collections=9 major collections=4 compactions=0
# ./c99-float-pragma.cil.c:22: warning: ignoring '#pragma STDC FENV_ACCESS' [-Wunknown-pragmas]
# 22 | #pragma STDC FENV_ACCESS OFF
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.002 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.49MB, max=1.73MB, minor=7.34MB, major=1.08MB, promoted=0.93MB
# minor collections=5 major collections=3 compactions=0
# First CIL check
# Timings:
# TOTAL 0.002 s
# parse 0.001 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=7.50MB, max=1.56MB, minor=7.34MB, major=0.99MB, promoted=0.82MB
# minor collections=5 major collections=3 compactions=0
# ./c99-struct.cil.c: In function 'foo':
# ./c99-struct.cil.c:45:15: warning: variable 'f2' set but not used [-Wunused-but-set-variable]
# 45 | struct fops f2 ;
# | ^~
# ./c99-struct.cil.c:44:36: warning: variable 'ar' set but not used [-Wunused-but-set-variable]
# 44 | struct __anonstruct_ar_109580352 ar[4] ;
# | ^~
# ./c99-struct.cil.c:42:7: warning: variable 'a' set but not used [-Wunused-but-set-variable]
# 42 | int a[6] ;
# | ^
# ./c99-struct.cil.c: In function 'main':
# ./c99-struct.cil.c:193:10: warning: variable 'sx' set but not used [-Wunused-but-set-variable]
# 193 | char **sx ;
# | ^~
# ./c99-struct.cil.c:189:16: warning: variable 'p1' set but not used [-Wunused-but-set-variable]
# 189 | struct point p1 ;
# | ^~
# treating long double constant 1.0l as double constant at c99-tgmath.c:12 (only relevant if first argument of CReal is used).
# treating long double constant 1.0l as double constant at c99-tgmath.c:37 (only relevant if first argument of CReal is used).
# First CIL check
# Timings:
# TOTAL 0.006 s
# parse 0.005 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=20.19MB, max=3.23MB, minor=19.92MB, major=2.65MB, promoted=2.38MB
# minor collections=12 major collections=5 compactions=0
# ./c99-tgmath.cil.c: In function 'main':
# ./c99-tgmath.cil.c:74:15: warning: variable 'idk3' set but not used [-Wunused-but-set-variable]
# 74 | long double idk3 ;
# | ^~~~
# ./c99-tgmath.cil.c:72:7: warning: variable 'j' set but not used [-Wunused-but-set-variable]
# 72 | int j ;
# | ^
# ./c99-tgmath.cil.c:70:7: warning: variable 'i' set but not used [-Wunused-but-set-variable]
# 70 | int i ;
# | ^
# ./c99-tgmath.cil.c:68:19: warning: variable 'idk2' set but not used [-Wunused-but-set-variable]
# 68 | _Complex double idk2 ;
# | ^~~~
# ./c99-tgmath.cil.c:66:19: warning: variable 'idk' set but not used [-Wunused-but-set-variable]
# 66 | _Complex double idk ;
# | ^~~
# ./c99-tgmath.cil.c:64:10: warning: variable 'f2d' set but not used [-Wunused-but-set-variable]
# 64 | double f2d ;
# | ^~~
# ./c99-tgmath.cil.c:61:9: warning: variable 'f2' set but not used [-Wunused-but-set-variable]
# 61 | float f2 ;
# | ^~
# First CIL check
# Timings:
# TOTAL 0.014 s
# parse 0.009 s
# convert to CIL 0.005 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=19.15MB, max=3.17MB, minor=18.87MB, major=2.61MB, promoted=2.34MB
# minor collections=11 major collections=4 compactions=0
# ./c99-tgmath2.cil.c: In function 'fun':
# ./c99-tgmath2.cil.c:34:7: warning: variable 'n1' set but not used [-Wunused-but-set-variable]
# 34 | int n1 ;
# | ^~
# ./c99-tgmath2.cil.c:32:7: warning: variable 'n0' set but not used [-Wunused-but-set-variable]
# 32 | int n0 ;
# | ^~
# c99-universal-character-names.c:3: Warning: Body of function main falls-through. Adding a return statement
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.22MB, max=1.46MB, minor=4.19MB, major=0.64MB, promoted=0.61MB
# minor collections=3 major collections=2 compactions=0
# ./c99-universal-character-names.cil.c: In function 'main':
# ./c99-universal-character-names.cil.c:8:9: warning: variable 'arr' set but not used [-Wunused-but-set-variable]
# 8 | char *arr ;
# | ^~~
# ./c99-universal-character-names.cil.c:7:7: warning: variable '\U000003b1' set but not used [-Wunused-but-set-variable]
# 7 | int \U000003b1 ;
# | ^~~~~~~~~~
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.36MB, max=1.49MB, minor=4.19MB, major=0.81MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.17MB, max=1.46MB, minor=4.19MB, major=0.61MB, promoted=0.64MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# enum3c.c:3: Error: Constant initializer 22 << 34 not an integer
# Error on A.ONLYTYPEDEF (GoblintCil__Errormsg.Error)
# enum3c.c:11: Error: Cannot resolve variable LARGE.
# enum3c.c:11: Error: global initializer
# error in createGlobal(magic2: enum3c.c:11): GoblintCil__Errormsg.Errorenum3c.c:17: Error: Cannot resolve variable TINY.
# Error: Cabs2cil had some errors
# Fatal error: exception GoblintCil__Errormsg.Error
# make: *** [Makefile:208: testrungcc/enum3c] Error 2
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.19MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.001 s
# parse 0.000 s
# convert to CIL 0.001 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.62MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.20MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
# First CIL check
# Timings:
# TOTAL 0.000 s
# parse 0.000 s
# convert to CIL 0.000 s
# printCIL 0.000 s
# Timing used
# Memory statistics: total=4.21MB, max=1.46MB, minor=4.19MB, major=0.63MB, promoted=0.62MB
# minor collections=3 major collections=2 compactions=0
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build goblint-cil 2.0.2
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
'opam reinstall --with-test --verbose goblint-cil.2.0.2' 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.2;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'goblint-cil.2.0.2' && 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-03-02 11:53.22: Job failed: Failed: Build failed
2026-03-02 11:53.22: Log analysis:
2026-03-02 11:53.22: >>>
[ERROR] The compilation of goblint-cil.2.0.2 failed at "dune build -p goblint-cil -j 255 @install @runtest".
(score = 20)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: >>>
# Fatal error: exception GoblintCil__Errormsg.Error
(score = 35)
2026-03-02 11:53.22: >>>
# ./structattr2-tmp.c:45:9: error: increment of member 'a' in read-only object
(score = 30)
2026-03-02 11:53.22: >>>
# ./structattr2-tmp.c:47:10: error: increment of member 'a' in read-only object
(score = 30)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: >>>
# combine22_1.c:7:24: error: invalid application of 'sizeof' to incomplete type 'struct empty'
(score = 30)
2026-03-02 11:53.22: >>>
# collect2: error: ld returned 1 exit status
(score = 30)
2026-03-02 11:53.22: >>>
# collect2: error: ld returned 1 exit status
(score = 30)
2026-03-02 11:53.22: >>>
# Error: Error while processing file; see above for details.
(score = 48)
2026-03-02 11:53.22: >>>
# Fatal error: exception GoblintCil__Errormsg.Error
(score = 35)
2026-03-02 11:53.22: >>>
# Error: Error while processing file; see above for details.
(score = 48)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: >>>
[ERROR] The compilation of goblint-cil.2.0.2 failed at "dune build -p goblint-cil -j 255 @install @runtest".
(score = 20)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: >>>
# Fatal error: exception GoblintCil__Errormsg.Error
(score = 35)
2026-03-02 11:53.22: >>>
# ./structattr2-tmp.c:45:9: error: increment of member 'a' in read-only object
(score = 30)
2026-03-02 11:53.22: >>>
# ./structattr2-tmp.c:47:10: error: increment of member 'a' in read-only object
(score = 30)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: >>>
# combine22_1.c:7:24: error: invalid application of 'sizeof' to incomplete type 'struct empty'
(score = 30)
2026-03-02 11:53.22: >>>
# collect2: error: ld returned 1 exit status
(score = 30)
2026-03-02 11:53.22: >>>
# collect2: error: ld returned 1 exit status
(score = 30)
2026-03-02 11:53.22: >>>
# Error: Error while processing file; see above for details.
(score = 48)
2026-03-02 11:53.22: >>>
# Fatal error: exception GoblintCil__Errormsg.Error
(score = 35)
2026-03-02 11:53.22: >>>
# Error: Error while processing file; see above for details.
(score = 48)
2026-03-02 11:53.22: >>>
# Error: Cabs2cil had some errors
(score = 48)
2026-03-02 11:53.22: Cabs2cil had some errors