2023-09-21 12:38.12: New job: test goblint-cil.2.0.1, using opam dev from https://github.com/ocaml/opam-repository.git#refs/pull/24493/head (0616413572413ff344e79200c53cd02325a103ec) on oraclelinux-9-ocaml-4.14/amd64 To reproduce locally: cd $(mktemp -d) git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/24493/head" && git reset --hard 06164135 git fetch origin master git merge --no-edit 52faa0368bad47b21b52c2289d1d97c6e2bf429b cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:oraclelinux-9-ocaml-4.14@sha256:656d4af3449d5ece8f39b75ef118c93543856435e2e2005a49d5311d96831baf USER 1000:1000 WORKDIR /home/opam RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam RUN opam init --reinit -ni ENV OPAMDOWNLOADJOBS="1" ENV OPAMERRLOGLEN="0" ENV OPAMSOLVERTIMEOUT="500" 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 ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed" ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed" ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed" RUN opam pin add -k version -yn goblint-cil.2.0.1 2.0.1 RUN opam reinstall goblint-cil.2.0.1; \ res=$?; \ test "$res" != 31 && exit "$res"; \ export OPAMCLI=2.0; \ build_dir=$(opam var prefix)/.opam-switch/build; \ failed=$(ls "$build_dir"); \ partial_fails=""; \ for pkg in $failed; do \ if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"oraclelinux-9\""; 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.1' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed" ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed" ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed" RUN (opam reinstall --with-test goblint-cil.2.0.1) || true RUN opam reinstall --with-test --verbose goblint-cil.2.0.1; \ res=$?; \ test "$res" != 31 && exit "$res"; \ export OPAMCLI=2.0; \ build_dir=$(opam var prefix)/.opam-switch/build; \ failed=$(ls "$build_dir"); \ partial_fails=""; \ for pkg in $failed; do \ if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"oraclelinux-9\""; 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.1' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 END-OF-DOCKERFILE docker build -f ../Dockerfile . 2023-09-21 12:38.12: Using cache hint "ocaml/opam:oraclelinux-9-ocaml-4.14@sha256:656d4af3449d5ece8f39b75ef118c93543856435e2e2005a49d5311d96831baf-goblint-cil.2.0.1-0616413572413ff344e79200c53cd02325a103ec" 2023-09-21 12:38.12: Using OBuilder spec: ((from ocaml/opam:oraclelinux-9-ocaml-4.14@sha256:656d4af3449d5ece8f39b75ef118c93543856435e2e2005a49d5311d96831baf) (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")) (env OPAMDOWNLOADJOBS 1) (env OPAMERRLOGLEN 0) (env OPAMSOLVERTIMEOUT 500) (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")) (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) (run (shell "opam pin add -k version -yn goblint-cil.2.0.1 2.0.1")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall goblint-cil.2.0.1;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n partial_fails=\"\";\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"oraclelinux-9\\\"\"; 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.1' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) (run (network host) (shell "(opam reinstall --with-test goblint-cil.2.0.1) || true")) (run (shell "opam reinstall --with-test --verbose goblint-cil.2.0.1;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n partial_fails=\"\";\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"oraclelinux-9\\\"\"; 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.1' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) ) 2023-09-21 12:38.12: Waiting for resource in pool OCluster 2023-09-21 13:56.54: Waiting for worker… 2023-09-21 13:58.37: Got resource from pool OCluster Building on doris.caelum.ci.dev All commits already cached Updating files: 96% (30645/31694) Updating files: 97% (30744/31694) Updating files: 98% (31061/31694) Updating files: 99% (31378/31694) Updating files: 100% (31694/31694) Updating files: 100% (31694/31694), done. HEAD is now at 52faa0368b Merge pull request #24427 from mtelvers/freebsd-emacs Updating 52faa0368b..0616413572 Fast-forward .../goblint-cil.2.0.0/files/realGccConfigure.patch | 15 +++++++++++++++ packages/goblint-cil/goblint-cil.2.0.0/opam | 2 ++ .../goblint-cil.2.0.1/files/realGccConfigure.patch | 15 +++++++++++++++ packages/goblint-cil/goblint-cil.2.0.1/opam | 2 ++ 4 files changed, 34 insertions(+) create mode 100644 packages/goblint-cil/goblint-cil.2.0.0/files/realGccConfigure.patch create mode 100644 packages/goblint-cil/goblint-cil.2.0.1/files/realGccConfigure.patch (from ocaml/opam:oraclelinux-9-ocaml-4.14@sha256:656d4af3449d5ece8f39b75ef118c93543856435e2e2005a49d5311d96831baf) 2023-09-21 13:59.04 ---> using "d3164bb91251fab370b3bbec68870e7b880ed9b66dc1bc7af9809cf6da5a43a0" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam")) 2023-09-21 13:59.04 ---> using "ba1908a715153fe8f1bfa473820c2bed2b81ecfb7645b6bc0619ea37f6eb6c9d" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2~alpha, which can't be reverted. You may want to back it up before going further. Continue? [y/n] y Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from file:///home/opam/opam-repository 2023-09-21 13:59.04 ---> using "87be7240cbd65dfc61c04371ddf86bd731cd20d9c39491b450556adb1925d565" from cache /home/opam: (env OPAMDOWNLOADJOBS 1) /home/opam: (env OPAMERRLOGLEN 0) /home/opam: (env OPAMSOLVERTIMEOUT 500) /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/")) 2023-09-21 13:59.04 ---> using "022a831f722ddcd47fa92d942a924cab462427bc09cb58e0555dab3fda988f4b" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2023-09-21 13:59.12 ---> saved as "bd0df78f0b6a3f4587a3bc70e3b61ff5d6823609934597185ef74233ca9e3af7" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2023-09-21 13:59.53 ---> saved as "9e8ad39c7f94f3b141815165aad90fe384d6603492cd07eb07254cec0f0a1b04" /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "yum" "makecache" - Oracle Linux 9 BaseOS Latest (x86_64) 22 kB/s | 3.6 kB 00:00 - Oracle Linux 9 BaseOS Latest (x86_64) 2.1 MB/s | 15 MB 00:06 - Oracle Linux 9 Application Stream Packages (x86 14 kB/s | 3.9 kB 00:00 - Oracle Linux 9 Application Stream Packages (x86 10 MB/s | 22 MB 00:02 - Last metadata expiration check: 0:00:02 ago on Thu Sep 21 14:00:04 2023. - Metadata cache created. 2023-09-21 14:00.11 ---> saved as "a341f547c504bf41a8d67fdfa77b1f2ddf22fa7ff2449eab6e195137deaf0374" /home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) /home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) /home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) /home/opam: (run (shell "opam pin add -k version -yn goblint-cil.2.0.1 2.0.1")) goblint-cil is now pinned to version 2.0.1 2023-09-21 14:00.12 ---> saved as "f7bd38c642436678819bd2291f07b8ec93d13516b3400cd8f77aa9549a1a70f5" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall goblint-cil.2.0.1;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n partial_fails=\"\";\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"oraclelinux-9\\\"\"; 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.1' && 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.1 is not installed. Install it? [y/n] y The following actions will be performed: === install 20 packages - install conf-gcc 1.0 [required by goblint-cil] - install conf-gmp 4 [required by zarith] - install conf-perl 2 [required by goblint-cil] - install cppo 1.6.9 [required by goblint-cil] - install csexp 1.5.2 [required by dune-configurator] - install dune 3.10.0 [required by goblint-cil] - install dune-configurator 3.10.0 [required by goblint-cil] - install goblint-cil 2.0.1 (pinned) - install ocaml-compiler-libs v0.12.4 [required by ppxlib] - install ocamlfind 1.9.6 [required by zarith] - install ppx_derivers 1.2.1 [required by ppx_deriving] - install ppx_deriving 5.2.1 [required by ppx_deriving_yojson] - install ppx_deriving_yojson 3.7.0 [required by goblint-cil] - install ppxlib 0.30.0 [required by ppx_deriving_yojson] - install result 1.5 [required by ppx_deriving_yojson] - install seq base [required by yojson] - install sexplib0 v0.16.0 [required by ppxlib] - install stdlib-shims 0.3.0 [required by goblint-cil] - install yojson 2.1.0 [required by goblint-cil] - install zarith 1.13 [required by goblint-cil] The following system packages will first need to be installed: gmp-devel perl-ExtUtils-MakeMaker <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> opam believes some required external dependencies are missing. opam can: > 1. Run yum to install them (may need root/sudo access) 2. Display the recommended yum 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 "yum" "install" "-y" "gmp-devel" "perl-ExtUtils-MakeMaker" - Last metadata expiration check: 0:00:16 ago on Thu Sep 21 14:00:04 2023. - Dependencies resolved. - ================================================================================ - Package Arch Version Repository Size - ================================================================================ - Installing: - gmp-devel x86_64 1:6.2.0-10.el9 ol9_appstream 184 k - perl-ExtUtils-MakeMaker noarch 2:7.60-3.el9 ol9_appstream 352 k - Installing dependencies: - gmp-c++ x86_64 1:6.2.0-10.el9 ol9_appstream 20 k - perl-AutoSplit noarch 5.74-480.el9 ol9_appstream 22 k - perl-Benchmark noarch 1.23-480.el9 ol9_appstream 27 k - perl-CPAN-Meta-Requirements noarch 2.140-461.el9 ol9_appstream 38 k - perl-CPAN-Meta-YAML noarch 0.018-461.el9 ol9_appstream 31 k - perl-Devel-PPPort x86_64 3.62-4.el9 ol9_appstream 220 k - perl-ExtUtils-Command noarch 2:7.60-3.el9 ol9_appstream 15 k - perl-ExtUtils-Constant noarch 0.25-480.el9 ol9_appstream 56 k - perl-ExtUtils-Install noarch 2.20-4.el9 ol9_appstream 53 k - perl-ExtUtils-Manifest noarch 1:1.73-4.el9 ol9_appstream 40 k - perl-ExtUtils-ParseXS noarch 1:3.40-460.el9 ol9_appstream 212 k - perl-JSON-PP noarch 1:4.06-4.el9 ol9_appstream 74 k - perl-Math-BigInt noarch 1:1.9998.18-460.el9 ol9_appstream 208 k - perl-Math-Complex noarch 1.59-480.el9 ol9_appstream 51 k - perl-Test-Harness noarch 1:3.42-461.el9 ol9_appstream 387 k - python3-pyparsing noarch 2.4.7-9.el9 ol9_baseos_latest 163 k - systemtap-sdt-devel x86_64 4.8-2.0.1.el9 ol9_appstream 83 k - Installing weak dependencies: - perl-CPAN-Meta noarch 2.150010-460.el9 ol9_appstream 292 k - perl-Time-HiRes x86_64 4:1.9764-462.el9 ol9_appstream 64 k - perl-devel x86_64 4:5.32.1-480.el9 ol9_appstream 749 k - perl-doc noarch 5.32.1-480.el9 ol9_appstream 4.9 M - - Transaction Summary - ================================================================================ - Install 23 Packages - - Total download size: 8.1 M - Installed size: 23 M - Downloading Packages: - (1/23): gmp-c++-6.2.0-10.el9.x86_64.rpm 116 kB/s | 20 kB 00:00 - (2/23): python3-pyparsing-2.4.7-9.el9.noarch.rp 865 kB/s | 163 kB 00:00 - (3/23): perl-AutoSplit-5.74-480.el9.noarch.rpm 304 kB/s | 22 kB 00:00 - (4/23): perl-Benchmark-1.23-480.el9.noarch.rpm 433 kB/s | 27 kB 00:00 - (5/23): perl-CPAN-Meta-Requirements-2.140-461.e 641 kB/s | 38 kB 00:00 - (6/23): perl-CPAN-Meta-2.150010-460.el9.noarch. 2.7 MB/s | 292 kB 00:00 - (7/23): perl-CPAN-Meta-YAML-0.018-461.el9.noarc 771 kB/s | 31 kB 00:00 - (8/23): perl-ExtUtils-Command-7.60-3.el9.noarch 710 kB/s | 15 kB 00:00 - (9/23): perl-Devel-PPPort-3.62-4.el9.x86_64.rpm 4.1 MB/s | 220 kB 00:00 - (10/23): perl-ExtUtils-Constant-0.25-480.el9.no 1.6 MB/s | 56 kB 00:00 - (11/23): perl-ExtUtils-Install-2.20-4.el9.noarc 2.2 MB/s | 53 kB 00:00 - (12/23): perl-ExtUtils-Manifest-1.73-4.el9.noar 1.6 MB/s | 40 kB 00:00 - (13/23): gmp-devel-6.2.0-10.el9.x86_64.rpm 399 kB/s | 184 kB 00:00 - (14/23): perl-ExtUtils-MakeMaker-7.60-3.el9.noa 4.6 MB/s | 352 kB 00:00 - (15/23): perl-JSON-PP-4.06-4.el9.noarch.rpm 238 kB/s | 74 kB 00:00 - (16/23): perl-ExtUtils-ParseXS-3.40-460.el9.noa 642 kB/s | 212 kB 00:00 - (17/23): perl-Math-BigInt-1.9998.18-460.el9.noa 681 kB/s | 208 kB 00:00 - (18/23): perl-Math-Complex-1.59-480.el9.noarch. 2.2 MB/s | 51 kB 00:00 - (19/23): perl-Time-HiRes-1.9764-462.el9.x86_64. 3.4 MB/s | 64 kB 00:00 - (20/23): perl-devel-5.32.1-480.el9.x86_64.rpm 1.8 MB/s | 749 kB 00:00 - (21/23): perl-Test-Harness-3.42-461.el9.noarch. 850 kB/s | 387 kB 00:00 - (22/23): systemtap-sdt-devel-4.8-2.0.1.el9.x86_ 532 kB/s | 83 kB 00:00 - (23/23): perl-doc-5.32.1-480.el9.noarch.rpm 8.4 MB/s | 4.9 MB 00:00 - -------------------------------------------------------------------------------- - Total 5.8 MB/s | 8.1 MB 00:01 - Running transaction check - Transaction check succeeded. - Running transaction test - Transaction test succeeded. - Running transaction - Preparing : 1/1 - Installing : perl-Time-HiRes-4:1.9764-462.el9.x86_64 1/23 - Installing : perl-ExtUtils-ParseXS-1:3.40-460.el9.noarch 2/23 - Installing : perl-CPAN-Meta-Requirements-2.140-461.el9.noarch 3/23 - Installing : perl-doc-5.32.1-480.el9.noarch 4/23 - Installing : perl-Math-Complex-1.59-480.el9.noarch 5/23 - Installing : perl-Math-BigInt-1:1.9998.18-460.el9.noarch 6/23 - Installing : perl-JSON-PP-1:4.06-4.el9.noarch 7/23 - Installing : perl-ExtUtils-Manifest-1:1.73-4.el9.noarch 8/23 - Installing : perl-ExtUtils-Constant-0.25-480.el9.noarch 9/23 - Installing : perl-ExtUtils-Command-2:7.60-3.el9.noarch 10/23 - Installing : perl-Devel-PPPort-3.62-4.el9.x86_64 11/23 - Installing : perl-CPAN-Meta-YAML-0.018-461.el9.noarch 12/23 - Installing : perl-CPAN-Meta-2.150010-460.el9.noarch 13/23 - Installing : perl-Benchmark-1.23-480.el9.noarch 14/23 - Installing : perl-Test-Harness-1:3.42-461.el9.noarch 15/23 - Installing : perl-AutoSplit-5.74-480.el9.noarch 16/23 - Installing : gmp-c++-1:6.2.0-10.el9.x86_64 17/23 - Installing : python3-pyparsing-2.4.7-9.el9.noarch 18/23 - Installing : systemtap-sdt-devel-4.8-2.0.1.el9.x86_64 19/23 - Installing : perl-ExtUtils-Install-2.20-4.el9.noarch 20/23 - Installing : perl-devel-4:5.32.1-480.el9.x86_64 21/23 - Installing : perl-ExtUtils-MakeMaker-2:7.60-3.el9.noarch 22/23 - Installing : gmp-devel-1:6.2.0-10.el9.x86_64 23/23 - Running scriptlet: gmp-devel-1:6.2.0-10.el9.x86_64 23/23 - Verifying : python3-pyparsing-2.4.7-9.el9.noarch 1/23 - Verifying : gmp-c++-1:6.2.0-10.el9.x86_64 2/23 - Verifying : gmp-devel-1:6.2.0-10.el9.x86_64 3/23 - Verifying : perl-AutoSplit-5.74-480.el9.noarch 4/23 - Verifying : perl-Benchmark-1.23-480.el9.noarch 5/23 - Verifying : perl-CPAN-Meta-2.150010-460.el9.noarch 6/23 - Verifying : perl-CPAN-Meta-Requirements-2.140-461.el9.noarch 7/23 - Verifying : perl-CPAN-Meta-YAML-0.018-461.el9.noarch 8/23 - Verifying : perl-Devel-PPPort-3.62-4.el9.x86_64 9/23 - Verifying : perl-ExtUtils-Command-2:7.60-3.el9.noarch 10/23 - Verifying : perl-ExtUtils-Constant-0.25-480.el9.noarch 11/23 - Verifying : perl-ExtUtils-Install-2.20-4.el9.noarch 12/23 - Verifying : perl-ExtUtils-MakeMaker-2:7.60-3.el9.noarch 13/23 - Verifying : perl-ExtUtils-Manifest-1:1.73-4.el9.noarch 14/23 - Verifying : perl-ExtUtils-ParseXS-1:3.40-460.el9.noarch 15/23 - Verifying : perl-JSON-PP-1:4.06-4.el9.noarch 16/23 - Verifying : perl-Math-BigInt-1:1.9998.18-460.el9.noarch 17/23 - Verifying : perl-Math-Complex-1.59-480.el9.noarch 18/23 - Verifying : perl-Test-Harness-1:3.42-461.el9.noarch 19/23 - Verifying : perl-Time-HiRes-4:1.9764-462.el9.x86_64 20/23 - Verifying : perl-devel-4:5.32.1-480.el9.x86_64 21/23 - Verifying : perl-doc-5.32.1-480.el9.noarch 22/23 - Verifying : systemtap-sdt-devel-4.8-2.0.1.el9.x86_64 23/23 - - Installed: - gmp-c++-1:6.2.0-10.el9.x86_64 - gmp-devel-1:6.2.0-10.el9.x86_64 - perl-AutoSplit-5.74-480.el9.noarch - perl-Benchmark-1.23-480.el9.noarch - perl-CPAN-Meta-2.150010-460.el9.noarch - perl-CPAN-Meta-Requirements-2.140-461.el9.noarch - perl-CPAN-Meta-YAML-0.018-461.el9.noarch - perl-Devel-PPPort-3.62-4.el9.x86_64 - perl-ExtUtils-Command-2:7.60-3.el9.noarch - perl-ExtUtils-Constant-0.25-480.el9.noarch - perl-ExtUtils-Install-2.20-4.el9.noarch - perl-ExtUtils-MakeMaker-2:7.60-3.el9.noarch - perl-ExtUtils-Manifest-1:1.73-4.el9.noarch - perl-ExtUtils-ParseXS-1:3.40-460.el9.noarch - perl-JSON-PP-1:4.06-4.el9.noarch - perl-Math-BigInt-1:1.9998.18-460.el9.noarch - perl-Math-Complex-1.59-480.el9.noarch - perl-Test-Harness-1:3.42-461.el9.noarch - perl-Time-HiRes-4:1.9764-462.el9.x86_64 - perl-devel-4:5.32.1-480.el9.x86_64 - perl-doc-5.32.1-480.el9.noarch - python3-pyparsing-2.4.7-9.el9.noarch - systemtap-sdt-devel-4.8-2.0.1.el9.x86_64 - - Complete! + /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "perl-ExtUtils-MakeMaker" - gmp-devel-6.2.0-10.el9.x86_64 - perl-ExtUtils-MakeMaker-7.60-3.el9.noarch <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved cppo.1.6.9 (cached) -> retrieved csexp.1.5.2 (cached) -> installed conf-gcc.1.0 -> installed conf-perl.2 -> installed conf-gmp.4 -> retrieved dune.3.10.0, dune-configurator.3.10.0 (cached) -> retrieved goblint-cil.2.0.1 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocamlfind.1.9.6 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_deriving.5.2.1 (cached) -> retrieved ppx_deriving_yojson.3.7.0 (cached) -> retrieved ppxlib.0.30.0 (cached) -> retrieved result.1.5 (cached) -> installed seq.base -> retrieved sexplib0.v0.16.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved yojson.2.1.0 (cached) -> retrieved zarith.1.13 (cached) -> installed ocamlfind.1.9.6 -> installed zarith.1.13 -> installed dune.3.10.0 -> installed ppx_derivers.1.2.1 -> installed stdlib-shims.0.3.0 -> installed csexp.1.5.2 -> installed cppo.1.6.9 -> installed ocaml-compiler-libs.v0.12.4 -> installed result.1.5 -> installed sexplib0.v0.16.0 -> installed dune-configurator.3.10.0 -> installed yojson.2.1.0 -> installed ppxlib.0.30.0 -> installed ppx_deriving.5.2.1 -> installed ppx_deriving_yojson.3.7.0 -> installed goblint-cil.2.0.1 Done. # Run eval $(opam env) to update the current shell environment 2023-09-21 14:01.02 ---> saved as "adac7566622817cf14b09f92238fa5f35842ec361d82904b8b77c33f585f4dbc" /home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) /home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) /home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed) /home/opam: (run (network host) (shell "(opam reinstall --with-test goblint-cil.2.0.1) || true")) The following actions will be performed: === recompile 1 package - recompile goblint-cil 2.0.1 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] The compilation of goblint-cil.2.0.1 failed at "dune build -p goblint-cil -j 255 @install @runtest". #=== ERROR while compiling goblint-cil.2.0.1 ==================================# # context 2.2.0~alpha3~dev | linux/x86_64 | ocaml-base-compiler.4.14.1 | pinned(https://github.com/goblint/cil/releases/download/2.0.1/goblint-cil-2.0.1.tbz) # path ~/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1 # 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-bc277e.env # output-file ~/.opam/log/goblint-cil-7-bc277e.out ### output ### # (cd _build/default && /home/opam/.opam/4.14/bin/ocamlyacc src/frontc/cparser.mly) # 1 shift/reduce conflict, 1 reduce/reduce conflict. # (cd _build/default/src && /home/opam/.opam/4.14/bin/cppo -V OCAML:4.14.1 machdep.cppo.ml -x machdep:./machdep-ml.exe -o machdep.ml) # Generating machine dependency information for CIL # File "test/dune", line 1, 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 434 tests enabled # ------------ [0] CC="gcc" make arcombine ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -c array1.c array2.c # # [0] A regression test command failed: # CC="gcc" make arcombine # ------------ [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/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.c -c -o baddef1.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef2.c -c -o baddef2.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.o baddef2.o -obaddef.exe # # [1] A regression test command failed: # CC="gcc" make baddef # ------------ [2] CC="gcc" make comb ------------ # rm -f ./small2/comb.exe # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c -c -o comb1.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb2.c -c -o comb2.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb3.c -c -o comb3.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb4.c -c -o comb4.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.o comb2.o comb3.o comb4.o -ocomb.exe # # [2] A regression test command failed: # CC="gcc" make comb # ------------ [3] CC="gcc" make combine1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [3] A regression test command failed: # CC="gcc" make combine1 # ------------ [4] CC="gcc" make combine10 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [4] A regression test command failed: # CC="gcc" make combine10 # ------------ [5] CC="gcc" make combine11 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [5] A regression test command failed: # CC="gcc" make combine11 # ------------ [6] CC="gcc" make combine12 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [6] A regression test command failed: # CC="gcc" make combine12 # ------------ [7] CC="gcc" make combine13 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [7] A regression test command failed: # CC="gcc" make combine13 # ------------ [8] CC="gcc" make combine14 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [8] A regression test command failed: # CC="gcc" make combine14 # ------------ [9] CC="gcc" make combine15 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [9] A regression test command failed: # CC="gcc" make combine15 # ------------ [10] CC="gcc" make combine16 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [10] A regression test command failed: # CC="gcc" make combine16 # ------------ [11] CC="gcc" make combine17 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [11] A regression test command failed: # CC="gcc" make combine17 # ------------ [12] CC="gcc" make combine18 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [12] A regression test command failed: # CC="gcc" make combine18 # ------------ [13] CC="gcc" make combine2 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [13] A regression test command failed: # CC="gcc" make combine2 # ------------ [14] CC="gcc" make combine20 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [14] A regression test command failed: # CC="gcc" make combine20 # ------------ [15] CC="gcc" make combine21 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [15] A regression test command failed: # CC="gcc" make combine21 # ------------ [16] (fail) CC="gcc" make combine22 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [17] A regression test command failed: # CC="gcc" make combine3 # ------------ [18] CC="gcc" make combine5 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [18] A regression test command failed: # CC="gcc" make combine5 # ------------ [19] CC="gcc" make combine6 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [19] A regression test command failed: # CC="gcc" make combine6 # ------------ [20] CC="gcc" make combine8 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [20] A regression test command failed: # CC="gcc" make combine8 # ------------ [21] (fail) CC="gcc" make combine9 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [22] A regression test command failed: # CC="gcc" make combine_allocate MERGEINLINES=1 # ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [23] A regression test command failed: # CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 # ------------ [24] CC="gcc" make combine_init ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [24] A regression test command failed: # CC="gcc" make combine_init # ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [27] A regression test command failed: # CC="gcc" make combine_sbump # ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [28] A regression test command failed: # CC="gcc" make combine_sbumpB MERGEINLINES=1 # ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [29] A regression test command failed: # CC="gcc" make combine_syserr MERGEINLINES=1 # ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [30] A regression test command failed: # CC="gcc" make combine_theFunc MERGEINLINES=1 # ------------ [31] CC="gcc" make combinealias ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [31] A regression test command failed: # CC="gcc" make combinealias # ------------ [32] (fail) CC="gcc" make combinec99inline ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -fcommon --merge \ # combine-c99inline_1.c combine-c99inline_2.c \ # -ocombine-c99inline.exe # ------------ [33] CC="gcc" make combineenum1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [33] A regression test command failed: # CC="gcc" make combineenum1 # ------------ [34] CC="gcc" make combineenum2 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [34] A regression test command failed: # CC="gcc" make combineenum2 # ------------ [35] CC="gcc" make combineenum3 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [35] A regression test command failed: # CC="gcc" make combineenum3 # ------------ [36] CC="gcc" make combinegnuinline ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [36] A regression test command failed: # CC="gcc" make combinegnuinline # ------------ [37] (fail) CC="gcc" make combineinline1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [38] CC="gcc" make combineinline2 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [38] A regression test command failed: # CC="gcc" make combineinline2 # ------------ [39] (fail) CC="gcc" make combineinline3 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [40] (fail) CC="gcc" make combineinline4 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [41] CC="gcc" make combineinline6 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [41] A regression test command failed: # CC="gcc" make combineinline6 # ------------ [42] CC="gcc" make combinelibrik ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [42] A regression test command failed: # CC="gcc" make combinelibrik # ------------ [43] CC="gcc" make combinestruct1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [43] A regression test command failed: # CC="gcc" make combinestruct1 # ------------ [44] CC="gcc" make merge-ar ------------ # cd small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --merge -c merge-ar.c merge-twice-1.c # # [44] A regression test command failed: # CC="gcc" make merge-ar # ------------ [45] CC="gcc" make mergeinit ------------ # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [45] A regression test command failed: # CC="gcc" make mergeinit # ------------ [46] CC="gcc" make mergeinline ------------ # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats mergeinline1.c mergeinline2.c -o mergeinline.exe # # [46] A regression test command failed: # CC="gcc" make mergeinline # ------------ [47] CC="gcc" make mergestruct ------------ # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon mergestruct1.c mergestruct2.c -o mergestruct.exe # # [47] A regression test command failed: # CC="gcc" make mergestruct # ------------ [48] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c comb2.i comb3.s comb4.o -ocomb.exe # # [48] A regression test command failed: # CC="gcc" make mixedcomb # ------------ [49] CC="gcc" make runall/alpha ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test baseline returned with code 512. Expected success # # [49] A regression test command failed: # CC="gcc" make runall/alpha # ------------ [50] CC="gcc" make runall/extinline ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test bad returned with code 512. Expected failure # # [50] A regression test command failed: # CC="gcc" make runall/extinline # ------------ [51] CC="gcc" make runall/runall_misc ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test rbrace returned with code 512. Expected failure # # [51] A regression test command failed: # CC="gcc" make runall/runall_misc # ------------ [52] CC="gcc" make runall/structattr2 ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test archspecific returned with code 512. Expected success # # [52] A regression test command failed: # CC="gcc" make runall/structattr2 # ------------ [53] CC="gcc" make runall/switch ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test baseline returned with code 512. Expected success # # [53] A regression test command failed: # CC="gcc" make runall/switch # ------------ [54] CC="gcc" make scott-nogcc/bogus_redef ------------ # rm -f ./small2/bogus_redef.exe # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [54] A regression test command failed: # CC="gcc" make scott-nogcc/bogus_redef # ------------ [55] CC="gcc" make scott-nogcc/funcname ------------ # rm -f ./small2/funcname.exe # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [55] A regression test command failed: # CC="gcc" make scott-nogcc/funcname # ------------ [56] CC="gcc" make scott-nolink/brlock ------------ # rm -f ./small2/brlock.exe # cd ./small2; gcc -c -Wall brlock.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [56] A regression test command failed: # CC="gcc" make scott-nolink/brlock # ------------ [57] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [57] A regression test command failed: # CC="gcc" make scott/arrayinit # ------------ [58] (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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [59] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [59] A regression test command failed: # CC="gcc" make scott/bisonerror # ------------ [60] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [60] A regression test command failed: # CC="gcc" make scott/cmpzero # ------------ [61] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [61] A regression test command failed: # CC="gcc" make scott/constdecl # ------------ [62] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [62] A regression test command failed: # CC="gcc" make scott/constfold # ------------ [63] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [63] A regression test command failed: # CC="gcc" make scott/ctype # ------------ [64] CC="gcc" make scott/enumattr ------------ # rm -f ./small2/enumattr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enumattr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # enumattr.c \ # -oenumattr.exe # # [64] A regression test command failed: # CC="gcc" make scott/enumattr # ------------ [65] CC="gcc" make scott/enumerator_sizeof ------------ # rm -f ./small2/enumerator_sizeof.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enumerator_sizeof.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # enumerator_sizeof.c \ # -oenumerator_sizeof.exe # # [65] A regression test command failed: # CC="gcc" make scott/enumerator_sizeof # ------------ [66] CC="gcc" make scott/enuminit ------------ # rm -f ./small2/enuminit.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enuminit.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # enuminit.c \ # -oenuminit.exe # # [66] A regression test command failed: # CC="gcc" make scott/enuminit # ------------ [67] CC="gcc" make scott/errorinfn ------------ # rm -f ./small2/errorinfn.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall errorinfn.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # errorinfn.c \ # -oerrorinfn.exe # # [67] A regression test command failed: # CC="gcc" make scott/errorinfn # ------------ [68] CC="gcc" make scott/funcptr ------------ # rm -f ./small2/funcptr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall funcptr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # funcptr.c \ # -ofuncptr.exe # # [68] A regression test command failed: # CC="gcc" make scott/funcptr # ------------ [69] CC="gcc" make scott/gimpdouble ------------ # rm -f ./small2/gimpdouble.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall gimpdouble.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # gimpdouble.c \ # -ogimpdouble.exe # # [69] A regression test command failed: # CC="gcc" make scott/gimpdouble # ------------ [70] (fail) CC="gcc" make scott/globalprob ------------ # rm -f ./small2/globalprob.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall globalprob.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # globalprob.c \ # -oglobalprob.exe # ------------ [71] CC="gcc" make scott/initedextern ------------ # rm -f ./small2/initedextern.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall initedextern.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # initedextern.c \ # -oinitedextern.exe # # [71] A regression test command failed: # CC="gcc" make scott/initedextern # ------------ [72] CC="gcc" make scott/invalredef ------------ # rm -f ./small2/invalredef.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall invalredef.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # invalredef.c \ # -oinvalredef.exe # # [72] A regression test command failed: # CC="gcc" make scott/invalredef # ------------ [73] CC="gcc" make scott/invalredef2 ------------ # rm -f ./small2/invalredef2.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall invalredef2.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # invalredef2.c \ # -oinvalredef2.exe # # [73] A regression test command failed: # CC="gcc" make scott/invalredef2 # ------------ [74] CC="gcc" make scott/kernel1 ------------ # rm -f ./small2/kernel1.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall kernel1.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # kernel1.c \ # -okernel1.exe # # [74] A regression test command failed: # CC="gcc" make scott/kernel1 # ------------ [75] CC="gcc" make scott/kernel2 ------------ # rm -f ./small2/kernel2.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall kernel2.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # kernel2.c \ # -okernel2.exe # # [75] A regression test command failed: # CC="gcc" make scott/kernel2 # ------------ [76] CC="gcc" make scott/lexnum ------------ # rm -f ./small2/lexnum.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall lexnum.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # lexnum.c \ # -olexnum.exe # # [76] A regression test command failed: # CC="gcc" make scott/lexnum # ------------ [77] CC="gcc" make scott/litstruct ------------ # rm -f ./small2/litstruct.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall litstruct.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # litstruct.c \ # -olitstruct.exe # # [77] A regression test command failed: # CC="gcc" make scott/litstruct # ------------ [78] CC="gcc" make scott/main ------------ # rm -f ./small2/main.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall main.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # main.c \ # -omain.exe # # [78] A regression test command failed: # CC="gcc" make scott/main # ------------ [79] CC="gcc" make scott/memberofptr ------------ # rm -f ./small2/memberofptr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall memberofptr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # memberofptr.c \ # -omemberofptr.exe # # [79] A regression test command failed: # CC="gcc" make scott/memberofptr # ------------ [80] CC="gcc" make scott/mode_sizes ------------ # rm -f ./small2/mode_sizes.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall mode_sizes.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # mode_sizes.c \ # -omode_sizes.exe # # [80] A regression test command failed: # CC="gcc" make scott/mode_sizes # ------------ [81] CC="gcc" make scott/multiplestatics ------------ # rm -f ./small2/multiplestatics.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall multiplestatics.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # multiplestatics.c \ # -omultiplestatics.exe # # [81] A regression test command failed: # CC="gcc" make scott/multiplestatics # ------------ [82] CC="gcc" make scott/neg64 ------------ # rm -f ./small2/neg64.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall neg64.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # neg64.c \ # -oneg64.exe # # [82] A regression test command failed: # CC="gcc" make scott/neg64 # ------------ [83] CC="gcc" make scott/oldstyle ------------ # rm -f ./small2/oldstyle.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall oldstyle.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # oldstyle.c \ # -ooldstyle.exe # # [83] A regression test command failed: # CC="gcc" make scott/oldstyle # ------------ [84] CC="gcc" make scott/open ------------ # rm -f ./small2/open.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall open.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # open.c \ # -oopen.exe # # [84] A regression test command failed: # CC="gcc" make scott/open # ------------ [85] CC="gcc" make scott/partialbracket ------------ # rm -f ./small2/partialbracket.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall partialbracket.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # partialbracket.c \ # -opartialbracket.exe # # [85] A regression test command failed: # CC="gcc" make scott/partialbracket # ------------ [86] CC="gcc" make scott/putc ------------ # rm -f ./small2/putc.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall putc.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # putc.c \ # -oputc.exe # # [86] A regression test command failed: # CC="gcc" make scott/putc # ------------ [87] (fail) CC="gcc" make scott/regparm0 ------------ # rm -f ./small2/regparm0.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall regparm0.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # regparm0.c \ # -oregparm0.exe # ------------ [88] CC="gcc" make scott/s59 ------------ # rm -f ./small2/s59.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall s59.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # s59.c \ # -os59.exe # # [88] A regression test command failed: # CC="gcc" make scott/s59 # ------------ [89] CC="gcc" make scott/sizeofchar ------------ # rm -f ./small2/sizeofchar.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall sizeofchar.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # sizeofchar.c \ # -osizeofchar.exe # # [89] A regression test command failed: # CC="gcc" make scott/sizeofchar # ------------ [90] CC="gcc" make scott/sockaddr ------------ # rm -f ./small2/sockaddr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall sockaddr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # sockaddr.c \ # -osockaddr.exe # # [90] A regression test command failed: # CC="gcc" make scott/sockaddr # ------------ [91] CC="gcc" make scott/struct_cs ------------ # rm -f ./small2/struct_cs.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall struct_cs.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # struct_cs.c \ # -ostruct_cs.exe # # [91] A regression test command failed: # CC="gcc" make scott/struct_cs # ------------ [92] CC="gcc" make scott/structattr ------------ # rm -f ./small2/structattr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall structattr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # structattr.c \ # -ostructattr.exe # # [92] A regression test command failed: # CC="gcc" make scott/structattr # ------------ [93] CC="gcc" make scott/structattr3 ------------ # rm -f ./small2/structattr3.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall structattr3.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # structattr3.c \ # -ostructattr3.exe # # [93] A regression test command failed: # CC="gcc" make scott/structattr3 # ------------ [94] CC="gcc" make scott/thing ------------ # rm -f ./small2/thing.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall thing.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # thing.c \ # -othing.exe # # [94] A regression test command failed: # CC="gcc" make scott/thing # ------------ [95] CC="gcc" make scott/transpunion ------------ # rm -f ./small2/transpunion.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall transpunion.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # transpunion.c \ # -otranspunion.exe # # [95] A regression test command failed: # CC="gcc" make scott/transpunion # ------------ [96] CC="gcc" make scott/typeof ------------ # rm -f ./small2/typeof.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall typeof.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # typeof.c \ # -otypeof.exe # # [96] A regression test command failed: # CC="gcc" make scott/typeof # ------------ [97] CC="gcc" make scott/uninit_tmp ------------ # rm -f ./small2/uninit_tmp.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall uninit_tmp.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # uninit_tmp.c \ # -ouninit_tmp.exe # # [97] A regression test command failed: # CC="gcc" make scott/uninit_tmp # ------------ [98] CC="gcc" make scott/unionassign ------------ # rm -f ./small2/unionassign.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall unionassign.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # unionassign.c \ # -ounionassign.exe # # [98] A regression test command failed: # CC="gcc" make scott/unionassign # ------------ [99] CC="gcc" make scott/unscomp ------------ # rm -f ./small2/unscomp.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall unscomp.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # unscomp.c \ # -ounscomp.exe # # [99] A regression test command failed: # CC="gcc" make scott/unscomp # ------------ [100] CC="gcc" make scott/volatilestruct ------------ # rm -f ./small2/volatilestruct.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall volatilestruct.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # volatilestruct.c \ # -ovolatilestruct.exe # # [100] A regression test command failed: # CC="gcc" make scott/volatilestruct # ------------ [101] CC="gcc" make scott/xcheckers ------------ # rm -f ./small2/xcheckers.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall xcheckers.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # xcheckers.c \ # -oxcheckers.exe # # [101] A regression test command failed: # CC="gcc" make scott/xcheckers # ------------ [102] CC="gcc" make test-bad/enuminit2 ------------ # cd ./small2; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS="-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad enuminit2.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS=-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 1 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enuminit2-tmp.c -o enuminit2-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [102] A regression test command failed: # CC="gcc" make test-bad/enuminit2 # ------------ [103] CC="gcc" make test-bad/trivial-tb ------------ # cd ./small2; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS="-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad trivial-tb.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS=-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 4 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall trivial-tb-tmp.c -o trivial-tb-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [103] A regression test command failed: # CC="gcc" make test-bad/trivial-tb # ------------ [104] CC="gcc" make test-bad1/flexible-array-member-bad ------------ # cd ./small1; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS=" -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad flexible-array-member-bad.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS= -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 1 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall flexible-array-member-bad-tmp.c -o flexible-array-member-bad-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [104] A regression test command failed: # CC="gcc" make test-bad1/flexible-array-member-bad # ------------ [105] CC="gcc" make test-bad1/wchar-bad ------------ # cd ./small1; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS=" -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad wchar-bad.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS= -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 4 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall wchar-bad-tmp.c -o wchar-bad-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [105] A regression test command failed: # CC="gcc" make test-bad1/wchar-bad # ------------ [106] CC="gcc" make test/align3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o align3.s align3.c # # [106] A regression test command failed: # CC="gcc" make test/align3 # ------------ [107] CC="gcc" make test/apachebits ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o apachebits.s apachebits.c # # [107] A regression test command failed: # CC="gcc" make test/apachebits # ------------ [108] (fail) CC="gcc" make test/argcast ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o argcast.s argcast.c # ------------ [109] CC="gcc" make test/array-size-trick ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array-size-trick.s array-size-trick.c # # [109] A regression test command failed: # CC="gcc" make test/array-size-trick # ------------ [110] CC="gcc" make test/array1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array1.s array1.c # # [110] A regression test command failed: # CC="gcc" make test/array1 # ------------ [111] CC="gcc" make test/array2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array2.s array2.c # # [111] A regression test command failed: # CC="gcc" make test/array2 # ------------ [112] CC="gcc" make test/arrsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o arrsize.s arrsize.c # # [112] A regression test command failed: # CC="gcc" make test/arrsize # ------------ [113] CC="gcc" make test/asm2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm2.s asm2.c # # [113] A regression test command failed: # CC="gcc" make test/asm2 # ------------ [114] CC="gcc" make test/asm3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm3.s asm3.c # # [114] A regression test command failed: # CC="gcc" make test/asm3 # ------------ [115] CC="gcc" make test/asm4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm4.s asm4.c # # [115] A regression test command failed: # CC="gcc" make test/asm4 # ------------ [116] CC="gcc" make test/asm_emptyclobberallowed ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm_emptyclobberallowed.s asm_emptyclobberallowed.c # # [116] A regression test command failed: # CC="gcc" make test/asm_emptyclobberallowed # ------------ [117] CC="gcc" make test/attr10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr10.s attr10.c # # [117] A regression test command failed: # CC="gcc" make test/attr10 # ------------ [118] CC="gcc" make test/attr11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr11.s attr11.c # # [118] A regression test command failed: # CC="gcc" make test/attr11 # ------------ [119] CC="gcc" make test/attr12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr12.s attr12.c # # [119] A regression test command failed: # CC="gcc" make test/attr12 # ------------ [120] CC="gcc" make test/attr13 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr13.s attr13.c # # [120] A regression test command failed: # CC="gcc" make test/attr13 # ------------ [121] CC="gcc" make test/attr2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr2.s attr2.c # # [121] A regression test command failed: # CC="gcc" make test/attr2 # ------------ [122] CC="gcc" make test/attr3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr3.s attr3.c # # [122] A regression test command failed: # CC="gcc" make test/attr3 # ------------ [123] CC="gcc" make test/attr6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr6.s attr6.c # # [123] A regression test command failed: # CC="gcc" make test/attr6 # ------------ [124] CC="gcc" make test/attr7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr7.s attr7.c # # [124] A regression test command failed: # CC="gcc" make test/attr7 # ------------ [125] CC="gcc" make test/attr8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr8.s attr8.c # # [125] A regression test command failed: # CC="gcc" make test/attr8 # ------------ [126] CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o attr9.s attr9.c # # [126] A regression test command failed: # CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 # ------------ [127] CC="gcc" make test/bitfield ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o bitfield.s bitfield.c # # [127] A regression test command failed: # CC="gcc" make test/bitfield # ------------ [128] (fail) CC="gcc" make test/break1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o break1.s break1.c # ------------ [129] CC="gcc" make test/builtin2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o builtin2.s builtin2.c # # [129] A regression test command failed: # CC="gcc" make test/builtin2 # ------------ [130] CC="gcc" make test/builtin5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o builtin5.s builtin5.c # # [130] A regression test command failed: # CC="gcc" make test/builtin5 # ------------ [131] CC="gcc" make test/cast1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast1.s cast1.c # # [131] A regression test command failed: # CC="gcc" make test/cast1 # ------------ [132] CC="gcc" make test/cast2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast2.s cast2.c # # [132] A regression test command failed: # CC="gcc" make test/cast2 # ------------ [133] CC="gcc" make test/cast4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast4.s cast4.c # # [133] A regression test command failed: # CC="gcc" make test/cast4 # ------------ [134] CC="gcc" make test/castcall ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o castcall.s castcall.c # # [134] A regression test command failed: # CC="gcc" make test/castcall # ------------ [135] CC="gcc" make test/castunion ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o castunion.s castunion.c # # [135] A regression test command failed: # CC="gcc" make test/castunion # ------------ [136] CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o const-struct-init.s const-struct-init.c # # [136] A regression test command failed: # CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 # ------------ [137] (fail) CC="gcc" make test/const13 WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o const13.s const13.c # ------------ [138] CC="gcc" make test/const14 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const14.s const14.c # # [138] A regression test command failed: # CC="gcc" make test/const14 # ------------ [139] CC="gcc" make test/const7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const7.s const7.c # # [139] A regression test command failed: # CC="gcc" make test/const7 # ------------ [140] CC="gcc" make test/const9 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const9.s const9.c # # [140] A regression test command failed: # CC="gcc" make test/const9 # ------------ [141] CC="gcc" make test/constprop ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o constprop.s constprop.c # # [141] A regression test command failed: # CC="gcc" make test/constprop # ------------ [142] CC="gcc" make test/constrexpr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o constrexpr.s constrexpr.c # # [142] A regression test command failed: # CC="gcc" make test/constrexpr # ------------ [143] (fail) CC="gcc" make test/cpp-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cpp-2.s cpp-2.c # ------------ [144] CC="gcc" make test/cpp-3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cpp-3.s cpp-3.c # # [144] A regression test command failed: # CC="gcc" make test/cpp-3 # ------------ [145] (fail) CC="gcc" make test/decl2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o decl2.s decl2.c # ------------ [146] CC="gcc" make test/deref ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o deref.s deref.c # # [146] A regression test command failed: # CC="gcc" make test/deref # ------------ [147] CC="gcc" make test/duplicate ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o duplicate.s duplicate.c # # [147] A regression test command failed: # CC="gcc" make test/duplicate # ------------ [148] CC="gcc" make test/enum ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o enum.s enum.c # # [148] A regression test command failed: # CC="gcc" make test/enum # ------------ [149] CC="gcc" make test/enum-scope ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o enum-scope.s enum-scope.c # # [149] A regression test command failed: # CC="gcc" make test/enum-scope # ------------ [150] CC="gcc" make test/extinline3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o extinline3.s extinline3.c # # [150] A regression test command failed: # CC="gcc" make test/extinline3 # ------------ [151] CC="gcc" make test/func ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o func.s func.c # # [151] A regression test command failed: # CC="gcc" make test/func # ------------ [152] (fail) CC="gcc" make test/func10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o func10.s func10.c # ------------ [153] (fail) CC="gcc" make test/funcarg ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o funcarg.s funcarg.c # ------------ [154] CC="gcc" make test/globals ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o globals.s globals.c # # [154] A regression test command failed: # CC="gcc" make test/globals # ------------ [155] (fail) CC="gcc" make test/globals2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o globals2.s globals2.c # ------------ [156] CC="gcc" make test/huff1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o huff1.s huff1.c # # [156] A regression test command failed: # CC="gcc" make test/huff1 # ------------ [157] CC="gcc" make test/init ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o init.s init.c # # [157] A regression test command failed: # CC="gcc" make test/init # ------------ [158] CC="gcc" make test/init8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o init8.s init8.c # # [158] A regression test command failed: # CC="gcc" make test/init8 # ------------ [159] CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o initial.s initial.c # # [159] A regression test command failed: # CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 # ------------ [160] CC="gcc" make test/inline3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o inline3.s inline3.c # # [160] A regression test command failed: # CC="gcc" make test/inline3 # ------------ [161] CC="gcc" make test/jmp_buf ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o jmp_buf.s jmp_buf.c # # [161] A regression test command failed: # CC="gcc" make test/jmp_buf # ------------ [162] CC="gcc" make test/label5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label5.s label5.c # # [162] A regression test command failed: # CC="gcc" make test/label5 # ------------ [163] CC="gcc" make test/label7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label7.s label7.c # # [163] A regression test command failed: # CC="gcc" make test/label7 # ------------ [164] CC="gcc" make test/label8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label8.s label8.c # # [164] A regression test command failed: # CC="gcc" make test/label8 # ------------ [165] CC="gcc" make test/label9 EXTRAARGS=--domakeCFG ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label9.s label9.c # # [165] A regression test command failed: # CC="gcc" make test/label9 EXTRAARGS=--domakeCFG # ------------ [166] CC="gcc" make test/li ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o li.s li.c # # [166] A regression test command failed: # CC="gcc" make test/li # ------------ [167] CC="gcc" make test/linux_atomic ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o linux_atomic.s linux_atomic.c # # [167] A regression test command failed: # CC="gcc" make test/linux_atomic # ------------ [168] CC="gcc" make test/linuxcombine1_1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o linuxcombine1_1.s linuxcombine1_1.c # # [168] A regression test command failed: # CC="gcc" make test/linuxcombine1_1 # ------------ [169] CC="gcc" make test/list ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o list.s list.c # # [169] A regression test command failed: # CC="gcc" make test/list # ------------ [170] CC="gcc" make test/matrix ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o matrix.s matrix.c # # [170] A regression test command failed: # CC="gcc" make test/matrix # ------------ [171] CC="gcc" make test/noreturn ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o noreturn.s noreturn.c # # [171] A regression test command failed: # CC="gcc" make test/noreturn # ------------ [172] CC="gcc" make test/outofmem ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o outofmem.s outofmem.c # # [172] A regression test command failed: # CC="gcc" make test/outofmem # ------------ [173] CC="gcc" make test/packed2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o packed2.s packed2.c # # [173] A regression test command failed: # CC="gcc" make test/packed2 # ------------ [174] CC="gcc" make test/power1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o power1.s power1.c # # [174] A regression test command failed: # CC="gcc" make test/power1 # ------------ [175] CC="gcc" make test/printf ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o printf.s printf.c # # [175] A regression test command failed: # CC="gcc" make test/printf # ------------ [176] CC="gcc" make test/printf_const ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o printf_const.s printf_const.c # # [176] A regression test command failed: # CC="gcc" make test/printf_const # ------------ [177] (fail) CC="gcc" make test/proto1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o proto1.s proto1.c # ------------ [178] (fail) CC="gcc" make test/proto2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o proto2.s proto2.c # ------------ [179] CC="gcc" make test/pure ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o pure.s pure.c # # [179] A regression test command failed: # CC="gcc" make test/pure # ------------ [180] CC="gcc" make test/restrict EXTRAARGS=-std=c9x ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps -std=c9x --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o restrict.s restrict.c # # [180] A regression test command failed: # CC="gcc" make test/restrict EXTRAARGS=-std=c9x # ------------ [181] CC="gcc" make test/restrict1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o restrict1.s restrict1.c # # [181] A regression test command failed: # CC="gcc" make test/restrict1 # ------------ [182] CC="gcc" make test/retval ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o retval.s retval.c # # [182] A regression test command failed: # CC="gcc" make test/retval # ------------ [183] CC="gcc" make test/scope12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope12.s scope12.c # # [183] A regression test command failed: # CC="gcc" make test/scope12 # ------------ [184] CC="gcc" make test/scope2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope2.s scope2.c # # [184] A regression test command failed: # CC="gcc" make test/scope2 # ------------ [185] (fail) CC="gcc" make test/scope3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope3.s scope3.c # ------------ [186] CC="gcc" make test/scope4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope4.s scope4.c # # [186] A regression test command failed: # CC="gcc" make test/scope4 # ------------ [187] CC="gcc" make test/shell-escape SHELL_ESCAPE=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG "-DSTDIO=" '-DTEST="testharness.h"' -S -o shell-escape.s shell-escape.c # # [187] A regression test command failed: # CC="gcc" make test/shell-escape SHELL_ESCAPE=1 # ------------ [188] (fail) CC="gcc" make test/sizeof3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sizeof3.s sizeof3.c # ------------ [189] CC="gcc" make test/static ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o static.s static.c # # [189] A regression test command failed: # CC="gcc" make test/static # ------------ [190] CC="gcc" make test/static1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o static1.s static1.c # # [190] A regression test command failed: # CC="gcc" make test/static1 # ------------ [191] CC="gcc" make test/strcpy ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o strcpy.s strcpy.c # # [191] A regression test command failed: # CC="gcc" make test/strcpy # ------------ [192] CC="gcc" make test/struct_init ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o struct_init.s struct_init.c # # [192] A regression test command failed: # CC="gcc" make test/struct_init # ------------ [193] CC="gcc" make test/structassign ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o structassign.s structassign.c # # [193] A regression test command failed: # CC="gcc" make test/structassign # ------------ [194] (fail) CC="gcc" make test/switch_default_parse_bug ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o switch_default_parse_bug.s switch_default_parse_bug.c # ------------ [195] CC="gcc" make test/sync-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-1.s sync-1.c # # [195] A regression test command failed: # CC="gcc" make test/sync-1 # ------------ [196] CC="gcc" make test/sync-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-2.s sync-2.c # # [196] A regression test command failed: # CC="gcc" make test/sync-2 # ------------ [197] CC="gcc" make test/sync-3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-3.s sync-3.c # # [197] A regression test command failed: # CC="gcc" make test/sync-3 # ------------ [198] CC="gcc" make test/tags ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o tags.s tags.c # # [198] A regression test command failed: # CC="gcc" make test/tags # ------------ [199] CC="gcc" make test/task ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o task.s task.c # # [199] A regression test command failed: # CC="gcc" make test/task # ------------ [200] CC="gcc" make test/unimplemented ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o unimplemented.s unimplemented.c # # [200] A regression test command failed: # CC="gcc" make test/unimplemented # ------------ [201] CC="gcc" make test/union5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o union5.s union5.c # # [201] A regression test command failed: # CC="gcc" make test/union5 # ------------ [202] CC="gcc" make test/va_arg_pack ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o va_arg_pack.s va_arg_pack.c # # [202] A regression test command failed: # CC="gcc" make test/va_arg_pack # ------------ [203] CC="gcc" make test/vararg7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o vararg7.s vararg7.c # # [203] A regression test command failed: # CC="gcc" make test/vararg7 # ------------ [204] CC="gcc" make test/voidstar ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o voidstar.s voidstar.c # # [204] A regression test command failed: # CC="gcc" make test/voidstar # ------------ [205] CC="gcc" make test/voidtypedef ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o voidtypedef.s voidtypedef.c # # [205] A regression test command failed: # CC="gcc" make test/voidtypedef # ------------ [206] CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o warnings-cast.s warnings-cast.c # # [206] A regression test command failed: # CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 # ------------ [207] CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o warnings-noreturn.s warnings-noreturn.c # # [207] A regression test command failed: # CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 # ------------ [208] CC="gcc" make test_i/empty ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o empty.s empty.i # # [208] A regression test command failed: # CC="gcc" make test_i/empty # ------------ [209] CC="gcc" make test_i/lineno ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o lineno.s lineno.i # # [209] A regression test command failed: # CC="gcc" make test_i/lineno # ------------ [210] CC="gcc" make testc11/alignas ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oalignas.exe alignas.c -lm # # [210] A regression test command failed: # CC="gcc" make testc11/alignas # ------------ [211] (fail) CC="gcc" make testc11/clang-c11-generic-1-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-1-1.exe clang-c11-generic-1-1.c -lm # ------------ [212] (fail) CC="gcc" make testc11/clang-c11-generic-1-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-1-2.exe clang-c11-generic-1-2.c -lm # ------------ [213] CC="gcc" make testc11/clang-c11-generic-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-2.exe clang-c11-generic-2.c -lm # # [213] A regression test command failed: # CC="gcc" make testc11/clang-c11-generic-2 # ------------ [214] (fail) CC="gcc" make testc11/gcc-c11-generic-2-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-2-1.exe gcc-c11-generic-2-1.c -lm # ------------ [215] (fail) CC="gcc" make testc11/gcc-c11-generic-2-7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-2-7.exe gcc-c11-generic-2-7.c -lm # ------------ [216] CC="gcc" make testc11/gcc-c11-generic-3-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-1.exe gcc-c11-generic-3-1.c -lm # # [216] A regression test command failed: # CC="gcc" make testc11/gcc-c11-generic-3-1 # ------------ [217] (fail) CC="gcc" make testc11/gcc-c11-generic-3-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-2.exe gcc-c11-generic-3-2.c -lm # ------------ [218] (fail) CC="gcc" make testc11/gcc-c11-generic-3-3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-3.exe gcc-c11-generic-3-3.c -lm # ------------ [219] (fail) CC="gcc" make testc11/gcc-c11-generic-3-4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-4.exe gcc-c11-generic-3-4.c -lm # ------------ [220] CC="gcc" make testobj/asm5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -oasm5.o asm5.c # # [220] A regression test command failed: # CC="gcc" make testobj/asm5 # ------------ [221] CC="gcc" make testrun/addr-array ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddr-array.exe addr-array.c # # [221] A regression test command failed: # CC="gcc" make testrun/addr-array # ------------ [222] CC="gcc" make testrun/addr-string ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddr-string.exe addr-string.c # # [222] A regression test command failed: # CC="gcc" make testrun/addr-string # ------------ [223] CC="gcc" make testrun/addrof3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddrof3.exe addrof3.c # # [223] A regression test command failed: # CC="gcc" make testrun/addrof3 # ------------ [224] CC="gcc" make testrun/align1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oalign1.exe align1.c # # [224] A regression test command failed: # CC="gcc" make testrun/align1 # ------------ [225] CC="gcc" make testrun/align2 EXTRAARGS=-O2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps -O2 --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oalign2.exe align2.c # # [225] A regression test command failed: # CC="gcc" make testrun/align2 EXTRAARGS=-O2 # ------------ [226] CC="gcc" make testrun/apachebuf ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oapachebuf.exe apachebuf.c # # [226] A regression test command failed: # CC="gcc" make testrun/apachebuf # ------------ [227] CC="gcc" make testrun/apachefptr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oapachefptr.exe apachefptr.c # # [227] A regression test command failed: # CC="gcc" make testrun/apachefptr # ------------ [228] CC="gcc" make testrun/array_formal ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_formal.exe array_formal.c # # [228] A regression test command failed: # CC="gcc" make testrun/array_formal # ------------ [229] (fail) CC="gcc" make testrun/array_multi_varsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_multi_varsize.exe array_multi_varsize.c # ------------ [230] CC="gcc" make testrun/array_varsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_varsize.exe array_varsize.c # # [230] A regression test command failed: # CC="gcc" make testrun/array_varsize # ------------ [231] CC="gcc" make testrun/arrayinitsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarrayinitsize.exe arrayinitsize.c # # [231] A regression test command failed: # CC="gcc" make testrun/arrayinitsize # ------------ [232] CC="gcc" make testrun/asm1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oasm1.exe asm1.c # # [232] A regression test command failed: # CC="gcc" make testrun/asm1 # ------------ [233] CC="gcc" make testrun/assign ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oassign.exe assign.c # # [233] A regression test command failed: # CC="gcc" make testrun/assign # ------------ [234] CC="gcc" make testrun/attr-in-decllist ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oattr-in-decllist.exe attr-in-decllist.c # # [234] A regression test command failed: # CC="gcc" make testrun/attr-in-decllist # ------------ [235] CC="gcc" make testrun/attr4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oattr4.exe attr4.c # # [235] A regression test command failed: # CC="gcc" make testrun/attr4 # ------------ [236] CC="gcc" make testrun/attr5 ------------ # This Makefile is intended to be run with an explicit target. # ------------ [237] CC="gcc" make testrun/bitfield2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obitfield2.exe bitfield2.c # # [237] A regression test command failed: # CC="gcc" make testrun/bitfield2 # ------------ [238] CC="gcc" make testrun/bitfield3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obitfield3.exe bitfield3.c # # [238] A regression test command failed: # CC="gcc" make testrun/bitfield3 # ------------ [239] CC="gcc" make testrun/blockattr2 USECFG=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --domakeCFG --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oblockattr2.exe blockattr2.c # # [239] A regression test command failed: # CC="gcc" make testrun/blockattr2 USECFG=1 # ------------ [240] CC="gcc" make testrun/bool ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obool.exe bool.c # # [240] A regression test command failed: # CC="gcc" make testrun/bool # ------------ [241] CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obooleanOp.exe booleanOp.c # # [241] A regression test command failed: # CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 # ------------ [242] CC="gcc" make testrun/builtin ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin.exe builtin.c # # [242] A regression test command failed: # CC="gcc" make testrun/builtin # ------------ [243] CC="gcc" make testrun/builtin3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin3.exe builtin3.c # # [243] A regression test command failed: # CC="gcc" make testrun/builtin3 # ------------ [244] CC="gcc" make testrun/builtin4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin4.exe builtin4.c # # [244] A regression test command failed: # CC="gcc" make testrun/builtin4 # ------------ [245] CC="gcc" make testrun/builtin_choose_expr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin_choose_expr.exe builtin_choose_expr.c # # [245] A regression test command failed: # CC="gcc" make testrun/builtin_choose_expr # ------------ [246] CC="gcc" make testrun/call2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocall2.exe call2.c # # [246] A regression test command failed: # CC="gcc" make testrun/call2 # ------------ [247] CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocase_then_default_in_switch.exe case_then_default_in_switch.c # # [247] A regression test command failed: # CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG # ------------ [248] CC="gcc" make testrun/caserange ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocaserange.exe caserange.c # # [248] A regression test command failed: # CC="gcc" make testrun/caserange # ------------ [249] CC="gcc" make testrun/cast8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocast8.exe cast8.c # # [249] A regression test command failed: # CC="gcc" make testrun/cast8 # ------------ [250] CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -ocastincr.exe castincr.c # # [250] A regression test command failed: # CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 # ------------ [251] CC="gcc" make testrun/comma1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocomma1.exe comma1.c # # [251] A regression test command failed: # CC="gcc" make testrun/comma1 # ------------ [252] CC="gcc" make testrun/comparisons ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocomparisons.exe comparisons.c # # [252] A regression test command failed: # CC="gcc" make testrun/comparisons # ------------ [253] (fail) CC="gcc" make testrun/compound1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocompound1.exe compound1.c # ------------ [254] CC="gcc" make testrun/compound2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocompound2.exe compound2.c # # [254] A regression test command failed: # CC="gcc" make testrun/compound2 # ------------ [255] CC="gcc" make testrun/cond1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocond1.exe cond1.c # # [255] A regression test command failed: # CC="gcc" make testrun/cond1 # ------------ [256] CC="gcc" make testrun/cond2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocond2.exe cond2.c # # [256] A regression test command failed: # CC="gcc" make testrun/cond2 # ------------ [257] CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oconst-array-init.exe const-array-init.c # # [257] A regression test command failed: # CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 # ------------ [258] CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oconst-struct-init.exe const-struct-init.c # # [258] A regression test command failed: # CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 # ------------ [259] CC="gcc" make testrun/const1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst1.exe const1.c # # [259] A regression test command failed: # CC="gcc" make testrun/const1 # ------------ [260] CC="gcc" make testrun/const10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst10.exe const10.c # # [260] A regression test command failed: # CC="gcc" make testrun/const10 # ------------ [261] CC="gcc" make testrun/const11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst11.exe const11.c # # [261] A regression test command failed: # CC="gcc" make testrun/const11 # ------------ [262] CC="gcc" make testrun/const12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst12.exe const12.c # # [262] A regression test command failed: # CC="gcc" make testrun/const12 # ------------ [263] CC="gcc" make testrun/const15 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst15.exe const15.c # # [263] A regression test command failed: # CC="gcc" make testrun/const15 # ------------ [264] CC="gcc" make testrun/const16 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst16.exe const16.c # # [264] A regression test command failed: # CC="gcc" make testrun/const16 # ------------ [265] CC="gcc" make testrun/const2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst2.exe const2.c # # [265] A regression test command failed: # CC="gcc" make testrun/const2 # ------------ [266] CC="gcc" make testrun/const3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst3.exe const3.c # # [266] A regression test command failed: # CC="gcc" make testrun/const3 # ------------ [267] CC="gcc" make testrun/const4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst4.exe const4.c # # [267] A regression test command failed: # CC="gcc" make testrun/const4 # ------------ [268] CC="gcc" make testrun/const5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst5.exe const5.c # # [268] A regression test command failed: # CC="gcc" make testrun/const5 # ------------ [269] CC="gcc" make testrun/const6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst6.exe const6.c # # [269] A regression test command failed: # CC="gcc" make testrun/const6 # ------------ [270] CC="gcc" make testrun/const8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst8.exe const8.c # # [270] A regression test command failed: # CC="gcc" make testrun/const8 # ------------ [271] (fail) CC="gcc" make testrun/constfold EXTRAARGS="--domakeCFG --dopartial" ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --dopartial --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconstfold.exe constfold.c # ------------ [272] (fail) CC="gcc" make testrun/constfold2 EXTRAARGS="--domakeCFG -Wall -Wshift-overflow=3 -Werror" ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG -Wall -Wshift-overflow=3 -Werror --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconstfold2.exe constfold2.c # ------------ [273] CC="gcc" make testrun/decl_mix_stmt ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -odecl_mix_stmt.exe decl_mix_stmt.c # # [273] A regression test command failed: # CC="gcc" make testrun/decl_mix_stmt # ------------ [274] CC="gcc" make testrun/enum2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oenum2.exe enum2.c # # [274] A regression test command failed: # CC="gcc" make testrun/enum2 # ------------ [275] CC="gcc" make testrun/escapes ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oescapes.exe escapes.c # # [275] A regression test command failed: # CC="gcc" make testrun/escapes # ------------ [276] CC="gcc" make testrun/extern1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oextern1.exe extern1.c # # [276] A regression test command failed: # CC="gcc" make testrun/extern1 # ------------ [277] CC="gcc" make testrun/extinline2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oextinline2.exe extinline2.c # # [277] A regression test command failed: # CC="gcc" make testrun/extinline2 # ------------ [278] CC="gcc" make testrun/fallthrough-label ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofallthrough-label.exe fallthrough-label.c # # [278] A regression test command failed: # CC="gcc" make testrun/fallthrough-label # ------------ [279] CC="gcc" make testrun/flexible-array-member ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oflexible-array-member.exe flexible-array-member.c # # [279] A regression test command failed: # CC="gcc" make testrun/flexible-array-member # ------------ [280] CC="gcc" make testrun/float ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofloat.exe float.c # # [280] A regression test command failed: # CC="gcc" make testrun/float # ------------ [281] CC="gcc" make testrun/float2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofloat2.exe float2.c # # [281] A regression test command failed: # CC="gcc" make testrun/float2 # ------------ [282] CC="gcc" make testrun/for1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofor1.exe for1.c # # [282] A regression test command failed: # CC="gcc" make testrun/for1 # ------------ [283] CC="gcc" make testrun/formalscope ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oformalscope.exe formalscope.c # # [283] A regression test command failed: # CC="gcc" make testrun/formalscope # ------------ [284] CC="gcc" make testrun/func2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc2.exe func2.c # # [284] A regression test command failed: # CC="gcc" make testrun/func2 # ------------ [285] CC="gcc" make testrun/func3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc3.exe func3.c # # [285] A regression test command failed: # CC="gcc" make testrun/func3 # ------------ [286] CC="gcc" make testrun/func4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc4.exe func4.c # # [286] A regression test command failed: # CC="gcc" make testrun/func4 # ------------ [287] CC="gcc" make testrun/funptr1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunptr1.exe funptr1.c # # [287] A regression test command failed: # CC="gcc" make testrun/funptr1 # ------------ [288] CC="gcc" make testrun/init ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit.exe init.c # # [288] A regression test command failed: # CC="gcc" make testrun/init # ------------ [289] CC="gcc" make testrun/init1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit1.exe init1.c # # [289] A regression test command failed: # CC="gcc" make testrun/init1 # ------------ [290] CC="gcc" make testrun/init10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit10.exe init10.c # # [290] A regression test command failed: # CC="gcc" make testrun/init10 # ------------ [291] CC="gcc" make testrun/init11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit11.exe init11.c # # [291] A regression test command failed: # CC="gcc" make testrun/init11 # ------------ [292] CC="gcc" make testrun/init12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit12.exe init12.c # # [292] A regression test command failed: # CC="gcc" make testrun/init12 # ------------ [293] CC="gcc" make testrun/init13 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit13.exe init13.c # # [293] A regression test command failed: # CC="gcc" make testrun/init13 # ------------ [294] CC="gcc" make testrun/init14 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit14.exe init14.c # # [294] A regression test command failed: # CC="gcc" make testrun/init14 # ------------ [295] CC="gcc" make testrun/init15 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit15.exe init15.c # # [295] A regression test command failed: # CC="gcc" make testrun/init15 # ------------ [296] CC="gcc" make testrun/init16 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit16.exe init16.c # # [296] A regression test command failed: # CC="gcc" make testrun/init16 # ------------ [297] CC="gcc" make testrun/init17 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit17.exe init17.c # # [297] A regression test command failed: # CC="gcc" make testrun/init17 # ------------ [298] CC="gcc" make testrun/init18 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit18.exe init18.c # # [298] A regression test command failed: # CC="gcc" make testrun/init18 # ------------ [299] CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oinit19.exe init19.c # # [299] A regression test command failed: # CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 # ------------ [300] CC="gcc" make testrun/init2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit2.exe init2.c # # [300] A regression test command failed: # CC="gcc" make testrun/init2 # ------------ [301] CC="gcc" make testrun/init20 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit20.exe init20.c # # [301] A regression test command failed: # CC="gcc" make testrun/init20 # ------------ [302] CC="gcc" make testrun/init21 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit21.exe init21.c # # [302] A regression test command failed: # CC="gcc" make testrun/init21 # ------------ [303] CC="gcc" make testrun/init22 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit22.exe init22.c # # [303] A regression test command failed: # CC="gcc" make testrun/init22 # ------------ [304] CC="gcc" make testrun/init3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit3.exe init3.c # # [304] A regression test command failed: # CC="gcc" make testrun/init3 # ------------ [305] CC="gcc" make testrun/init4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit4.exe init4.c # # [305] A regression test command failed: # CC="gcc" make testrun/init4 # ------------ [306] CC="gcc" make testrun/init5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit5.exe init5.c # # [306] A regression test command failed: # CC="gcc" make testrun/init5 # ------------ [307] CC="gcc" make testrun/init6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit6.exe init6.c # # [307] A regression test command failed: # CC="gcc" make testrun/init6 # ------------ [308] CC="gcc" make testrun/init9 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit9.exe init9.c # # [308] A regression test command failed: # CC="gcc" make testrun/init9 # ------------ [309] CC="gcc" make testrun/initial ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinitial.exe initial.c # # [309] A regression test command failed: # CC="gcc" make testrun/initial # ------------ [310] (fail) CC="gcc" make testrun/inline1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinline1.exe inline1.c # ------------ [311] CC="gcc" make testrun/inline2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinline2.exe inline2.c # # [311] A regression test command failed: # CC="gcc" make testrun/inline2 # ------------ [312] CC="gcc" make testrun/label1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [312] A regression test command failed: # CC="gcc" make testrun/label1 # ------------ [313] CC="gcc" make testrun/label2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [313] A regression test command failed: # CC="gcc" make testrun/label2 # ------------ [314] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [314] A regression test command failed: # CC="gcc" make testrun/label2b COMPUTEDGOTO=1 # ------------ [315] CC="gcc" make testrun/label3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [315] A regression test command failed: # CC="gcc" make testrun/label3 # ------------ [316] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [316] A regression test command failed: # CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 # ------------ [317] CC="gcc" make testrun/label4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [317] A regression test command failed: # CC="gcc" make testrun/label4 # ------------ [318] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [318] A regression test command failed: # CC="gcc" make testrun/label4b COMPUTEDGOTO=1 # ------------ [319] CC="gcc" make testrun/label6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [319] A regression test command failed: # CC="gcc" make testrun/label6 # ------------ [320] CC="gcc" make testrun/land_expr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [320] A regression test command failed: # CC="gcc" make testrun/land_expr # ------------ [321] CC="gcc" make testrun/large_unsigned_long ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [321] A regression test command failed: # CC="gcc" make testrun/large_unsigned_long # ------------ [322] CC="gcc" make testrun/linux_signal ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [322] A regression test command failed: # CC="gcc" make testrun/linux_signal # ------------ [323] CC="gcc" make testrun/localinit ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [323] A regression test command failed: # CC="gcc" make testrun/localinit # ------------ [324] CC="gcc" make testrun/logical ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [324] A regression test command failed: # CC="gcc" make testrun/logical # ------------ [325] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [325] A regression test command failed: # CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 # ------------ [326] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [326] A regression test command failed: # CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 # ------------ [327] CC="gcc" make testrun/longBlock ------------ # ocamlfind ocamlc -I /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../../install/default/lib/goblint-cil -I /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [328] CC="gcc" make testrun/lval1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [328] A regression test command failed: # CC="gcc" make testrun/lval1 # ------------ [329] CC="gcc" make testrun/macro_hidden ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [329] A regression test command failed: # CC="gcc" make testrun/macro_hidden # ------------ [330] CC="gcc" make testrun/math1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [330] A regression test command failed: # CC="gcc" make testrun/math1 # ------------ [331] CC="gcc" make testrun/memcpy1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [331] A regression test command failed: # CC="gcc" make testrun/memcpy1 # ------------ [332] CC="gcc" make testrun/min ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [332] A regression test command failed: # CC="gcc" make testrun/min # ------------ [333] CC="gcc" make testrun/msvc1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [333] A regression test command failed: # CC="gcc" make testrun/msvc1 # ------------ [334] CC="gcc" make testrun/msvc5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [334] A regression test command failed: # CC="gcc" make testrun/msvc5 # ------------ [335] CC="gcc" make testrun/nan-global ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [335] A regression test command failed: # CC="gcc" make testrun/nan-global # ------------ [336] CC="gcc" make testrun/offsetof ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [336] A regression test command failed: # CC="gcc" make testrun/offsetof # ------------ [337] CC="gcc" make testrun/offsetof1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [337] A regression test command failed: # CC="gcc" make testrun/offsetof1 # ------------ [338] CC="gcc" make testrun/offsetof2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [338] A regression test command failed: # CC="gcc" make testrun/offsetof2 # ------------ [339] CC="gcc" make testrun/offsetof3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [339] A regression test command failed: # CC="gcc" make testrun/offsetof3 # ------------ [340] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [340] A regression test command failed: # CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 # ------------ [341] CC="gcc" make testrun/percent400 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [341] A regression test command failed: # CC="gcc" make testrun/percent400 # ------------ [342] CC="gcc" make testrun/percentm ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [342] A regression test command failed: # CC="gcc" make testrun/percentm # ------------ [343] CC="gcc" make testrun/perror ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [343] A regression test command failed: # CC="gcc" make testrun/perror # ------------ [344] CC="gcc" make testrun/perror1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [344] A regression test command failed: # CC="gcc" make testrun/perror1 # ------------ [345] (fail) CC="gcc" make testrun/post-assign ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [346] CC="gcc" make testrun/printf2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [346] A regression test command failed: # CC="gcc" make testrun/printf2 # ------------ [347] CC="gcc" make testrun/question ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [347] A regression test command failed: # CC="gcc" make testrun/question # ------------ [348] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [348] A regression test command failed: # CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 # ------------ [349] CC="gcc" make testrun/question2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [349] A regression test command failed: # CC="gcc" make testrun/question2 # ------------ [350] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [350] A regression test command failed: # CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 # ------------ [351] CC="gcc" make testrun/return1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [351] A regression test command failed: # CC="gcc" make testrun/return1 # ------------ [352] CC="gcc" make testrun/returnvoid ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [352] A regression test command failed: # CC="gcc" make testrun/returnvoid # ------------ [353] CC="gcc" make testrun/returnvoid1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [353] A regression test command failed: # CC="gcc" make testrun/returnvoid1 # ------------ [354] (fail) CC="gcc" make testrun/rmtmps-attr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps-attr.exe rmtmps-attr.c # ------------ [355] CC="gcc" make testrun/rmtmps1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps1.exe rmtmps1.c # # [355] A regression test command failed: # CC="gcc" make testrun/rmtmps1 # ------------ [356] CC="gcc" make testrun/rmtmps2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps2.exe rmtmps2.c # # [356] A regression test command failed: # CC="gcc" make testrun/rmtmps2 # ------------ [357] CC="gcc" make testrun/scope1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [357] A regression test command failed: # CC="gcc" make testrun/scope1 # ------------ [358] CC="gcc" make testrun/scope10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [358] A regression test command failed: # CC="gcc" make testrun/scope10 # ------------ [359] CC="gcc" make testrun/scope11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [359] A regression test command failed: # CC="gcc" make testrun/scope11 # ------------ [360] CC="gcc" make testrun/scope5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [360] A regression test command failed: # CC="gcc" make testrun/scope5 # ------------ [361] CC="gcc" make testrun/scope6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [361] A regression test command failed: # CC="gcc" make testrun/scope6 # ------------ [362] CC="gcc" make testrun/scope8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [362] A regression test command failed: # CC="gcc" make testrun/scope8 # ------------ [363] CC="gcc" make testrun/scope9 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [363] A regression test command failed: # CC="gcc" make testrun/scope9 # ------------ [364] CC="gcc" make testrun/semicolon ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [364] A regression test command failed: # CC="gcc" make testrun/semicolon # ------------ [365] CC="gcc" make testrun/simon6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [365] A regression test command failed: # CC="gcc" make testrun/simon6 # ------------ [366] CC="gcc" make testrun/sizeof1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [366] A regression test command failed: # CC="gcc" make testrun/sizeof1 # ------------ [367] CC="gcc" make testrun/sizeof2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [367] A regression test command failed: # CC="gcc" make testrun/sizeof2 # ------------ [368] CC="gcc" make testrun/static ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [368] A regression test command failed: # CC="gcc" make testrun/static # ------------ [369] CC="gcc" make testrun/static2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [369] A regression test command failed: # CC="gcc" make testrun/static2 # ------------ [370] CC="gcc" make testrun/stringsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [370] A regression test command failed: # CC="gcc" make testrun/stringsize # ------------ [371] CC="gcc" make testrun/strloop ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [371] A regression test command failed: # CC="gcc" make testrun/strloop # ------------ [372] CC="gcc" make testrun/strloop3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [372] A regression test command failed: # CC="gcc" make testrun/strloop3 # ------------ [373] CC="gcc" make testrun/struct1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [373] A regression test command failed: # CC="gcc" make testrun/struct1 # ------------ [374] CC="gcc" make testrun/typeof1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [374] A regression test command failed: # CC="gcc" make testrun/typeof1 # ------------ [375] (fail) CC="gcc" make testrun/typespec1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [376] CC="gcc" make testrun/union2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [376] A regression test command failed: # CC="gcc" make testrun/union2 # ------------ [377] CC="gcc" make testrun/union3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [377] A regression test command failed: # CC="gcc" make testrun/union3 # ------------ [378] (fail) CC="gcc" make testrun/union6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [379] CC="gcc" make testrun/va-arg-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [379] A regression test command failed: # CC="gcc" make testrun/va-arg-1 # ------------ [380] CC="gcc" make testrun/va-arg-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [380] A regression test command failed: # CC="gcc" make testrun/va-arg-2 # ------------ [381] CC="gcc" make testrun/va-arg-7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [381] A regression test command failed: # CC="gcc" make testrun/va-arg-7 # ------------ [382] CC="gcc" make testrun/var_named_hidden ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [382] A regression test command failed: # CC="gcc" make testrun/var_named_hidden # ------------ [383] CC="gcc" make testrun/vararg1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [383] A regression test command failed: # CC="gcc" make testrun/vararg1 # ------------ [384] CC="gcc" make testrun/vararg2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [384] A regression test command failed: # CC="gcc" make testrun/vararg2 # ------------ [385] CC="gcc" make testrun/vararg3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [385] A regression test command failed: # CC="gcc" make testrun/vararg3 # ------------ [386] CC="gcc" make testrun/vararg4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [386] A regression test command failed: # CC="gcc" make testrun/vararg4 # ------------ [387] CC="gcc" make testrun/vararg5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [387] A regression test command failed: # CC="gcc" make testrun/vararg5 # ------------ [388] CC="gcc" make testrun/vararg6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [388] A regression test command failed: # CC="gcc" make testrun/vararg6 # ------------ [389] CC="gcc" make testrun/varargauto1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [389] A regression test command failed: # CC="gcc" make testrun/varargauto1 # ------------ [390] CC="gcc" make testrun/void ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [390] A regression test command failed: # CC="gcc" make testrun/void # ------------ [391] CC="gcc" make testrun/voidarg ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [391] A regression test command failed: # CC="gcc" make testrun/voidarg # ------------ [392] CC="gcc" make testrun/vsp ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [392] A regression test command failed: # CC="gcc" make testrun/vsp # ------------ [393] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [393] A regression test command failed: # CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 # ------------ [394] CC="gcc" make testrun/wchar1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [394] A regression test command failed: # CC="gcc" make testrun/wchar1 # ------------ [395] CC="gcc" make testrun/wchar2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [395] A regression test command failed: # CC="gcc" make testrun/wchar2 # ------------ [396] CC="gcc" make testrun/wchar3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [396] A regression test command failed: # CC="gcc" make testrun/wchar3 # ------------ [397] CC="gcc" make testrun/wchar4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [397] A regression test command failed: # CC="gcc" make testrun/wchar4 # ------------ [398] CC="gcc" make testrun/wchar5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [398] A regression test command failed: # CC="gcc" make testrun/wchar5 # ------------ [399] CC="gcc" make testrun/wchar6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [399] A regression test command failed: # CC="gcc" make testrun/wchar6 # ------------ [400] CC="gcc" make testrun/wchar7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [400] A regression test command failed: # CC="gcc" make testrun/wchar7 # ------------ [401] (fail) CC="gcc" make testrun/wrongnumargs ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [402] CC="gcc" make testrunc11/c11-align-of ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [402] A regression test command failed: # CC="gcc" make testrunc11/c11-align-of # ------------ [403] CC="gcc" make testrunc11/c11-atomic ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [403] A regression test command failed: # CC="gcc" make testrunc11/c11-atomic # ------------ [404] CC="gcc" make testrunc11/c11-atomic-store ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [404] A regression test command failed: # CC="gcc" make testrunc11/c11-atomic-store # ------------ [405] CC="gcc" make testrunc11/c11-caserange ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [405] A regression test command failed: # CC="gcc" make testrunc11/c11-caserange # ------------ [406] CC="gcc" make testrunc11/c11-extendedFloat ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [406] A regression test command failed: # CC="gcc" make testrunc11/c11-extendedFloat # ------------ [407] CC="gcc" make testrunc11/c11-generic ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [407] A regression test command failed: # CC="gcc" make testrunc11/c11-generic # ------------ [408] CC="gcc" make testrunc11/c11-noreturn ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [408] A regression test command failed: # CC="gcc" make testrunc11/c11-noreturn # ------------ [409] CC="gcc" make testrunc11/c11-static-assert ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [409] A regression test command failed: # CC="gcc" make testrunc11/c11-static-assert # ------------ [410] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [410] A regression test command failed: # CC="gcc" make testrunc11/gcc-c11-generic-1 # ------------ [411] CC="gcc" make testrunc99/c99-bool ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [411] A regression test command failed: # CC="gcc" make testrunc99/c99-bool # ------------ [412] CC="gcc" make testrunc99/c99-complex ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [412] A regression test command failed: # CC="gcc" make testrunc99/c99-complex # ------------ [413] CC="gcc" make testrunc99/c99-fixed-width-int ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [413] A regression test command failed: # CC="gcc" make testrunc99/c99-fixed-width-int # ------------ [414] CC="gcc" make testrunc99/c99-float-pragma ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [414] A regression test command failed: # CC="gcc" make testrunc99/c99-float-pragma # ------------ [415] CC="gcc" make testrunc99/c99-predefined ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [415] A regression test command failed: # CC="gcc" make testrunc99/c99-predefined # ------------ [416] CC="gcc" make testrunc99/c99-struct ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [416] A regression test command failed: # CC="gcc" make testrunc99/c99-struct # ------------ [417] CC="gcc" make testrunc99/c99-tgmath ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [417] A regression test command failed: # CC="gcc" make testrunc99/c99-tgmath # ------------ [418] CC="gcc" make testrunc99/c99-tgmath2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [418] A regression test command failed: # CC="gcc" make testrunc99/c99-tgmath2 # ------------ [419] CC="gcc" make testrunc99/c99-universal-character-names ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [419] A regression test command failed: # CC="gcc" make testrunc99/c99-universal-character-names # ------------ [420] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [420] A regression test command failed: # CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 # ------------ [421] CC="gcc" make testrungcc/enum3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [421] A regression test command failed: # CC="gcc" make testrungcc/enum3 # ------------ [422] CC="gcc" make testrungcc/enum3a ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [422] A regression test command failed: # CC="gcc" make testrungcc/enum3a # ------------ [423] CC="gcc" make testrungcc/enum3b ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [423] A regression test command failed: # CC="gcc" make testrungcc/enum3b # ------------ [424] (fail) CC="gcc" make testrungcc/enum3c ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [425] CC="gcc" make testrungcc/enum3d ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [425] A regression test command failed: # CC="gcc" make testrungcc/enum3d # ------------ [426] CC="gcc" make testrungcc/enum3e ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [426] A regression test command failed: # CC="gcc" make testrungcc/enum3e # ------------ [427] CC="gcc" make testrungcc/enum3f ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [427] A regression test command failed: # CC="gcc" make testrungcc/enum3f # ------------ [428] CC="gcc" make testrungcc/enum3g ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [428] A regression test command failed: # CC="gcc" make testrungcc/enum3g # ------------ [429] CC="gcc" make testrungcc/enum3h ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [429] A regression test command failed: # CC="gcc" make testrungcc/enum3h # ------------ [430] CC="gcc" make testrungcc/enum3i ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [430] A regression test command failed: # CC="gcc" make testrungcc/enum3i # ------------ [431] CC="gcc" make testrungcc/enum3j ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [431] A regression test command failed: # CC="gcc" make testrungcc/enum3j # ------------ [432] CC="gcc" make testrungcc/enum3k ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [432] A regression test command failed: # CC="gcc" make testrungcc/enum3k # ------------ [433] CC="gcc" make testrungcc/enum3l ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [433] A regression test command failed: # CC="gcc" make testrungcc/enum3l # # Successful tests: 2 # Failed as expected: 42 # Unexpected success: 0 # Unexpected failure: 390 # # [0] A regression test command failed: # CC=gcc make arcombine # [1] A regression test command failed: # CC=gcc make baddef # [2] A regression test command failed: # CC=gcc make comb # [3] A regression test command failed: # CC=gcc make combine1 # [4] A regression test command failed: # CC=gcc make combine10 # [5] A regression test command failed: # CC=gcc make combine11 # [6] A regression test command failed: # CC=gcc make combine12 # [7] A regression test command failed: # CC=gcc make combine13 # [8] A regression test command failed: # CC=gcc make combine14 # [9] A regression test command failed: # CC=gcc make combine15 # [10] A regression test command failed: # CC=gcc make combine16 # [11] A regression test command failed: # CC=gcc make combine17 # [12] A regression test command failed: # CC=gcc make combine18 # [13] A regression test command failed: # CC=gcc make combine2 # [14] A regression test command failed: # CC=gcc make combine20 # [15] A regression test command failed: # CC=gcc make combine21 # [17] A regression test command failed: # CC=gcc make combine3 # [18] A regression test command failed: # CC=gcc make combine5 # [19] A regression test command failed: # CC=gcc make combine6 # [20] A regression test command failed: # CC=gcc make combine8 # [22] A regression test command failed: # CC=gcc make combine_allocate MERGEINLINES=1 # [23] A regression test command failed: # CC=gcc make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 # [24] A regression test command failed: # CC=gcc make combine_init # [27] A regression test command failed: # CC=gcc make combine_sbump # [28] A regression test command failed: # CC=gcc make combine_sbumpB MERGEINLINES=1 # [29] A regression test command failed: # CC=gcc make combine_syserr MERGEINLINES=1 # [30] A regression test command failed: # CC=gcc make combine_theFunc MERGEINLINES=1 # [31] A regression test command failed: # CC=gcc make combinealias # [33] A regression test command failed: # CC=gcc make combineenum1 # [34] A regression test command failed: # CC=gcc make combineenum2 # [35] A regression test command failed: # CC=gcc make combineenum3 # [36] A regression test command failed: # CC=gcc make combinegnuinline # [38] A regression test command failed: # CC=gcc make combineinline2 # [41] A regression test command failed: # CC=gcc make combineinline6 # [42] A regression test command failed: # CC=gcc make combinelibrik # [43] A regression test command failed: # CC=gcc make combinestruct1 # [44] A regression test command failed: # CC=gcc make merge-ar # [45] A regression test command failed: # CC=gcc make mergeinit # [46] A regression test command failed: # CC=gcc make mergeinline # [47] A regression test command failed: # CC=gcc make mergestruct # [48] A regression test command failed: # CC=gcc make mixedcomb # [49] A regression test command failed: # CC=gcc make runall/alpha # [50] A regression test command failed: # CC=gcc make runall/extinline # [51] A regression test command failed: # CC=gcc make runall/runall_misc # [52] A regression test command failed: # CC=gcc make runall/structattr2 # [53] A regression test command failed: # CC=gcc make runall/switch # [54] A regression test command failed: # CC=gcc make scott-nogcc/bogus_redef # [55] A regression test command failed: # CC=gcc make scott-nogcc/funcname # [56] A regression test command failed: # CC=gcc make scott-nolink/brlock # [57] A regression test command failed: # CC=gcc make scott/arrayinit # [59] A regression test command failed: # CC=gcc make scott/bisonerror # [60] A regression test command failed: # CC=gcc make scott/cmpzero # [61] A regression test command failed: # CC=gcc make scott/constdecl # [62] A regression test command failed: # CC=gcc make scott/constfold # [63] A regression test command failed: # CC=gcc make scott/ctype # [64] A regression test command failed: # CC=gcc make scott/enumattr # [65] A regression test command failed: # CC=gcc make scott/enumerator_sizeof # [66] A regression test command failed: # CC=gcc make scott/enuminit # [67] A regression test command failed: # CC=gcc make scott/errorinfn # [68] A regression test command failed: # CC=gcc make scott/funcptr # [69] A regression test command failed: # CC=gcc make scott/gimpdouble # [71] A regression test command failed: # CC=gcc make scott/initedextern # [72] A regression test command failed: # CC=gcc make scott/invalredef # [73] A regression test command failed: # CC=gcc make scott/invalredef2 # [74] A regression test command failed: # CC=gcc make scott/kernel1 # [75] A regression test command failed: # CC=gcc make scott/kernel2 # [76] A regression test command failed: # CC=gcc make scott/lexnum # [77] A regression test command failed: # CC=gcc make scott/litstruct # [78] A regression test command failed: # CC=gcc make scott/main # [79] A regression test command failed: # CC=gcc make scott/memberofptr # [80] A regression test command failed: # CC=gcc make scott/mode_sizes # [81] A regression test command failed: # CC=gcc make scott/multiplestatics # [82] A regression test command failed: # CC=gcc make scott/neg64 # [83] A regression test command failed: # CC=gcc make scott/oldstyle # [84] A regression test command failed: # CC=gcc make scott/open # [85] A regression test command failed: # CC=gcc make scott/partialbracket # [86] A regression test command failed: # CC=gcc make scott/putc # [88] A regression test command failed: # CC=gcc make scott/s59 # [89] A regression test command failed: # CC=gcc make scott/sizeofchar # [90] A regression test command failed: # CC=gcc make scott/sockaddr # [91] A regression test command failed: # CC=gcc make scott/struct_cs # [92] A regression test command failed: # CC=gcc make scott/structattr # [93] A regression test command failed: # CC=gcc make scott/structattr3 # [94] A regression test command failed: # CC=gcc make scott/thing # [95] A regression test command failed: # CC=gcc make scott/transpunion # [96] A regression test command failed: # CC=gcc make scott/typeof # [97] A regression test command failed: # CC=gcc make scott/uninit_tmp # [98] A regression test command failed: # CC=gcc make scott/unionassign # [99] A regression test command failed: # CC=gcc make scott/unscomp # [100] A regression test command failed: # CC=gcc make scott/volatilestruct # [101] A regression test command failed: # CC=gcc make scott/xcheckers # [102] A regression test command failed: # CC=gcc make test-bad/enuminit2 # [103] A regression test command failed: # CC=gcc make test-bad/trivial-tb # [104] A regression test command failed: # CC=gcc make test-bad1/flexible-array-member-bad # [105] A regression test command failed: # CC=gcc make test-bad1/wchar-bad # [106] A regression test command failed: # CC=gcc make test/align3 # [107] A regression test command failed: # CC=gcc make test/apachebits # [109] A regression test command failed: # CC=gcc make test/array-size-trick # [110] A regression test command failed: # CC=gcc make test/array1 # [111] A regression test command failed: # CC=gcc make test/array2 # [112] A regression test command failed: # CC=gcc make test/arrsize # [113] A regression test command failed: # CC=gcc make test/asm2 # [114] A regression test command failed: # CC=gcc make test/asm3 # [115] A regression test command failed: # CC=gcc make test/asm4 # [116] A regression test command failed: # CC=gcc make test/asm_emptyclobberallowed # [117] A regression test command failed: # CC=gcc make test/attr10 # [118] A regression test command failed: # CC=gcc make test/attr11 # [119] A regression test command failed: # CC=gcc make test/attr12 # [120] A regression test command failed: # CC=gcc make test/attr13 # [121] A regression test command failed: # CC=gcc make test/attr2 # [122] A regression test command failed: # CC=gcc make test/attr3 # [123] A regression test command failed: # CC=gcc make test/attr6 # [124] A regression test command failed: # CC=gcc make test/attr7 # [125] A regression test command failed: # CC=gcc make test/attr8 # [126] A regression test command failed: # CC=gcc make test/attr9 WARNINGS_ARE_ERRORS=1 # [127] A regression test command failed: # CC=gcc make test/bitfield # [129] A regression test command failed: # CC=gcc make test/builtin2 # [130] A regression test command failed: # CC=gcc make test/builtin5 # [131] A regression test command failed: # CC=gcc make test/cast1 # [132] A regression test command failed: # CC=gcc make test/cast2 # [133] A regression test command failed: # CC=gcc make test/cast4 # [134] A regression test command failed: # CC=gcc make test/castcall # [135] A regression test command failed: # CC=gcc make test/castunion # [136] A regression test command failed: # CC=gcc make test/const-struct-init WARNINGS_ARE_ERRORS=1 # [138] A regression test command failed: # CC=gcc make test/const14 # [139] A regression test command failed: # CC=gcc make test/const7 # [140] A regression test command failed: # CC=gcc make test/const9 # [141] A regression test command failed: # CC=gcc make test/constprop # [142] A regression test command failed: # CC=gcc make test/constrexpr # [144] A regression test command failed: # CC=gcc make test/cpp-3 # [146] A regression test command failed: # CC=gcc make test/deref # [147] A regression test command failed: # CC=gcc make test/duplicate # [148] A regression test command failed: # CC=gcc make test/enum # [149] A regression test command failed: # CC=gcc make test/enum-scope # [150] A regression test command failed: # CC=gcc make test/extinline3 # [151] A regression test command failed: # CC=gcc make test/func # [154] A regression test command failed: # CC=gcc make test/globals # [156] A regression test command failed: # CC=gcc make test/huff1 # [157] A regression test command failed: # CC=gcc make test/init # [158] A regression test command failed: # CC=gcc make test/init8 # [159] A regression test command failed: # CC=gcc make test/initial WARNINGS_ARE_ERRORS=1 # [160] A regression test command failed: # CC=gcc make test/inline3 # [161] A regression test command failed: # CC=gcc make test/jmp_buf # [162] A regression test command failed: # CC=gcc make test/label5 # [163] A regression test command failed: # CC=gcc make test/label7 # [164] A regression test command failed: # CC=gcc make test/label8 # [165] A regression test command failed: # CC=gcc make test/label9 EXTRAARGS=--domakeCFG # [166] A regression test command failed: # CC=gcc make test/li # [167] A regression test command failed: # CC=gcc make test/linux_atomic # [168] A regression test command failed: # CC=gcc make test/linuxcombine1_1 # [169] A regression test command failed: # CC=gcc make test/list # [170] A regression test command failed: # CC=gcc make test/matrix # [171] A regression test command failed: # CC=gcc make test/noreturn # [172] A regression test command failed: # CC=gcc make test/outofmem # [173] A regression test command failed: # CC=gcc make test/packed2 # [174] A regression test command failed: # CC=gcc make test/power1 # [175] A regression test command failed: # CC=gcc make test/printf # [176] A regression test command failed: # CC=gcc make test/printf_const # [179] A regression test command failed: # CC=gcc make test/pure # [180] A regression test command failed: # CC=gcc make test/restrict EXTRAARGS=-std=c9x # [181] A regression test command failed: # CC=gcc make test/restrict1 # [182] A regression test command failed: # CC=gcc make test/retval # [183] A regression test command failed: # CC=gcc make test/scope12 # [184] A regression test command failed: # CC=gcc make test/scope2 # [186] A regression test command failed: # CC=gcc make test/scope4 # [187] A regression test command failed: # CC=gcc make test/shell-escape SHELL_ESCAPE=1 # [189] A regression test command failed: # CC=gcc make test/static # [190] A regression test command failed: # CC=gcc make test/static1 # [191] A regression test command failed: # CC=gcc make test/strcpy # [192] A regression test command failed: # CC=gcc make test/struct_init # [193] A regression test command failed: # CC=gcc make test/structassign # [195] A regression test command failed: # CC=gcc make test/sync-1 # [196] A regression test command failed: # CC=gcc make test/sync-2 # [197] A regression test command failed: # CC=gcc make test/sync-3 # [198] A regression test command failed: # CC=gcc make test/tags # [199] A regression test command failed: # CC=gcc make test/task # [200] A regression test command failed: # CC=gcc make test/unimplemented # [201] A regression test command failed: # CC=gcc make test/union5 # [202] A regression test command failed: # CC=gcc make test/va_arg_pack # [203] A regression test command failed: # CC=gcc make test/vararg7 # [204] A regression test command failed: # CC=gcc make test/voidstar # [205] A regression test command failed: # CC=gcc make test/voidtypedef # [206] A regression test command failed: # CC=gcc make test/warnings-cast WARNINGS_ARE_ERRORS=1 # [207] A regression test command failed: # CC=gcc make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 # [208] A regression test command failed: # CC=gcc make test_i/empty # [209] A regression test command failed: # CC=gcc make test_i/lineno # [210] A regression test command failed: # CC=gcc make testc11/alignas # [213] A regression test command failed: # CC=gcc make testc11/clang-c11-generic-2 # [216] A regression test command failed: # CC=gcc make testc11/gcc-c11-generic-3-1 # [220] A regression test command failed: # CC=gcc make testobj/asm5 # [221] A regression test command failed: # CC=gcc make testrun/addr-array # [222] A regression test command failed: # CC=gcc make testrun/addr-string # [223] A regression test command failed: # CC=gcc make testrun/addrof3 # [224] A regression test command failed: # CC=gcc make testrun/align1 # [225] A regression test command failed: # CC=gcc make testrun/align2 EXTRAARGS=-O2 # [226] A regression test command failed: # CC=gcc make testrun/apachebuf # [227] A regression test command failed: # CC=gcc make testrun/apachefptr # [228] A regression test command failed: # CC=gcc make testrun/array_formal # [230] A regression test command failed: # CC=gcc make testrun/array_varsize # [231] A regression test command failed: # CC=gcc make testrun/arrayinitsize # [232] A regression test command failed: # CC=gcc make testrun/asm1 # [233] A regression test command failed: # CC=gcc make testrun/assign # [234] A regression test command failed: # CC=gcc make testrun/attr-in-decllist # [235] A regression test command failed: # CC=gcc make testrun/attr4 # [237] A regression test command failed: # CC=gcc make testrun/bitfield2 # [238] A regression test command failed: # CC=gcc make testrun/bitfield3 # [239] A regression test command failed: # CC=gcc make testrun/blockattr2 USECFG=1 # [240] A regression test command failed: # CC=gcc make testrun/bool # [241] A regression test command failed: # CC=gcc make testrun/booleanOp USE_LOGICAL_OPERATORS=1 # [242] A regression test command failed: # CC=gcc make testrun/builtin # [243] A regression test command failed: # CC=gcc make testrun/builtin3 # [244] A regression test command failed: # CC=gcc make testrun/builtin4 # [245] A regression test command failed: # CC=gcc make testrun/builtin_choose_expr # [246] A regression test command failed: # CC=gcc make testrun/call2 # [247] A regression test command failed: # CC=gcc make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG # [248] A regression test command failed: # CC=gcc make testrun/caserange # [249] A regression test command failed: # CC=gcc make testrun/cast8 # [250] A regression test command failed: # CC=gcc make testrun/castincr WARNINGS_ARE_ERRORS=1 # [251] A regression test command failed: # CC=gcc make testrun/comma1 # [252] A regression test command failed: # CC=gcc make testrun/comparisons # [254] A regression test command failed: # CC=gcc make testrun/compound2 # [255] A regression test command failed: # CC=gcc make testrun/cond1 # [256] A regression test command failed: # CC=gcc make testrun/cond2 # [257] A regression test command failed: # CC=gcc make testrun/const-array-init WARNINGS_ARE_ERRORS=1 # [258] A regression test command failed: # CC=gcc make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 # [259] A regression test command failed: # CC=gcc make testrun/const1 # [260] A regression test command failed: # CC=gcc make testrun/const10 # [261] A regression test command failed: # CC=gcc make testrun/const11 # [262] A regression test command failed: # CC=gcc make testrun/const12 # [263] A regression test command failed: # CC=gcc make testrun/const15 # [264] A regression test command failed: # CC=gcc make testrun/const16 # [265] A regression test command failed: # CC=gcc make testrun/const2 # [266] A regression test command failed: # CC=gcc make testrun/const3 # [267] A regression test command failed: # CC=gcc make testrun/const4 # [268] A regression test command failed: # CC=gcc make testrun/const5 # [269] A regression test command failed: # CC=gcc make testrun/const6 # [270] A regression test command failed: # CC=gcc make testrun/const8 # [273] A regression test command failed: # CC=gcc make testrun/decl_mix_stmt # [274] A regression test command failed: # CC=gcc make testrun/enum2 # [275] A regression test command failed: # CC=gcc make testrun/escapes # [276] A regression test command failed: # CC=gcc make testrun/extern1 # [277] A regression test command failed: # CC=gcc make testrun/extinline2 # [278] A regression test command failed: # CC=gcc make testrun/fallthrough-label # [279] A regression test command failed: # CC=gcc make testrun/flexible-array-member # [280] A regression test command failed: # CC=gcc make testrun/float # [281] A regression test command failed: # CC=gcc make testrun/float2 # [282] A regression test command failed: # CC=gcc make testrun/for1 # [283] A regression test command failed: # CC=gcc make testrun/formalscope # [284] A regression test command failed: # CC=gcc make testrun/func2 # [285] A regression test command failed: # CC=gcc make testrun/func3 # [286] A regression test command failed: # CC=gcc make testrun/func4 # [287] A regression test command failed: # CC=gcc make testrun/funptr1 # [288] A regression test command failed: # CC=gcc make testrun/init # [289] A regression test command failed: # CC=gcc make testrun/init1 # [290] A regression test command failed: # CC=gcc make testrun/init10 # [291] A regression test command failed: # CC=gcc make testrun/init11 # [292] A regression test command failed: # CC=gcc make testrun/init12 # [293] A regression test command failed: # CC=gcc make testrun/init13 # [294] A regression test command failed: # CC=gcc make testrun/init14 # [295] A regression test command failed: # CC=gcc make testrun/init15 # [296] A regression test command failed: # CC=gcc make testrun/init16 # [297] A regression test command failed: # CC=gcc make testrun/init17 # [298] A regression test command failed: # CC=gcc make testrun/init18 # [299] A regression test command failed: # CC=gcc make testrun/init19 WARNINGS_ARE_ERRORS=1 # [300] A regression test command failed: # CC=gcc make testrun/init2 # [301] A regression test command failed: # CC=gcc make testrun/init20 # [302] A regression test command failed: # CC=gcc make testrun/init21 # [303] A regression test command failed: # CC=gcc make testrun/init22 # [304] A regression test command failed: # CC=gcc make testrun/init3 # [305] A regression test command failed: # CC=gcc make testrun/init4 # [306] A regression test command failed: # CC=gcc make testrun/init5 # [307] A regression test command failed: # CC=gcc make testrun/init6 # [308] A regression test command failed: # CC=gcc make testrun/init9 # [309] A regression test command failed: # CC=gcc make testrun/initial # [311] A regression test command failed: # CC=gcc make testrun/inline2 # [312] A regression test command failed: # CC=gcc make testrun/label1 # [313] A regression test command failed: # CC=gcc make testrun/label2 # [314] A regression test command failed: # CC=gcc make testrun/label2b COMPUTEDGOTO=1 # [315] A regression test command failed: # CC=gcc make testrun/label3 # [316] A regression test command failed: # CC=gcc make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 # [317] A regression test command failed: # CC=gcc make testrun/label4 # [318] A regression test command failed: # CC=gcc make testrun/label4b COMPUTEDGOTO=1 # [319] A regression test command failed: # CC=gcc make testrun/label6 # [320] A regression test command failed: # CC=gcc make testrun/land_expr # [321] A regression test command failed: # CC=gcc make testrun/large_unsigned_long # [322] A regression test command failed: # CC=gcc make testrun/linux_signal # [323] A regression test command failed: # CC=gcc make testrun/localinit # [324] A regression test command failed: # CC=gcc make testrun/logical # [325] A regression test command failed: # CC=gcc make testrun/logical1 USE_LOGICAL_OPERATORS=1 # [326] A regression test command failed: # CC=gcc make testrun/logical2 USE_LOGICAL_OPERATORS=1 # [328] A regression test command failed: # CC=gcc make testrun/lval1 # [329] A regression test command failed: # CC=gcc make testrun/macro_hidden # [330] A regression test command failed: # CC=gcc make testrun/math1 # [331] A regression test command failed: # CC=gcc make testrun/memcpy1 # [332] A regression test command failed: # CC=gcc make testrun/min # [333] A regression test command failed: # CC=gcc make testrun/msvc1 # [334] A regression test command failed: # CC=gcc make testrun/msvc5 # [335] A regression test command failed: # CC=gcc make testrun/nan-global # [336] A regression test command failed: # CC=gcc make testrun/offsetof # [337] A regression test command failed: # CC=gcc make testrun/offsetof1 # [338] A regression test command failed: # CC=gcc make testrun/offsetof2 # [339] A regression test command failed: # CC=gcc make testrun/offsetof3 # [340] A regression test command failed: # CC=gcc make testrun/packed WARNINGS_ARE_ERRORS=1 # [341] A regression test command failed: # CC=gcc make testrun/percent400 # [342] A regression test command failed: # CC=gcc make testrun/percentm # [343] A regression test command failed: # CC=gcc make testrun/perror # [344] A regression test command failed: # CC=gcc make testrun/perror1 # [346] A regression test command failed: # CC=gcc make testrun/printf2 # [347] A regression test command failed: # CC=gcc make testrun/question # [348] A regression test command failed: # CC=gcc make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 # [349] A regression test command failed: # CC=gcc make testrun/question2 # [350] A regression test command failed: # CC=gcc make testrun/question3 USE_LOGICAL_OPERATORS=1 # [351] A regression test command failed: # CC=gcc make testrun/return1 # [352] A regression test command failed: # CC=gcc make testrun/returnvoid # [353] A regression test command failed: # CC=gcc make testrun/returnvoid1 # [355] A regression test command failed: # CC=gcc make testrun/rmtmps1 # [356] A regression test command failed: # CC=gcc make testrun/rmtmps2 # [357] A regression test command failed: # CC=gcc make testrun/scope1 # [358] A regression test command failed: # CC=gcc make testrun/scope10 # [359] A regression test command failed: # CC=gcc make testrun/scope11 # [360] A regression test command failed: # CC=gcc make testrun/scope5 # [361] A regression test command failed: # CC=gcc make testrun/scope6 # [362] A regression test command failed: # CC=gcc make testrun/scope8 # [363] A regression test command failed: # CC=gcc make testrun/scope9 # [364] A regression test command failed: # CC=gcc make testrun/semicolon # [365] A regression test command failed: # CC=gcc make testrun/simon6 # [366] A regression test command failed: # CC=gcc make testrun/sizeof1 # [367] A regression test command failed: # CC=gcc make testrun/sizeof2 # [368] A regression test command failed: # CC=gcc make testrun/static # [369] A regression test command failed: # CC=gcc make testrun/static2 # [370] A regression test command failed: # CC=gcc make testrun/stringsize # [371] A regression test command failed: # CC=gcc make testrun/strloop # [372] A regression test command failed: # CC=gcc make testrun/strloop3 # [373] A regression test command failed: # CC=gcc make testrun/struct1 # [374] A regression test command failed: # CC=gcc make testrun/typeof1 # [376] A regression test command failed: # CC=gcc make testrun/union2 # [377] A regression test command failed: # CC=gcc make testrun/union3 # [379] A regression test command failed: # CC=gcc make testrun/va-arg-1 # [380] A regression test command failed: # CC=gcc make testrun/va-arg-2 # [381] A regression test command failed: # CC=gcc make testrun/va-arg-7 # [382] A regression test command failed: # CC=gcc make testrun/var_named_hidden # [383] A regression test command failed: # CC=gcc make testrun/vararg1 # [384] A regression test command failed: # CC=gcc make testrun/vararg2 # [385] A regression test command failed: # CC=gcc make testrun/vararg3 # [386] A regression test command failed: # CC=gcc make testrun/vararg4 # [387] A regression test command failed: # CC=gcc make testrun/vararg5 # [388] A regression test command failed: # CC=gcc make testrun/vararg6 # [389] A regression test command failed: # CC=gcc make testrun/varargauto1 # [390] A regression test command failed: # CC=gcc make testrun/void # [391] A regression test command failed: # CC=gcc make testrun/voidarg # [392] A regression test command failed: # CC=gcc make testrun/vsp # [393] A regression test command failed: # CC=gcc make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 # [394] A regression test command failed: # CC=gcc make testrun/wchar1 # [395] A regression test command failed: # CC=gcc make testrun/wchar2 # [396] A regression test command failed: # CC=gcc make testrun/wchar3 # [397] A regression test command failed: # CC=gcc make testrun/wchar4 # [398] A regression test command failed: # CC=gcc make testrun/wchar5 # [399] A regression test command failed: # CC=gcc make testrun/wchar6 # [400] A regression test command failed: # CC=gcc make testrun/wchar7 # [402] A regression test command failed: # CC=gcc make testrunc11/c11-align-of # [403] A regression test command failed: # CC=gcc make testrunc11/c11-atomic # [404] A regression test command failed: # CC=gcc make testrunc11/c11-atomic-store # [405] A regression test command failed: # CC=gcc make testrunc11/c11-caserange # [406] A regression test command failed: # CC=gcc make testrunc11/c11-extendedFloat # [407] A regression test command failed: # CC=gcc make testrunc11/c11-generic # [408] A regression test command failed: # CC=gcc make testrunc11/c11-noreturn # [409] A regression test command failed: # CC=gcc make testrunc11/c11-static-assert # [410] A regression test command failed: # CC=gcc make testrunc11/gcc-c11-generic-1 # [411] A regression test command failed: # CC=gcc make testrunc99/c99-bool # [412] A regression test command failed: # CC=gcc make testrunc99/c99-complex # [413] A regression test command failed: # CC=gcc make testrunc99/c99-fixed-width-int # [414] A regression test command failed: # CC=gcc make testrunc99/c99-float-pragma # [415] A regression test command failed: # CC=gcc make testrunc99/c99-predefined # [416] A regression test command failed: # CC=gcc make testrunc99/c99-struct # [417] A regression test command failed: # CC=gcc make testrunc99/c99-tgmath # [418] A regression test command failed: # CC=gcc make testrunc99/c99-tgmath2 # [419] A regression test command failed: # CC=gcc make testrunc99/c99-universal-character-names # [420] A regression test command failed: # CC=gcc make testrungcc/builtin_object_size OPTIMIZE=1 # [421] A regression test command failed: # CC=gcc make testrungcc/enum3 # [422] A regression test command failed: # CC=gcc make testrungcc/enum3a # [423] A regression test command failed: # CC=gcc make testrungcc/enum3b # [425] A regression test command failed: # CC=gcc make testrungcc/enum3d # [426] A regression test command failed: # CC=gcc make testrungcc/enum3e # [427] A regression test command failed: # CC=gcc make testrungcc/enum3f # [428] A regression test command failed: # CC=gcc make testrungcc/enum3g # [429] A regression test command failed: # CC=gcc make testrungcc/enum3h # [430] A regression test command failed: # CC=gcc make testrungcc/enum3i # [431] A regression test command failed: # CC=gcc make testrungcc/enum3j # [432] A regression test command failed: # CC=gcc make testrungcc/enum3k # [433] A regression test command failed: # CC=gcc make testrungcc/enum3l # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:298: arcombine] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:409: baddef] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:366: comb] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine14] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine15] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine16] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine17] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine18] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine20] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine21] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine22] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_allocate] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_copyptrs] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_node_alloc] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_samefn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_sbump] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_sbumpB] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_syserr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_theFunc] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combinealias] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:306: combinec99inline] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineenum1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineenum2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineenum3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:291: combinegnuinline] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combinelibrik] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combinestruct1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:428: merge-ar] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:396: mergeinit] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:401: mergeinline] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:387: mergestruct] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:378: mixedcomb] Error 2 # Test case baseline (line 2) fails and it is supposed to succeed at ../runall.pl line 395. # Died at ../runall.pl line 399. # make: *** [Makefile:344: runall/alpha] Error 2 # Cannot find "Trying to rename" in output of test bad at ../runall.pl line 416. # Died at ../runall.pl line 419. # make: *** [Makefile:344: runall/extinline] Error 2 # Cannot find "syntax error" in output of test rbrace at ../runall.pl line 416. # Died at ../runall.pl line 419. # make: *** [Makefile:344: runall/runall_misc] Error 2 # Test case archspecific (line 42) fails and it is supposed to succeed at ../runall.pl line 395. # Died at ../runall.pl line 399. # make: *** [Makefile:344: runall/structattr2] Error 2 # Test case baseline (line 4) fails and it is supposed to succeed at ../runall.pl line 395. # Died at ../runall.pl line 399. # make: *** [Makefile:344: runall/switch] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:249: scott-nogcc/bogus_redef] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:249: scott-nogcc/funcname] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:258: scott-nolink/brlock] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/arrayinit] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/asmfndecl] Error 2 # bisonerror.c: In function 'closure': # bisonerror.c:9:12: warning: variable 'csend' set but not used [-Wunused-but-set-variable] # 9 | short * csend ; # | ^~~~~ # bisonerror.c: In function 'main': # bisonerror.c:14:8: warning: unused variable 'x' [-Wunused-variable] # 14 | core x; # | ^ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/bisonerror] Error 2 # cmpzero.c: In function 'main': # cmpzero.c:8:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] # 8 | char c = (char)i; // should be 0 # | ^ # cmpzero.c:10:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] # 10 | printf("i: %d\n", (int)i); # | ^ # cmpzero.c:13:9: warning: comparison between pointer and zero character constant [-Wpointer-compare] # 13 | if (i == '\0') { # | ^~ # cmpzero.c:13:7: note: did you mean to dereference the pointer? # 13 | if (i == '\0') { # | ^ # cmpzero.c:21:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] # 21 | if ((int)(char)i == (int)'\0') { # | ^ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/cmpzero] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/constdecl] Error 2 # constfold.c: In function 'main': # constfold.c:12:20: warning: variable 'tmp12' set but not used [-Wunused-but-set-variable] # 12 | float z10, z5, tmp12; # | ^~~~~ # constfold.c:17:18: warning: variable 'root' set but not used [-Wunused-but-set-variable] # 17 | double a,b,c,root; # | ^~~~ # constfold.c:13:37: warning: 'z10' is used uninitialized [-Wuninitialized] # 13 | tmp12 = (float )(- 2.613125930) * z10 + z5; // ijpeg # | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~ # constfold.c:13:11: warning: 'z5' is used uninitialized [-Wuninitialized] # 13 | tmp12 = (float )(- 2.613125930) * z10 + z5; // ijpeg # | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # constfold.c:18:13: warning: 'b' is used uninitialized [-Wuninitialized] # 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power # | ^~ # constfold.c:18:26: warning: 'a' is used uninitialized [-Wuninitialized] # 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power # | ~^~ # constfold.c:18:28: warning: 'c' is used uninitialized [-Wuninitialized] # 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power # | ~~~^~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/constfold] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/ctype] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/enumattr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/enumerator_sizeof] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/enuminit] Error 2 # errorinfn.c: In function 'main': # errorinfn.c:3:15: warning: initializer-string for array of 'char' is too long # 3 | char c[8] = "an error!"; # | ^~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/errorinfn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/funcptr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/gimpdouble] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/globalprob] Error 2 # initedextern.c:6:12: warning: 'foo' initialized and declared 'extern' # 6 | extern int foo = 3; # | ^~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/initedextern] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/invalredef] Error 2 # invalredef2.c:9:13: warning: 'parse' defined but not used [-Wunused-function] # 9 | static int parse(enum token * tok ) # | ^~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/invalredef2] Error 2 # kernel1.c:2:1: warning: data definition has no type or storage class # 2 | DECLARE_WAIT_QUEUE_HEAD(log_wait); # | ^~~~~~~~~~~~~~~~~~~~~~~ # kernel1.c:2:1: warning: type defaults to 'int' in declaration of 'DECLARE_WAIT_QUEUE_HEAD' [-Wimplicit-int] # kernel1.c:2:1: warning: parameter names (without types) in function declaration # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/kernel1] Error 2 # kernel2.c:8:22: warning: 'kernel_module' defined but not used [-Wunused-variable] # 8 | static struct module kernel_module = # | ^~~~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/kernel2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/lexnum] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/litstruct] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/main] Error 2 # memberofptr.c: In function 'read_header': # memberofptr.c:21:18: warning: unused variable 'next' [-Wunused-variable] # 21 | static char * next; /*decdef*/ # | ^~~~ # memberofptr.c:20:18: warning: unused variable 'header' [-Wunused-variable] # 20 | union block * header ; /*decdef*/ # | ^~~~~~ # At top level: # memberofptr.c:21:18: warning: 'next' defined but not used [-Wunused-variable] # 21 | static char * next; /*decdef*/ # | ^~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/memberofptr] Error 2 # mode_sizes.c: In function 'main': # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:29:3: note: in expansion of macro 'PRSIZE' # 29 | PRSIZE(int8_t, 1); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:30:3: note: in expansion of macro 'PRSIZE' # 30 | PRSIZE(int16_t, 2); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:31:3: note: in expansion of macro 'PRSIZE' # 31 | PRSIZE(int32_t, 4); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:32:3: note: in expansion of macro 'PRSIZE' # 32 | PRSIZE(int64_t, 8); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:34:3: note: in expansion of macro 'PRSIZE' # 34 | PRSIZE(u_int8_t, 1); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:35:3: note: in expansion of macro 'PRSIZE' # 35 | PRSIZE(u_int16_t, 2); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:36:3: note: in expansion of macro 'PRSIZE' # 36 | PRSIZE(u_int32_t, 4); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:37:3: note: in expansion of macro 'PRSIZE' # 37 | PRSIZE(u_int64_t, 8); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:39:3: note: in expansion of macro 'PRSIZE' # 39 | PRSIZE(x8_t, 1); # | ^~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/mode_sizes] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/multiplestatics] Error 2 # neg64.c:12:1: warning: return type defaults to 'int' [-Wimplicit-int] # 12 | main() # | ^~~~ # neg64.c: In function 'main': # neg64.c:15:5: warning: implicit declaration of function 'abort' [-Wimplicit-function-declaration] # 15 | abort(); # | ^~~~~ # neg64.c:1:1: note: include '' or provide a declaration of 'abort' # +++ |+#include # 1 | // neg64.c # neg64.c:15:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch] # 15 | abort(); # | ^~~~~ # neg64.c:15:5: note: include '' or provide a declaration of 'abort' # neg64.c:17:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] # 17 | exit(0); # | ^~~~ # neg64.c:17:3: note: include '' or provide a declaration of 'exit' # neg64.c:17:3: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] # neg64.c:17:3: note: include '' or provide a declaration of 'exit' # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/neg64] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/oldstyle] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/open] Error 2 # partialbracket.c:7:20: warning: missing braces around initializer [-Wmissing-braces] # 7 | struct S array[] = { # | ^ # 8 | 1,2, # | { } # 9 | 3,4 # | { # 10 | }; # | } # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/partialbracket] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/putc] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/regparm0] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/s59] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/sizeofchar] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/sockaddr] Error 2 # struct_cs.c:9:1: warning: 'reverse_pairs_list' defined but not used [-Wunused-function] # 9 | reverse_pairs_list (gdouble *list, # | ^~~~~~~~~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/struct_cs] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/structattr] Error 2 # structattr3.c:7:18: warning: missing braces around initializer [-Wmissing-braces] # 7 | struct S y[10] = {1,2,3}; # | ^ # | {}{}{} # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/structattr3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/thing] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/transpunion] Error 2 # typeof.c: In function 'y': # typeof.c:6:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] # 6 | exit(-2); //make sure y() is not invoked! # | ^~~~ # typeof.c:1:1: note: include '' or provide a declaration of 'exit' # +++ |+#include # 1 | // simple use of typeof # typeof.c:6:3: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] # 6 | exit(-2); //make sure y() is not invoked! # | ^~~~ # typeof.c:6:3: note: include '' or provide a declaration of 'exit' # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/typeof] Error 2 # uninit_tmp.c: In function 'bad_function': # uninit_tmp.c:11:33: warning: variable 'other_variable' set but not used [-Wunused-but-set-variable] # 11 | auto const struct struct_two *other_variable; # | ^~~~~~~~~~~~~~ # uninit_tmp.c: In function 'main': # uninit_tmp.c:32:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] # 32 | printf("cil bug is still present\n"); # | ^~~~~~ # uninit_tmp.c:1:1: note: include '' or provide a declaration of 'printf' # +++ |+#include # 1 | // uninit_tmp.c # uninit_tmp.c:32:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] # 32 | printf("cil bug is still present\n"); # | ^~~~~~ # uninit_tmp.c:32:5: note: include '' or provide a declaration of 'printf' # uninit_tmp.c:36:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] # 36 | printf("bug has been fixed!\n"); # | ^~~~~~ # uninit_tmp.c:36:5: note: include '' or provide a declaration of 'printf' # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/uninit_tmp] Error 2 # unionassign.c: In function 'foo': # unionassign.c:85:19: warning: variable 'x' set but not used [-Wunused-but-set-variable] # 85 | union sockunion x,y; # | ^ # unionassign.c:86:5: warning: 'y' is used uninitialized [-Wuninitialized] # 86 | x = y; # | ~~^~~ # unionassign.c:85:21: note: 'y' declared here # 85 | union sockunion x,y; # | ^ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/unionassign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/unscomp] Error 2 # volatilestruct.c: In function 'main': # volatilestruct.c:17:14: warning: variable 'bar' set but not used [-Wunused-but-set-variable] # 17 | } volatile bar; # | ^~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/volatilestruct] Error 2 # xcheckers.c:18:13: warning: 'loadImage' defined but not used [-Wunused-function] # 18 | static void loadImage(void ) # | ^~~~~~~~~ # xcheckers.c: In function 'loadImage': # xcheckers.c:21:11: warning: 'thisScene' is used uninitialized [-Wuninitialized] # 21 | paper = getColor((& (((_XPrivDisplay )dpy)->screens)[1])->cmap, thisScene); # | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/xcheckers] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:323: test-bad/enuminit2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:323: test-bad/trivial-tb] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:332: test-bad1/flexible-array-member-bad] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:332: test-bad1/wchar-bad] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/align3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/apachebits] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/argcast] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/array-size-trick] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/array1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/array2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/arrsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm_emptyclobberallowed] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/bitfield] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/break1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/builtin2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/builtin5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cast1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cast2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cast4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/castcall] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/castunion] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const-struct-init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const14] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/constprop] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/constrexpr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cpp-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cpp-3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/decl2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/deref] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/duplicate] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/enum] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/enum-scope] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/extinline3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/func] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/func10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/funcarg] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/globals] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/globals2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/huff1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/init8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/initial] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/inline3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/jmp_buf] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/li] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/linux_atomic] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/linuxcombine1_1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/list] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/matrix] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/noreturn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/outofmem] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/packed2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/power1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/printf] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/printf_const] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/proto1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/proto2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/pure] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/restrict] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/restrict1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/retval] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/shell-escape] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sizeof3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/static] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/static1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/strcpy] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/struct_init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/structassign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/switch_default_parse_bug] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sync-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sync-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sync-3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/tags] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/task] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/unimplemented] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/union5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/va_arg_pack] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/vararg7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/voidstar] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/voidtypedef] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/warnings-cast] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/warnings-noreturn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:215: test_i/empty] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:215: test_i/lineno] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/alignas] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/clang-c11-generic-1-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/clang-c11-generic-1-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/clang-c11-generic-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-2-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-2-7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:180: testobj/asm5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/addr-array] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/addr-string] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/addrof3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/align1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/align2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/apachebuf] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/apachefptr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/array_formal] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/array_multi_varsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/array_varsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/arrayinitsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/asm1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/assign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/attr-in-decllist] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/attr4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/bitfield2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/bitfield3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/blockattr2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/bool] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/booleanOp] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin_choose_expr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/call2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/case_then_default_in_switch] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/caserange] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/cast8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/castincr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/comma1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/comparisons] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/compound1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/compound2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/cond1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/cond2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const-array-init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const-struct-init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const15] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const16] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/constfold] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/constfold2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/decl_mix_stmt] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/enum2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/escapes] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/extern1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/extinline2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/fallthrough-label] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/flexible-array-member] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/float] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/float2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/for1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/formalscope] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/func2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/func3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/func4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/funptr1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init14] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init15] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init16] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init17] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init18] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init19] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init20] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init21] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init22] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/initial] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/inline1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/inline2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label2b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label3b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label4b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/land_expr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/large_unsigned_long] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/linux_signal] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/localinit] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/logical] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/logical1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/logical2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/lval1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/macro_hidden] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/math1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/memcpy1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/min] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/msvc1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/msvc5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/nan-global] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/packed] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/percent400] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/percentm] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/perror] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/perror1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/post-assign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/printf2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question-fold-float] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/return1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/returnvoid] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/returnvoid1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/rmtmps-attr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/rmtmps1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/rmtmps2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/semicolon] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/simon6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/sizeof1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/sizeof2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/static] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/static2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/stringsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/strloop] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/strloop3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/struct1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/typeof1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/typespec1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/union2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/union3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/union6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/va-arg-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/va-arg-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/va-arg-7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/var_named_hidden] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/varargauto1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/void] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/voidarg] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vsp] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/warnings-unused-label] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64 <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build goblint-cil 2.0.1 +- - No changes have been performed /perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wrongnumargs] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-align-of] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-atomic] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-atomic-store] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-caserange] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-extendedFloat] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-generic] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-noreturn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-static-assert] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/gcc-c11-generic-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-bool] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-complex] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-fixed-width-int] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-float-pragma] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-predefined] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-struct] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-tgmath] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-tgmath2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-universal-character-names] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/builtin_object_size] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3a] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3c] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3d] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3e] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3f] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3g] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3h] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3i] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3j] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3k] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3l] Error 2 # Run eval $(opam env) to update the current shell environment 2023-09-21 14:01.28 ---> saved as "1f6a897d0f2efbf800b6321865155444e8e486ae9a003872726c7c6a0797577d" /home/opam: (run (shell "opam reinstall --with-test --verbose goblint-cil.2.0.1;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n partial_fails=\"\";\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"oraclelinux-9\\\"\"; 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.1' && 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.1 (pinned) <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> [goblint-cil: patch] applying realGccConfigure.patch Processing 2/4: [goblint-cil: patch] 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/4.14/.opam-switch/build/goblint-cil.2.0.1) - (cd _build/default && /home/opam/.opam/4.14/bin/ocamlyacc src/frontc/cparser.mly) - 1 shift/reduce conflict, 1 reduce/reduce conflict. - (cd _build/default/src && /home/opam/.opam/4.14/bin/cppo -V OCAML:4.14.1 machdep.cppo.ml -x machdep:./machdep-ml.exe -o machdep.ml) - Generating machine dependency information for CIL - File "test/dune", line 1, 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 434 tests enabled - ------------ [0] CC="gcc" make arcombine ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -c array1.c array2.c - - [0] A regression test command failed: - CC="gcc" make arcombine - ------------ [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/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.c -c -o baddef1.o; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef2.c -c -o baddef2.o; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.o baddef2.o -obaddef.exe - - [1] A regression test command failed: - CC="gcc" make baddef - ------------ [2] CC="gcc" make comb ------------ - rm -f ./small2/comb.exe - cd ./small2; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c -c -o comb1.o; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb2.c -c -o comb2.o; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb3.c -c -o comb3.o; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb4.c -c -o comb4.o; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.o comb2.o comb3.o comb4.o -ocomb.exe - - [2] A regression test command failed: - CC="gcc" make comb - ------------ [3] CC="gcc" make combine1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [3] A regression test command failed: - CC="gcc" make combine1 - ------------ [4] CC="gcc" make combine10 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [4] A regression test command failed: - CC="gcc" make combine10 - ------------ [5] CC="gcc" make combine11 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [5] A regression test command failed: - CC="gcc" make combine11 - ------------ [6] CC="gcc" make combine12 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [6] A regression test command failed: - CC="gcc" make combine12 - ------------ [7] CC="gcc" make combine13 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [7] A regression test command failed: - CC="gcc" make combine13 - ------------ [8] CC="gcc" make combine14 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [8] A regression test command failed: - CC="gcc" make combine14 - ------------ [9] CC="gcc" make combine15 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [9] A regression test command failed: - CC="gcc" make combine15 - ------------ [10] CC="gcc" make combine16 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [10] A regression test command failed: - CC="gcc" make combine16 - ------------ [11] CC="gcc" make combine17 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [11] A regression test command failed: - CC="gcc" make combine17 - ------------ [12] CC="gcc" make combine18 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [12] A regression test command failed: - CC="gcc" make combine18 - ------------ [13] CC="gcc" make combine2 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [13] A regression test command failed: - CC="gcc" make combine2 - ------------ [14] CC="gcc" make combine20 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [14] A regression test command failed: - CC="gcc" make combine20 - ------------ [15] CC="gcc" make combine21 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [15] A regression test command failed: - CC="gcc" make combine21 - ------------ [16] (fail) CC="gcc" make combine22 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [17] A regression test command failed: - CC="gcc" make combine3 - ------------ [18] CC="gcc" make combine5 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [18] A regression test command failed: - CC="gcc" make combine5 - ------------ [19] CC="gcc" make combine6 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [19] A regression test command failed: - CC="gcc" make combine6 - ------------ [20] CC="gcc" make combine8 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [20] A regression test command failed: - CC="gcc" make combine8 - ------------ [21] (fail) CC="gcc" make combine9 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [22] A regression test command failed: - CC="gcc" make combine_allocate MERGEINLINES=1 - ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [23] A regression test command failed: - CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 - ------------ [24] CC="gcc" make combine_init ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [24] A regression test command failed: - CC="gcc" make combine_init - ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [27] A regression test command failed: - CC="gcc" make combine_sbump - ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [28] A regression test command failed: - CC="gcc" make combine_sbumpB MERGEINLINES=1 - ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [29] A regression test command failed: - CC="gcc" make combine_syserr MERGEINLINES=1 - ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [30] A regression test command failed: - CC="gcc" make combine_theFunc MERGEINLINES=1 - ------------ [31] CC="gcc" make combinealias ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [31] A regression test command failed: - CC="gcc" make combinealias - ------------ [32] (fail) CC="gcc" make combinec99inline ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -fcommon --merge \ - combine-c99inline_1.c combine-c99inline_2.c \ - -ocombine-c99inline.exe - ------------ [33] CC="gcc" make combineenum1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [33] A regression test command failed: - CC="gcc" make combineenum1 - ------------ [34] CC="gcc" make combineenum2 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [34] A regression test command failed: - CC="gcc" make combineenum2 - ------------ [35] CC="gcc" make combineenum3 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [35] A regression test command failed: - CC="gcc" make combineenum3 - ------------ [36] CC="gcc" make combinegnuinline ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [36] A regression test command failed: - CC="gcc" make combinegnuinline - ------------ [37] (fail) CC="gcc" make combineinline1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [38] CC="gcc" make combineinline2 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [38] A regression test command failed: - CC="gcc" make combineinline2 - ------------ [39] (fail) CC="gcc" make combineinline3 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [40] (fail) CC="gcc" make combineinline4 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [41] CC="gcc" make combineinline6 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [41] A regression test command failed: - CC="gcc" make combineinline6 - ------------ [42] CC="gcc" make combinelibrik ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [42] A regression test command failed: - CC="gcc" make combinelibrik - ------------ [43] CC="gcc" make combinestruct1 ------------ - cd ./small1; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [43] A regression test command failed: - CC="gcc" make combinestruct1 - ------------ [44] CC="gcc" make merge-ar ------------ - cd small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --merge -c merge-ar.c merge-twice-1.c - - [44] A regression test command failed: - CC="gcc" make merge-ar - ------------ [45] CC="gcc" make mergeinit ------------ - cd ./small2; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [45] A regression test command failed: - CC="gcc" make mergeinit - ------------ [46] CC="gcc" make mergeinline ------------ - cd ./small2; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats mergeinline1.c mergeinline2.c -o mergeinline.exe - - [46] A regression test command failed: - CC="gcc" make mergeinline - ------------ [47] CC="gcc" make mergestruct ------------ - cd ./small2; \ - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon mergestruct1.c mergestruct2.c -o mergestruct.exe - - [47] A regression test command failed: - CC="gcc" make mergestruct - ------------ [48] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c comb2.i comb3.s comb4.o -ocomb.exe - - [48] A regression test command failed: - CC="gcc" make mixedcomb - ------------ [49] CC="gcc" make runall/alpha ------------ - cd ./small2; \ - CCURED_NO_SIGABRT=1 \ - COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Test baseline returned with code 512. Expected success - - [49] A regression test command failed: - CC="gcc" make runall/alpha - ------------ [50] CC="gcc" make runall/extinline ------------ - cd ./small2; \ - CCURED_NO_SIGABRT=1 \ - COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Test bad returned with code 512. Expected failure - - [50] A regression test command failed: - CC="gcc" make runall/extinline - ------------ [51] CC="gcc" make runall/runall_misc ------------ - cd ./small2; \ - CCURED_NO_SIGABRT=1 \ - COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Test rbrace returned with code 512. Expected failure - - [51] A regression test command failed: - CC="gcc" make runall/runall_misc - ------------ [52] CC="gcc" make runall/structattr2 ------------ - cd ./small2; \ - CCURED_NO_SIGABRT=1 \ - COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Test archspecific returned with code 512. Expected success - - [52] A regression test command failed: - CC="gcc" make runall/structattr2 - ------------ [53] CC="gcc" make runall/switch ------------ - cd ./small2; \ - CCURED_NO_SIGABRT=1 \ - COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Test baseline returned with code 512. Expected success - - [53] A regression test command failed: - CC="gcc" make runall/switch - ------------ [54] CC="gcc" make scott-nogcc/bogus_redef ------------ - rm -f ./small2/bogus_redef.exe - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [54] A regression test command failed: - CC="gcc" make scott-nogcc/bogus_redef - ------------ [55] CC="gcc" make scott-nogcc/funcname ------------ - rm -f ./small2/funcname.exe - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [55] A regression test command failed: - CC="gcc" make scott-nogcc/funcname - ------------ [56] CC="gcc" make scott-nolink/brlock ------------ - rm -f ./small2/brlock.exe - cd ./small2; gcc -c -Wall brlock.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [56] A regression test command failed: - CC="gcc" make scott-nolink/brlock - ------------ [57] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [57] A regression test command failed: - CC="gcc" make scott/arrayinit - ------------ [58] (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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [59] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [59] A regression test command failed: - CC="gcc" make scott/bisonerror - ------------ [60] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [60] A regression test command failed: - CC="gcc" make scott/cmpzero - ------------ [61] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [61] A regression test command failed: - CC="gcc" make scott/constdecl - ------------ [62] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [62] A regression test command failed: - CC="gcc" make scott/constfold - ------------ [63] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [63] A regression test command failed: - CC="gcc" make scott/ctype - ------------ [64] CC="gcc" make scott/enumattr ------------ - rm -f ./small2/enumattr.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enumattr.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - enumattr.c \ - -oenumattr.exe - - [64] A regression test command failed: - CC="gcc" make scott/enumattr - ------------ [65] CC="gcc" make scott/enumerator_sizeof ------------ - rm -f ./small2/enumerator_sizeof.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enumerator_sizeof.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - enumerator_sizeof.c \ - -oenumerator_sizeof.exe - - [65] A regression test command failed: - CC="gcc" make scott/enumerator_sizeof - ------------ [66] CC="gcc" make scott/enuminit ------------ - rm -f ./small2/enuminit.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enuminit.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - enuminit.c \ - -oenuminit.exe - - [66] A regression test command failed: - CC="gcc" make scott/enuminit - ------------ [67] CC="gcc" make scott/errorinfn ------------ - rm -f ./small2/errorinfn.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall errorinfn.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - errorinfn.c \ - -oerrorinfn.exe - - [67] A regression test command failed: - CC="gcc" make scott/errorinfn - ------------ [68] CC="gcc" make scott/funcptr ------------ - rm -f ./small2/funcptr.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall funcptr.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - funcptr.c \ - -ofuncptr.exe - - [68] A regression test command failed: - CC="gcc" make scott/funcptr - ------------ [69] CC="gcc" make scott/gimpdouble ------------ - rm -f ./small2/gimpdouble.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall gimpdouble.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - gimpdouble.c \ - -ogimpdouble.exe - - [69] A regression test command failed: - CC="gcc" make scott/gimpdouble - ------------ [70] (fail) CC="gcc" make scott/globalprob ------------ - rm -f ./small2/globalprob.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall globalprob.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - globalprob.c \ - -oglobalprob.exe - ------------ [71] CC="gcc" make scott/initedextern ------------ - rm -f ./small2/initedextern.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall initedextern.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - initedextern.c \ - -oinitedextern.exe - - [71] A regression test command failed: - CC="gcc" make scott/initedextern - ------------ [72] CC="gcc" make scott/invalredef ------------ - rm -f ./small2/invalredef.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall invalredef.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - invalredef.c \ - -oinvalredef.exe - - [72] A regression test command failed: - CC="gcc" make scott/invalredef - ------------ [73] CC="gcc" make scott/invalredef2 ------------ - rm -f ./small2/invalredef2.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall invalredef2.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - invalredef2.c \ - -oinvalredef2.exe - - [73] A regression test command failed: - CC="gcc" make scott/invalredef2 - ------------ [74] CC="gcc" make scott/kernel1 ------------ - rm -f ./small2/kernel1.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall kernel1.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - kernel1.c \ - -okernel1.exe - - [74] A regression test command failed: - CC="gcc" make scott/kernel1 - ------------ [75] CC="gcc" make scott/kernel2 ------------ - rm -f ./small2/kernel2.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall kernel2.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - kernel2.c \ - -okernel2.exe - - [75] A regression test command failed: - CC="gcc" make scott/kernel2 - ------------ [76] CC="gcc" make scott/lexnum ------------ - rm -f ./small2/lexnum.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall lexnum.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - lexnum.c \ - -olexnum.exe - - [76] A regression test command failed: - CC="gcc" make scott/lexnum - ------------ [77] CC="gcc" make scott/litstruct ------------ - rm -f ./small2/litstruct.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall litstruct.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - litstruct.c \ - -olitstruct.exe - - [77] A regression test command failed: - CC="gcc" make scott/litstruct - ------------ [78] CC="gcc" make scott/main ------------ - rm -f ./small2/main.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall main.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - main.c \ - -omain.exe - - [78] A regression test command failed: - CC="gcc" make scott/main - ------------ [79] CC="gcc" make scott/memberofptr ------------ - rm -f ./small2/memberofptr.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall memberofptr.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - memberofptr.c \ - -omemberofptr.exe - - [79] A regression test command failed: - CC="gcc" make scott/memberofptr - ------------ [80] CC="gcc" make scott/mode_sizes ------------ - rm -f ./small2/mode_sizes.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall mode_sizes.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - mode_sizes.c \ - -omode_sizes.exe - - [80] A regression test command failed: - CC="gcc" make scott/mode_sizes - ------------ [81] CC="gcc" make scott/multiplestatics ------------ - rm -f ./small2/multiplestatics.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall multiplestatics.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - multiplestatics.c \ - -omultiplestatics.exe - - [81] A regression test command failed: - CC="gcc" make scott/multiplestatics - ------------ [82] CC="gcc" make scott/neg64 ------------ - rm -f ./small2/neg64.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall neg64.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - neg64.c \ - -oneg64.exe - - [82] A regression test command failed: - CC="gcc" make scott/neg64 - ------------ [83] CC="gcc" make scott/oldstyle ------------ - rm -f ./small2/oldstyle.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall oldstyle.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - oldstyle.c \ - -ooldstyle.exe - - [83] A regression test command failed: - CC="gcc" make scott/oldstyle - ------------ [84] CC="gcc" make scott/open ------------ - rm -f ./small2/open.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall open.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - open.c \ - -oopen.exe - - [84] A regression test command failed: - CC="gcc" make scott/open - ------------ [85] CC="gcc" make scott/partialbracket ------------ - rm -f ./small2/partialbracket.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall partialbracket.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - partialbracket.c \ - -opartialbracket.exe - - [85] A regression test command failed: - CC="gcc" make scott/partialbracket - ------------ [86] CC="gcc" make scott/putc ------------ - rm -f ./small2/putc.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall putc.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - putc.c \ - -oputc.exe - - [86] A regression test command failed: - CC="gcc" make scott/putc - ------------ [87] (fail) CC="gcc" make scott/regparm0 ------------ - rm -f ./small2/regparm0.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall regparm0.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - regparm0.c \ - -oregparm0.exe - ------------ [88] CC="gcc" make scott/s59 ------------ - rm -f ./small2/s59.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall s59.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - s59.c \ - -os59.exe - - [88] A regression test command failed: - CC="gcc" make scott/s59 - ------------ [89] CC="gcc" make scott/sizeofchar ------------ - rm -f ./small2/sizeofchar.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall sizeofchar.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - sizeofchar.c \ - -osizeofchar.exe - - [89] A regression test command failed: - CC="gcc" make scott/sizeofchar - ------------ [90] CC="gcc" make scott/sockaddr ------------ - rm -f ./small2/sockaddr.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall sockaddr.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - sockaddr.c \ - -osockaddr.exe - - [90] A regression test command failed: - CC="gcc" make scott/sockaddr - ------------ [91] CC="gcc" make scott/struct_cs ------------ - rm -f ./small2/struct_cs.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall struct_cs.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - struct_cs.c \ - -ostruct_cs.exe - - [91] A regression test command failed: - CC="gcc" make scott/struct_cs - ------------ [92] CC="gcc" make scott/structattr ------------ - rm -f ./small2/structattr.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall structattr.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - structattr.c \ - -ostructattr.exe - - [92] A regression test command failed: - CC="gcc" make scott/structattr - ------------ [93] CC="gcc" make scott/structattr3 ------------ - rm -f ./small2/structattr3.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall structattr3.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - structattr3.c \ - -ostructattr3.exe - - [93] A regression test command failed: - CC="gcc" make scott/structattr3 - ------------ [94] CC="gcc" make scott/thing ------------ - rm -f ./small2/thing.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall thing.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - thing.c \ - -othing.exe - - [94] A regression test command failed: - CC="gcc" make scott/thing - ------------ [95] CC="gcc" make scott/transpunion ------------ - rm -f ./small2/transpunion.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall transpunion.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - transpunion.c \ - -otranspunion.exe - - [95] A regression test command failed: - CC="gcc" make scott/transpunion - ------------ [96] CC="gcc" make scott/typeof ------------ - rm -f ./small2/typeof.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall typeof.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - typeof.c \ - -otypeof.exe - - [96] A regression test command failed: - CC="gcc" make scott/typeof - ------------ [97] CC="gcc" make scott/uninit_tmp ------------ - rm -f ./small2/uninit_tmp.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall uninit_tmp.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - uninit_tmp.c \ - -ouninit_tmp.exe - - [97] A regression test command failed: - CC="gcc" make scott/uninit_tmp - ------------ [98] CC="gcc" make scott/unionassign ------------ - rm -f ./small2/unionassign.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall unionassign.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - unionassign.c \ - -ounionassign.exe - - [98] A regression test command failed: - CC="gcc" make scott/unionassign - ------------ [99] CC="gcc" make scott/unscomp ------------ - rm -f ./small2/unscomp.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall unscomp.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - unscomp.c \ - -ounscomp.exe - - [99] A regression test command failed: - CC="gcc" make scott/unscomp - ------------ [100] CC="gcc" make scott/volatilestruct ------------ - rm -f ./small2/volatilestruct.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall volatilestruct.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - volatilestruct.c \ - -ovolatilestruct.exe - - [100] A regression test command failed: - CC="gcc" make scott/volatilestruct - ------------ [101] CC="gcc" make scott/xcheckers ------------ - rm -f ./small2/xcheckers.exe - cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall xcheckers.c - cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ - xcheckers.c \ - -oxcheckers.exe - - [101] A regression test command failed: - CC="gcc" make scott/xcheckers - ------------ [102] CC="gcc" make test-bad/enuminit2 ------------ - cd ./small2; \ - CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ - CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ - CFLAGS="-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ - TESTBADONCE="" \ - _MSVC="" \ - bash ../test-bad enuminit2.c - CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn - CFLAGS=-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall - there are 1 failure cases in this file - - - ********************** Iteration 0 - - - generating test 0 - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enuminit2-tmp.c -o enuminit2-tmp.exe - The command failed! - The 0th iteration failed to CURE! It is supposed to succeed. - - [102] A regression test command failed: - CC="gcc" make test-bad/enuminit2 - ------------ [103] CC="gcc" make test-bad/trivial-tb ------------ - cd ./small2; \ - CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ - CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ - CFLAGS="-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ - TESTBADONCE="" \ - _MSVC="" \ - bash ../test-bad trivial-tb.c - CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn - CFLAGS=-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall - there are 4 failure cases in this file - - - ********************** Iteration 0 - - - generating test 0 - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall trivial-tb-tmp.c -o trivial-tb-tmp.exe - The command failed! - The 0th iteration failed to CURE! It is supposed to succeed. - - [103] A regression test command failed: - CC="gcc" make test-bad/trivial-tb - ------------ [104] CC="gcc" make test-bad1/flexible-array-member-bad ------------ - cd ./small1; \ - CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ - CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ - CFLAGS=" -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ - TESTBADONCE="" \ - _MSVC="" \ - bash ../test-bad flexible-array-member-bad.c - CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn - CFLAGS= -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall - there are 1 failure cases in this file - - - ********************** Iteration 0 - - - generating test 0 - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall flexible-array-member-bad-tmp.c -o flexible-array-member-bad-tmp.exe - The command failed! - The 0th iteration failed to CURE! It is supposed to succeed. - - [104] A regression test command failed: - CC="gcc" make test-bad1/flexible-array-member-bad - ------------ [105] CC="gcc" make test-bad1/wchar-bad ------------ - cd ./small1; \ - CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ - CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ - CFLAGS=" -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ - TESTBADONCE="" \ - _MSVC="" \ - bash ../test-bad wchar-bad.c - CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn - CFLAGS= -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall - there are 4 failure cases in this file - - - ********************** Iteration 0 - - - generating test 0 - /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall wchar-bad-tmp.c -o wchar-bad-tmp.exe - The command failed! - The 0th iteration failed to CURE! It is supposed to succeed. - - [105] A regression test command failed: - CC="gcc" make test-bad1/wchar-bad - ------------ [106] CC="gcc" make test/align3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o align3.s align3.c - - [106] A regression test command failed: - CC="gcc" make test/align3 - ------------ [107] CC="gcc" make test/apachebits ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o apachebits.s apachebits.c - - [107] A regression test command failed: - CC="gcc" make test/apachebits - ------------ [108] (fail) CC="gcc" make test/argcast ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o argcast.s argcast.c - ------------ [109] CC="gcc" make test/array-size-trick ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array-size-trick.s array-size-trick.c - - [109] A regression test command failed: - CC="gcc" make test/array-size-trick - ------------ [110] CC="gcc" make test/array1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array1.s array1.c - - [110] A regression test command failed: - CC="gcc" make test/array1 - ------------ [111] CC="gcc" make test/array2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array2.s array2.c - - [111] A regression test command failed: - CC="gcc" make test/array2 - ------------ [112] CC="gcc" make test/arrsize ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o arrsize.s arrsize.c - - [112] A regression test command failed: - CC="gcc" make test/arrsize - ------------ [113] CC="gcc" make test/asm2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm2.s asm2.c - - [113] A regression test command failed: - CC="gcc" make test/asm2 - ------------ [114] CC="gcc" make test/asm3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm3.s asm3.c - - [114] A regression test command failed: - CC="gcc" make test/asm3 - ------------ [115] CC="gcc" make test/asm4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm4.s asm4.c - - [115] A regression test command failed: - CC="gcc" make test/asm4 - ------------ [116] CC="gcc" make test/asm_emptyclobberallowed ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm_emptyclobberallowed.s asm_emptyclobberallowed.c - - [116] A regression test command failed: - CC="gcc" make test/asm_emptyclobberallowed - ------------ [117] CC="gcc" make test/attr10 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr10.s attr10.c - - [117] A regression test command failed: - CC="gcc" make test/attr10 - ------------ [118] CC="gcc" make test/attr11 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr11.s attr11.c - - [118] A regression test command failed: - CC="gcc" make test/attr11 - ------------ [119] CC="gcc" make test/attr12 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr12.s attr12.c - - [119] A regression test command failed: - CC="gcc" make test/attr12 - ------------ [120] CC="gcc" make test/attr13 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr13.s attr13.c - - [120] A regression test command failed: - CC="gcc" make test/attr13 - ------------ [121] CC="gcc" make test/attr2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr2.s attr2.c - - [121] A regression test command failed: - CC="gcc" make test/attr2 - ------------ [122] CC="gcc" make test/attr3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr3.s attr3.c - - [122] A regression test command failed: - CC="gcc" make test/attr3 - ------------ [123] CC="gcc" make test/attr6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr6.s attr6.c - - [123] A regression test command failed: - CC="gcc" make test/attr6 - ------------ [124] CC="gcc" make test/attr7 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr7.s attr7.c - - [124] A regression test command failed: - CC="gcc" make test/attr7 - ------------ [125] CC="gcc" make test/attr8 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr8.s attr8.c - - [125] A regression test command failed: - CC="gcc" make test/attr8 - ------------ [126] CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o attr9.s attr9.c - - [126] A regression test command failed: - CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 - ------------ [127] CC="gcc" make test/bitfield ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o bitfield.s bitfield.c - - [127] A regression test command failed: - CC="gcc" make test/bitfield - ------------ [128] (fail) CC="gcc" make test/break1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o break1.s break1.c - ------------ [129] CC="gcc" make test/builtin2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o builtin2.s builtin2.c - - [129] A regression test command failed: - CC="gcc" make test/builtin2 - ------------ [130] CC="gcc" make test/builtin5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o builtin5.s builtin5.c - - [130] A regression test command failed: - CC="gcc" make test/builtin5 - ------------ [131] CC="gcc" make test/cast1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast1.s cast1.c - - [131] A regression test command failed: - CC="gcc" make test/cast1 - ------------ [132] CC="gcc" make test/cast2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast2.s cast2.c - - [132] A regression test command failed: - CC="gcc" make test/cast2 - ------------ [133] CC="gcc" make test/cast4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast4.s cast4.c - - [133] A regression test command failed: - CC="gcc" make test/cast4 - ------------ [134] CC="gcc" make test/castcall ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o castcall.s castcall.c - - [134] A regression test command failed: - CC="gcc" make test/castcall - ------------ [135] CC="gcc" make test/castunion ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o castunion.s castunion.c - - [135] A regression test command failed: - CC="gcc" make test/castunion - ------------ [136] CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o const-struct-init.s const-struct-init.c - - [136] A regression test command failed: - CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 - ------------ [137] (fail) CC="gcc" make test/const13 WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o const13.s const13.c - ------------ [138] CC="gcc" make test/const14 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const14.s const14.c - - [138] A regression test command failed: - CC="gcc" make test/const14 - ------------ [139] CC="gcc" make test/const7 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const7.s const7.c - - [139] A regression test command failed: - CC="gcc" make test/const7 - ------------ [140] CC="gcc" make test/const9 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const9.s const9.c - - [140] A regression test command failed: - CC="gcc" make test/const9 - ------------ [141] CC="gcc" make test/constprop ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o constprop.s constprop.c - - [141] A regression test command failed: - CC="gcc" make test/constprop - ------------ [142] CC="gcc" make test/constrexpr ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o constrexpr.s constrexpr.c - - [142] A regression test command failed: - CC="gcc" make test/constrexpr - ------------ [143] (fail) CC="gcc" make test/cpp-2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cpp-2.s cpp-2.c - ------------ [144] CC="gcc" make test/cpp-3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cpp-3.s cpp-3.c - - [144] A regression test command failed: - CC="gcc" make test/cpp-3 - ------------ [145] (fail) CC="gcc" make test/decl2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o decl2.s decl2.c - ------------ [146] CC="gcc" make test/deref ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o deref.s deref.c - - [146] A regression test command failed: - CC="gcc" make test/deref - ------------ [147] CC="gcc" make test/duplicate ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o duplicate.s duplicate.c - - [147] A regression test command failed: - CC="gcc" make test/duplicate - ------------ [148] CC="gcc" make test/enum ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o enum.s enum.c - - [148] A regression test command failed: - CC="gcc" make test/enum - ------------ [149] CC="gcc" make test/enum-scope ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o enum-scope.s enum-scope.c - - [149] A regression test command failed: - CC="gcc" make test/enum-scope - ------------ [150] CC="gcc" make test/extinline3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o extinline3.s extinline3.c - - [150] A regression test command failed: - CC="gcc" make test/extinline3 - ------------ [151] CC="gcc" make test/func ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o func.s func.c - - [151] A regression test command failed: - CC="gcc" make test/func - ------------ [152] (fail) CC="gcc" make test/func10 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o func10.s func10.c - ------------ [153] (fail) CC="gcc" make test/funcarg ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o funcarg.s funcarg.c - ------------ [154] CC="gcc" make test/globals ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o globals.s globals.c - - [154] A regression test command failed: - CC="gcc" make test/globals - ------------ [155] (fail) CC="gcc" make test/globals2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o globals2.s globals2.c - ------------ [156] CC="gcc" make test/huff1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o huff1.s huff1.c - - [156] A regression test command failed: - CC="gcc" make test/huff1 - ------------ [157] CC="gcc" make test/init ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o init.s init.c - - [157] A regression test command failed: - CC="gcc" make test/init - ------------ [158] CC="gcc" make test/init8 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o init8.s init8.c - - [158] A regression test command failed: - CC="gcc" make test/init8 - ------------ [159] CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o initial.s initial.c - - [159] A regression test command failed: - CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 - ------------ [160] CC="gcc" make test/inline3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o inline3.s inline3.c - - [160] A regression test command failed: - CC="gcc" make test/inline3 - ------------ [161] CC="gcc" make test/jmp_buf ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o jmp_buf.s jmp_buf.c - - [161] A regression test command failed: - CC="gcc" make test/jmp_buf - ------------ [162] CC="gcc" make test/label5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label5.s label5.c - - [162] A regression test command failed: - CC="gcc" make test/label5 - ------------ [163] CC="gcc" make test/label7 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label7.s label7.c - - [163] A regression test command failed: - CC="gcc" make test/label7 - ------------ [164] CC="gcc" make test/label8 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label8.s label8.c - - [164] A regression test command failed: - CC="gcc" make test/label8 - ------------ [165] CC="gcc" make test/label9 EXTRAARGS=--domakeCFG ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label9.s label9.c - - [165] A regression test command failed: - CC="gcc" make test/label9 EXTRAARGS=--domakeCFG - ------------ [166] CC="gcc" make test/li ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o li.s li.c - - [166] A regression test command failed: - CC="gcc" make test/li - ------------ [167] CC="gcc" make test/linux_atomic ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o linux_atomic.s linux_atomic.c - - [167] A regression test command failed: - CC="gcc" make test/linux_atomic - ------------ [168] CC="gcc" make test/linuxcombine1_1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o linuxcombine1_1.s linuxcombine1_1.c - - [168] A regression test command failed: - CC="gcc" make test/linuxcombine1_1 - ------------ [169] CC="gcc" make test/list ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o list.s list.c - - [169] A regression test command failed: - CC="gcc" make test/list - ------------ [170] CC="gcc" make test/matrix ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o matrix.s matrix.c - - [170] A regression test command failed: - CC="gcc" make test/matrix - ------------ [171] CC="gcc" make test/noreturn ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o noreturn.s noreturn.c - - [171] A regression test command failed: - CC="gcc" make test/noreturn - ------------ [172] CC="gcc" make test/outofmem ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o outofmem.s outofmem.c - - [172] A regression test command failed: - CC="gcc" make test/outofmem - ------------ [173] CC="gcc" make test/packed2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o packed2.s packed2.c - - [173] A regression test command failed: - CC="gcc" make test/packed2 - ------------ [174] CC="gcc" make test/power1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o power1.s power1.c - - [174] A regression test command failed: - CC="gcc" make test/power1 - ------------ [175] CC="gcc" make test/printf ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o printf.s printf.c - - [175] A regression test command failed: - CC="gcc" make test/printf - ------------ [176] CC="gcc" make test/printf_const ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o printf_const.s printf_const.c - - [176] A regression test command failed: - CC="gcc" make test/printf_const - ------------ [177] (fail) CC="gcc" make test/proto1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o proto1.s proto1.c - ------------ [178] (fail) CC="gcc" make test/proto2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o proto2.s proto2.c - ------------ [179] CC="gcc" make test/pure ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o pure.s pure.c - - [179] A regression test command failed: - CC="gcc" make test/pure - ------------ [180] CC="gcc" make test/restrict EXTRAARGS=-std=c9x ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps -std=c9x --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o restrict.s restrict.c - - [180] A regression test command failed: - CC="gcc" make test/restrict EXTRAARGS=-std=c9x - ------------ [181] CC="gcc" make test/restrict1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o restrict1.s restrict1.c - - [181] A regression test command failed: - CC="gcc" make test/restrict1 - ------------ [182] CC="gcc" make test/retval ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o retval.s retval.c - - [182] A regression test command failed: - CC="gcc" make test/retval - ------------ [183] CC="gcc" make test/scope12 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope12.s scope12.c - - [183] A regression test command failed: - CC="gcc" make test/scope12 - ------------ [184] CC="gcc" make test/scope2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope2.s scope2.c - - [184] A regression test command failed: - CC="gcc" make test/scope2 - ------------ [185] (fail) CC="gcc" make test/scope3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope3.s scope3.c - ------------ [186] CC="gcc" make test/scope4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope4.s scope4.c - - [186] A regression test command failed: - CC="gcc" make test/scope4 - ------------ [187] CC="gcc" make test/shell-escape SHELL_ESCAPE=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG "-DSTDIO=" '-DTEST="testharness.h"' -S -o shell-escape.s shell-escape.c - - [187] A regression test command failed: - CC="gcc" make test/shell-escape SHELL_ESCAPE=1 - ------------ [188] (fail) CC="gcc" make test/sizeof3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sizeof3.s sizeof3.c - ------------ [189] CC="gcc" make test/static ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o static.s static.c - - [189] A regression test command failed: - CC="gcc" make test/static - ------------ [190] CC="gcc" make test/static1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o static1.s static1.c - - [190] A regression test command failed: - CC="gcc" make test/static1 - ------------ [191] CC="gcc" make test/strcpy ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o strcpy.s strcpy.c - - [191] A regression test command failed: - CC="gcc" make test/strcpy - ------------ [192] CC="gcc" make test/struct_init ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o struct_init.s struct_init.c - - [192] A regression test command failed: - CC="gcc" make test/struct_init - ------------ [193] CC="gcc" make test/structassign ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o structassign.s structassign.c - - [193] A regression test command failed: - CC="gcc" make test/structassign - ------------ [194] (fail) CC="gcc" make test/switch_default_parse_bug ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o switch_default_parse_bug.s switch_default_parse_bug.c - ------------ [195] CC="gcc" make test/sync-1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-1.s sync-1.c - - [195] A regression test command failed: - CC="gcc" make test/sync-1 - ------------ [196] CC="gcc" make test/sync-2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-2.s sync-2.c - - [196] A regression test command failed: - CC="gcc" make test/sync-2 - ------------ [197] CC="gcc" make test/sync-3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-3.s sync-3.c - - [197] A regression test command failed: - CC="gcc" make test/sync-3 - ------------ [198] CC="gcc" make test/tags ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o tags.s tags.c - - [198] A regression test command failed: - CC="gcc" make test/tags - ------------ [199] CC="gcc" make test/task ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o task.s task.c - - [199] A regression test command failed: - CC="gcc" make test/task - ------------ [200] CC="gcc" make test/unimplemented ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o unimplemented.s unimplemented.c - - [200] A regression test command failed: - CC="gcc" make test/unimplemented - ------------ [201] CC="gcc" make test/union5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o union5.s union5.c - - [201] A regression test command failed: - CC="gcc" make test/union5 - ------------ [202] CC="gcc" make test/va_arg_pack ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o va_arg_pack.s va_arg_pack.c - - [202] A regression test command failed: - CC="gcc" make test/va_arg_pack - ------------ [203] CC="gcc" make test/vararg7 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o vararg7.s vararg7.c - - [203] A regression test command failed: - CC="gcc" make test/vararg7 - ------------ [204] CC="gcc" make test/voidstar ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o voidstar.s voidstar.c - - [204] A regression test command failed: - CC="gcc" make test/voidstar - ------------ [205] CC="gcc" make test/voidtypedef ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o voidtypedef.s voidtypedef.c - - [205] A regression test command failed: - CC="gcc" make test/voidtypedef - ------------ [206] CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o warnings-cast.s warnings-cast.c - - [206] A regression test command failed: - CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 - ------------ [207] CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o warnings-noreturn.s warnings-noreturn.c - - [207] A regression test command failed: - CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 - ------------ [208] CC="gcc" make test_i/empty ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o empty.s empty.i - - [208] A regression test command failed: - CC="gcc" make test_i/empty - ------------ [209] CC="gcc" make test_i/lineno ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o lineno.s lineno.i - - [209] A regression test command failed: - CC="gcc" make test_i/lineno - ------------ [210] CC="gcc" make testc11/alignas ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oalignas.exe alignas.c -lm - - [210] A regression test command failed: - CC="gcc" make testc11/alignas - ------------ [211] (fail) CC="gcc" make testc11/clang-c11-generic-1-1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-1-1.exe clang-c11-generic-1-1.c -lm - ------------ [212] (fail) CC="gcc" make testc11/clang-c11-generic-1-2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-1-2.exe clang-c11-generic-1-2.c -lm - ------------ [213] CC="gcc" make testc11/clang-c11-generic-2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-2.exe clang-c11-generic-2.c -lm - - [213] A regression test command failed: - CC="gcc" make testc11/clang-c11-generic-2 - ------------ [214] (fail) CC="gcc" make testc11/gcc-c11-generic-2-1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-2-1.exe gcc-c11-generic-2-1.c -lm - ------------ [215] (fail) CC="gcc" make testc11/gcc-c11-generic-2-7 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-2-7.exe gcc-c11-generic-2-7.c -lm - ------------ [216] CC="gcc" make testc11/gcc-c11-generic-3-1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-1.exe gcc-c11-generic-3-1.c -lm - - [216] A regression test command failed: - CC="gcc" make testc11/gcc-c11-generic-3-1 - ------------ [217] (fail) CC="gcc" make testc11/gcc-c11-generic-3-2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-2.exe gcc-c11-generic-3-2.c -lm - ------------ [218] (fail) CC="gcc" make testc11/gcc-c11-generic-3-3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-3.exe gcc-c11-generic-3-3.c -lm - ------------ [219] (fail) CC="gcc" make testc11/gcc-c11-generic-3-4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-4.exe gcc-c11-generic-3-4.c -lm - ------------ [220] CC="gcc" make testobj/asm5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -oasm5.o asm5.c - - [220] A regression test command failed: - CC="gcc" make testobj/asm5 - ------------ [221] CC="gcc" make testrun/addr-array ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddr-array.exe addr-array.c - - [221] A regression test command failed: - CC="gcc" make testrun/addr-array - ------------ [222] CC="gcc" make testrun/addr-string ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddr-string.exe addr-string.c - - [222] A regression test command failed: - CC="gcc" make testrun/addr-string - ------------ [223] CC="gcc" make testrun/addrof3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddrof3.exe addrof3.c - - [223] A regression test command failed: - CC="gcc" make testrun/addrof3 - ------------ [224] CC="gcc" make testrun/align1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oalign1.exe align1.c - - [224] A regression test command failed: - CC="gcc" make testrun/align1 - ------------ [225] CC="gcc" make testrun/align2 EXTRAARGS=-O2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps -O2 --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oalign2.exe align2.c - - [225] A regression test command failed: - CC="gcc" make testrun/align2 EXTRAARGS=-O2 - ------------ [226] CC="gcc" make testrun/apachebuf ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oapachebuf.exe apachebuf.c - - [226] A regression test command failed: - CC="gcc" make testrun/apachebuf - ------------ [227] CC="gcc" make testrun/apachefptr ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oapachefptr.exe apachefptr.c - - [227] A regression test command failed: - CC="gcc" make testrun/apachefptr - ------------ [228] CC="gcc" make testrun/array_formal ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_formal.exe array_formal.c - - [228] A regression test command failed: - CC="gcc" make testrun/array_formal - ------------ [229] (fail) CC="gcc" make testrun/array_multi_varsize ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_multi_varsize.exe array_multi_varsize.c - ------------ [230] CC="gcc" make testrun/array_varsize ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_varsize.exe array_varsize.c - - [230] A regression test command failed: - CC="gcc" make testrun/array_varsize - ------------ [231] CC="gcc" make testrun/arrayinitsize ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarrayinitsize.exe arrayinitsize.c - - [231] A regression test command failed: - CC="gcc" make testrun/arrayinitsize - ------------ [232] CC="gcc" make testrun/asm1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oasm1.exe asm1.c - - [232] A regression test command failed: - CC="gcc" make testrun/asm1 - ------------ [233] CC="gcc" make testrun/assign ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oassign.exe assign.c - - [233] A regression test command failed: - CC="gcc" make testrun/assign - ------------ [234] CC="gcc" make testrun/attr-in-decllist ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oattr-in-decllist.exe attr-in-decllist.c - - [234] A regression test command failed: - CC="gcc" make testrun/attr-in-decllist - ------------ [235] CC="gcc" make testrun/attr4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oattr4.exe attr4.c - - [235] A regression test command failed: - CC="gcc" make testrun/attr4 - ------------ [236] CC="gcc" make testrun/attr5 ------------ - This Makefile is intended to be run with an explicit target. - ------------ [237] CC="gcc" make testrun/bitfield2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obitfield2.exe bitfield2.c - - [237] A regression test command failed: - CC="gcc" make testrun/bitfield2 - ------------ [238] CC="gcc" make testrun/bitfield3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obitfield3.exe bitfield3.c - - [238] A regression test command failed: - CC="gcc" make testrun/bitfield3 - ------------ [239] CC="gcc" make testrun/blockattr2 USECFG=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --domakeCFG --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oblockattr2.exe blockattr2.c - - [239] A regression test command failed: - CC="gcc" make testrun/blockattr2 USECFG=1 - ------------ [240] CC="gcc" make testrun/bool ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obool.exe bool.c - - [240] A regression test command failed: - CC="gcc" make testrun/bool - ------------ [241] CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obooleanOp.exe booleanOp.c - - [241] A regression test command failed: - CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 - ------------ [242] CC="gcc" make testrun/builtin ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin.exe builtin.c - - [242] A regression test command failed: - CC="gcc" make testrun/builtin - ------------ [243] CC="gcc" make testrun/builtin3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin3.exe builtin3.c - - [243] A regression test command failed: - CC="gcc" make testrun/builtin3 - ------------ [244] CC="gcc" make testrun/builtin4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin4.exe builtin4.c - - [244] A regression test command failed: - CC="gcc" make testrun/builtin4 - ------------ [245] CC="gcc" make testrun/builtin_choose_expr ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin_choose_expr.exe builtin_choose_expr.c - - [245] A regression test command failed: - CC="gcc" make testrun/builtin_choose_expr - ------------ [246] CC="gcc" make testrun/call2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocall2.exe call2.c - - [246] A regression test command failed: - CC="gcc" make testrun/call2 - ------------ [247] CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocase_then_default_in_switch.exe case_then_default_in_switch.c - - [247] A regression test command failed: - CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG - ------------ [248] CC="gcc" make testrun/caserange ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocaserange.exe caserange.c - - [248] A regression test command failed: - CC="gcc" make testrun/caserange - ------------ [249] CC="gcc" make testrun/cast8 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocast8.exe cast8.c - - [249] A regression test command failed: - CC="gcc" make testrun/cast8 - ------------ [250] CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -ocastincr.exe castincr.c - - [250] A regression test command failed: - CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 - ------------ [251] CC="gcc" make testrun/comma1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocomma1.exe comma1.c - - [251] A regression test command failed: - CC="gcc" make testrun/comma1 - ------------ [252] CC="gcc" make testrun/comparisons ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocomparisons.exe comparisons.c - - [252] A regression test command failed: - CC="gcc" make testrun/comparisons - ------------ [253] (fail) CC="gcc" make testrun/compound1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocompound1.exe compound1.c - ------------ [254] CC="gcc" make testrun/compound2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocompound2.exe compound2.c - - [254] A regression test command failed: - CC="gcc" make testrun/compound2 - ------------ [255] CC="gcc" make testrun/cond1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocond1.exe cond1.c - - [255] A regression test command failed: - CC="gcc" make testrun/cond1 - ------------ [256] CC="gcc" make testrun/cond2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocond2.exe cond2.c - - [256] A regression test command failed: - CC="gcc" make testrun/cond2 - ------------ [257] CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oconst-array-init.exe const-array-init.c - - [257] A regression test command failed: - CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 - ------------ [258] CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oconst-struct-init.exe const-struct-init.c - - [258] A regression test command failed: - CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 - ------------ [259] CC="gcc" make testrun/const1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst1.exe const1.c - - [259] A regression test command failed: - CC="gcc" make testrun/const1 - ------------ [260] CC="gcc" make testrun/const10 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst10.exe const10.c - - [260] A regression test command failed: - CC="gcc" make testrun/const10 - ------------ [261] CC="gcc" make testrun/const11 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst11.exe const11.c - - [261] A regression test command failed: - CC="gcc" make testrun/const11 - ------------ [262] CC="gcc" make testrun/const12 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst12.exe const12.c - - [262] A regression test command failed: - CC="gcc" make testrun/const12 - ------------ [263] CC="gcc" make testrun/const15 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst15.exe const15.c - - [263] A regression test command failed: - CC="gcc" make testrun/const15 - ------------ [264] CC="gcc" make testrun/const16 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst16.exe const16.c - - [264] A regression test command failed: - CC="gcc" make testrun/const16 - ------------ [265] CC="gcc" make testrun/const2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst2.exe const2.c - - [265] A regression test command failed: - CC="gcc" make testrun/const2 - ------------ [266] CC="gcc" make testrun/const3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst3.exe const3.c - - [266] A regression test command failed: - CC="gcc" make testrun/const3 - ------------ [267] CC="gcc" make testrun/const4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst4.exe const4.c - - [267] A regression test command failed: - CC="gcc" make testrun/const4 - ------------ [268] CC="gcc" make testrun/const5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst5.exe const5.c - - [268] A regression test command failed: - CC="gcc" make testrun/const5 - ------------ [269] CC="gcc" make testrun/const6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst6.exe const6.c - - [269] A regression test command failed: - CC="gcc" make testrun/const6 - ------------ [270] CC="gcc" make testrun/const8 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst8.exe const8.c - - [270] A regression test command failed: - CC="gcc" make testrun/const8 - ------------ [271] (fail) CC="gcc" make testrun/constfold EXTRAARGS="--domakeCFG --dopartial" ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --dopartial --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconstfold.exe constfold.c - ------------ [272] (fail) CC="gcc" make testrun/constfold2 EXTRAARGS="--domakeCFG -Wall -Wshift-overflow=3 -Werror" ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG -Wall -Wshift-overflow=3 -Werror --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconstfold2.exe constfold2.c - ------------ [273] CC="gcc" make testrun/decl_mix_stmt ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -odecl_mix_stmt.exe decl_mix_stmt.c - - [273] A regression test command failed: - CC="gcc" make testrun/decl_mix_stmt - ------------ [274] CC="gcc" make testrun/enum2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oenum2.exe enum2.c - - [274] A regression test command failed: - CC="gcc" make testrun/enum2 - ------------ [275] CC="gcc" make testrun/escapes ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oescapes.exe escapes.c - - [275] A regression test command failed: - CC="gcc" make testrun/escapes - ------------ [276] CC="gcc" make testrun/extern1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oextern1.exe extern1.c - - [276] A regression test command failed: - CC="gcc" make testrun/extern1 - ------------ [277] CC="gcc" make testrun/extinline2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oextinline2.exe extinline2.c - - [277] A regression test command failed: - CC="gcc" make testrun/extinline2 - ------------ [278] CC="gcc" make testrun/fallthrough-label ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofallthrough-label.exe fallthrough-label.c - - [278] A regression test command failed: - CC="gcc" make testrun/fallthrough-label - ------------ [279] CC="gcc" make testrun/flexible-array-member ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oflexible-array-member.exe flexible-array-member.c - - [279] A regression test command failed: - CC="gcc" make testrun/flexible-array-member - ------------ [280] CC="gcc" make testrun/float ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofloat.exe float.c - - [280] A regression test command failed: - CC="gcc" make testrun/float - ------------ [281] CC="gcc" make testrun/float2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofloat2.exe float2.c - - [281] A regression test command failed: - CC="gcc" make testrun/float2 - ------------ [282] CC="gcc" make testrun/for1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofor1.exe for1.c - - [282] A regression test command failed: - CC="gcc" make testrun/for1 - ------------ [283] CC="gcc" make testrun/formalscope ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oformalscope.exe formalscope.c - - [283] A regression test command failed: - CC="gcc" make testrun/formalscope - ------------ [284] CC="gcc" make testrun/func2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc2.exe func2.c - - [284] A regression test command failed: - CC="gcc" make testrun/func2 - ------------ [285] CC="gcc" make testrun/func3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc3.exe func3.c - - [285] A regression test command failed: - CC="gcc" make testrun/func3 - ------------ [286] CC="gcc" make testrun/func4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc4.exe func4.c - - [286] A regression test command failed: - CC="gcc" make testrun/func4 - ------------ [287] CC="gcc" make testrun/funptr1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunptr1.exe funptr1.c - - [287] A regression test command failed: - CC="gcc" make testrun/funptr1 - ------------ [288] CC="gcc" make testrun/init ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit.exe init.c - - [288] A regression test command failed: - CC="gcc" make testrun/init - ------------ [289] CC="gcc" make testrun/init1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit1.exe init1.c - - [289] A regression test command failed: - CC="gcc" make testrun/init1 - ------------ [290] CC="gcc" make testrun/init10 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit10.exe init10.c - - [290] A regression test command failed: - CC="gcc" make testrun/init10 - ------------ [291] CC="gcc" make testrun/init11 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit11.exe init11.c - - [291] A regression test command failed: - CC="gcc" make testrun/init11 - ------------ [292] CC="gcc" make testrun/init12 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit12.exe init12.c - - [292] A regression test command failed: - CC="gcc" make testrun/init12 - ------------ [293] CC="gcc" make testrun/init13 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit13.exe init13.c - - [293] A regression test command failed: - CC="gcc" make testrun/init13 - ------------ [294] CC="gcc" make testrun/init14 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit14.exe init14.c - - [294] A regression test command failed: - CC="gcc" make testrun/init14 - ------------ [295] CC="gcc" make testrun/init15 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit15.exe init15.c - - [295] A regression test command failed: - CC="gcc" make testrun/init15 - ------------ [296] CC="gcc" make testrun/init16 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit16.exe init16.c - - [296] A regression test command failed: - CC="gcc" make testrun/init16 - ------------ [297] CC="gcc" make testrun/init17 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit17.exe init17.c - - [297] A regression test command failed: - CC="gcc" make testrun/init17 - ------------ [298] CC="gcc" make testrun/init18 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit18.exe init18.c - - [298] A regression test command failed: - CC="gcc" make testrun/init18 - ------------ [299] CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oinit19.exe init19.c - - [299] A regression test command failed: - CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 - ------------ [300] CC="gcc" make testrun/init2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit2.exe init2.c - - [300] A regression test command failed: - CC="gcc" make testrun/init2 - ------------ [301] CC="gcc" make testrun/init20 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit20.exe init20.c - - [301] A regression test command failed: - CC="gcc" make testrun/init20 - ------------ [302] CC="gcc" make testrun/init21 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit21.exe init21.c - - [302] A regression test command failed: - CC="gcc" make testrun/init21 - ------------ [303] CC="gcc" make testrun/init22 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit22.exe init22.c - - [303] A regression test command failed: - CC="gcc" make testrun/init22 - ------------ [304] CC="gcc" make testrun/init3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit3.exe init3.c - - [304] A regression test command failed: - CC="gcc" make testrun/init3 - ------------ [305] CC="gcc" make testrun/init4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit4.exe init4.c - - [305] A regression test command failed: - CC="gcc" make testrun/init4 - ------------ [306] CC="gcc" make testrun/init5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit5.exe init5.c - - [306] A regression test command failed: - CC="gcc" make testrun/init5 - ------------ [307] CC="gcc" make testrun/init6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit6.exe init6.c - - [307] A regression test command failed: - CC="gcc" make testrun/init6 - ------------ [308] CC="gcc" make testrun/init9 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit9.exe init9.c - - [308] A regression test command failed: - CC="gcc" make testrun/init9 - ------------ [309] CC="gcc" make testrun/initial ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinitial.exe initial.c - - [309] A regression test command failed: - CC="gcc" make testrun/initial - ------------ [310] (fail) CC="gcc" make testrun/inline1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinline1.exe inline1.c - ------------ [311] CC="gcc" make testrun/inline2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinline2.exe inline2.c - - [311] A regression test command failed: - CC="gcc" make testrun/inline2 - ------------ [312] CC="gcc" make testrun/label1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [312] A regression test command failed: - CC="gcc" make testrun/label1 - ------------ [313] CC="gcc" make testrun/label2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [313] A regression test command failed: - CC="gcc" make testrun/label2 - ------------ [314] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [314] A regression test command failed: - CC="gcc" make testrun/label2b COMPUTEDGOTO=1 - ------------ [315] CC="gcc" make testrun/label3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [315] A regression test command failed: - CC="gcc" make testrun/label3 - ------------ [316] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [316] A regression test command failed: - CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 - ------------ [317] CC="gcc" make testrun/label4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [317] A regression test command failed: - CC="gcc" make testrun/label4 - ------------ [318] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [318] A regression test command failed: - CC="gcc" make testrun/label4b COMPUTEDGOTO=1 - ------------ [319] CC="gcc" make testrun/label6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [319] A regression test command failed: - CC="gcc" make testrun/label6 - ------------ [320] CC="gcc" make testrun/land_expr ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [320] A regression test command failed: - CC="gcc" make testrun/land_expr - ------------ [321] CC="gcc" make testrun/large_unsigned_long ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [321] A regression test command failed: - CC="gcc" make testrun/large_unsigned_long - ------------ [322] CC="gcc" make testrun/linux_signal ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [322] A regression test command failed: - CC="gcc" make testrun/linux_signal - ------------ [323] CC="gcc" make testrun/localinit ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [323] A regression test command failed: - CC="gcc" make testrun/localinit - ------------ [324] CC="gcc" make testrun/logical ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [324] A regression test command failed: - CC="gcc" make testrun/logical - ------------ [325] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [325] A regression test command failed: - CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 - ------------ [326] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [326] A regression test command failed: - CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 - ------------ [327] CC="gcc" make testrun/longBlock ------------ - ocamlfind ocamlc -I /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../../install/default/lib/goblint-cil -I /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [328] CC="gcc" make testrun/lval1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [328] A regression test command failed: - CC="gcc" make testrun/lval1 - ------------ [329] CC="gcc" make testrun/macro_hidden ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [329] A regression test command failed: - CC="gcc" make testrun/macro_hidden - ------------ [330] CC="gcc" make testrun/math1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [330] A regression test command failed: - CC="gcc" make testrun/math1 - ------------ [331] CC="gcc" make testrun/memcpy1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [331] A regression test command failed: - CC="gcc" make testrun/memcpy1 - ------------ [332] CC="gcc" make testrun/min ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [332] A regression test command failed: - CC="gcc" make testrun/min - ------------ [333] CC="gcc" make testrun/msvc1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [333] A regression test command failed: - CC="gcc" make testrun/msvc1 - ------------ [334] CC="gcc" make testrun/msvc5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [334] A regression test command failed: - CC="gcc" make testrun/msvc5 - ------------ [335] CC="gcc" make testrun/nan-global ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [335] A regression test command failed: - CC="gcc" make testrun/nan-global - ------------ [336] CC="gcc" make testrun/offsetof ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [336] A regression test command failed: - CC="gcc" make testrun/offsetof - ------------ [337] CC="gcc" make testrun/offsetof1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [337] A regression test command failed: - CC="gcc" make testrun/offsetof1 - ------------ [338] CC="gcc" make testrun/offsetof2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [338] A regression test command failed: - CC="gcc" make testrun/offsetof2 - ------------ [339] CC="gcc" make testrun/offsetof3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [339] A regression test command failed: - CC="gcc" make testrun/offsetof3 - ------------ [340] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [340] A regression test command failed: - CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 - ------------ [341] CC="gcc" make testrun/percent400 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [341] A regression test command failed: - CC="gcc" make testrun/percent400 - ------------ [342] CC="gcc" make testrun/percentm ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [342] A regression test command failed: - CC="gcc" make testrun/percentm - ------------ [343] CC="gcc" make testrun/perror ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [343] A regression test command failed: - CC="gcc" make testrun/perror - ------------ [344] CC="gcc" make testrun/perror1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [344] A regression test command failed: - CC="gcc" make testrun/perror1 - ------------ [345] (fail) CC="gcc" make testrun/post-assign ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [346] CC="gcc" make testrun/printf2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [346] A regression test command failed: - CC="gcc" make testrun/printf2 - ------------ [347] CC="gcc" make testrun/question ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [347] A regression test command failed: - CC="gcc" make testrun/question - ------------ [348] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [348] A regression test command failed: - CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 - ------------ [349] CC="gcc" make testrun/question2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [349] A regression test command failed: - CC="gcc" make testrun/question2 - ------------ [350] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [350] A regression test command failed: - CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 - ------------ [351] CC="gcc" make testrun/return1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [351] A regression test command failed: - CC="gcc" make testrun/return1 - ------------ [352] CC="gcc" make testrun/returnvoid ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [352] A regression test command failed: - CC="gcc" make testrun/returnvoid - ------------ [353] CC="gcc" make testrun/returnvoid1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [353] A regression test command failed: - CC="gcc" make testrun/returnvoid1 - ------------ [354] (fail) CC="gcc" make testrun/rmtmps-attr ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps-attr.exe rmtmps-attr.c - ------------ [355] CC="gcc" make testrun/rmtmps1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps1.exe rmtmps1.c - - [355] A regression test command failed: - CC="gcc" make testrun/rmtmps1 - ------------ [356] CC="gcc" make testrun/rmtmps2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ - -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps2.exe rmtmps2.c - - [356] A regression test command failed: - CC="gcc" make testrun/rmtmps2 - ------------ [357] CC="gcc" make testrun/scope1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [357] A regression test command failed: - CC="gcc" make testrun/scope1 - ------------ [358] CC="gcc" make testrun/scope10 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [358] A regression test command failed: - CC="gcc" make testrun/scope10 - ------------ [359] CC="gcc" make testrun/scope11 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [359] A regression test command failed: - CC="gcc" make testrun/scope11 - ------------ [360] CC="gcc" make testrun/scope5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [360] A regression test command failed: - CC="gcc" make testrun/scope5 - ------------ [361] CC="gcc" make testrun/scope6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [361] A regression test command failed: - CC="gcc" make testrun/scope6 - ------------ [362] CC="gcc" make testrun/scope8 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [362] A regression test command failed: - CC="gcc" make testrun/scope8 - ------------ [363] CC="gcc" make testrun/scope9 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [363] A regression test command failed: - CC="gcc" make testrun/scope9 - ------------ [364] CC="gcc" make testrun/semicolon ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [364] A regression test command failed: - CC="gcc" make testrun/semicolon - ------------ [365] CC="gcc" make testrun/simon6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [365] A regression test command failed: - CC="gcc" make testrun/simon6 - ------------ [366] CC="gcc" make testrun/sizeof1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [366] A regression test command failed: - CC="gcc" make testrun/sizeof1 - ------------ [367] CC="gcc" make testrun/sizeof2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [367] A regression test command failed: - CC="gcc" make testrun/sizeof2 - ------------ [368] CC="gcc" make testrun/static ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [368] A regression test command failed: - CC="gcc" make testrun/static - ------------ [369] CC="gcc" make testrun/static2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [369] A regression test command failed: - CC="gcc" make testrun/static2 - ------------ [370] CC="gcc" make testrun/stringsize ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [370] A regression test command failed: - CC="gcc" make testrun/stringsize - ------------ [371] CC="gcc" make testrun/strloop ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [371] A regression test command failed: - CC="gcc" make testrun/strloop - ------------ [372] CC="gcc" make testrun/strloop3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [372] A regression test command failed: - CC="gcc" make testrun/strloop3 - ------------ [373] CC="gcc" make testrun/struct1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [373] A regression test command failed: - CC="gcc" make testrun/struct1 - ------------ [374] CC="gcc" make testrun/typeof1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [374] A regression test command failed: - CC="gcc" make testrun/typeof1 - ------------ [375] (fail) CC="gcc" make testrun/typespec1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [376] CC="gcc" make testrun/union2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [376] A regression test command failed: - CC="gcc" make testrun/union2 - ------------ [377] CC="gcc" make testrun/union3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [377] A regression test command failed: - CC="gcc" make testrun/union3 - ------------ [378] (fail) CC="gcc" make testrun/union6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [379] CC="gcc" make testrun/va-arg-1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [379] A regression test command failed: - CC="gcc" make testrun/va-arg-1 - ------------ [380] CC="gcc" make testrun/va-arg-2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [380] A regression test command failed: - CC="gcc" make testrun/va-arg-2 - ------------ [381] CC="gcc" make testrun/va-arg-7 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [381] A regression test command failed: - CC="gcc" make testrun/va-arg-7 - ------------ [382] CC="gcc" make testrun/var_named_hidden ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [382] A regression test command failed: - CC="gcc" make testrun/var_named_hidden - ------------ [383] CC="gcc" make testrun/vararg1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [383] A regression test command failed: - CC="gcc" make testrun/vararg1 - ------------ [384] CC="gcc" make testrun/vararg2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [384] A regression test command failed: - CC="gcc" make testrun/vararg2 - ------------ [385] CC="gcc" make testrun/vararg3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [385] A regression test command failed: - CC="gcc" make testrun/vararg3 - ------------ [386] CC="gcc" make testrun/vararg4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [386] A regression test command failed: - CC="gcc" make testrun/vararg4 - ------------ [387] CC="gcc" make testrun/vararg5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [387] A regression test command failed: - CC="gcc" make testrun/vararg5 - ------------ [388] CC="gcc" make testrun/vararg6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [388] A regression test command failed: - CC="gcc" make testrun/vararg6 - ------------ [389] CC="gcc" make testrun/varargauto1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [389] A regression test command failed: - CC="gcc" make testrun/varargauto1 - ------------ [390] CC="gcc" make testrun/void ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [390] A regression test command failed: - CC="gcc" make testrun/void - ------------ [391] CC="gcc" make testrun/voidarg ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [391] A regression test command failed: - CC="gcc" make testrun/voidarg - ------------ [392] CC="gcc" make testrun/vsp ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [392] A regression test command failed: - CC="gcc" make testrun/vsp - ------------ [393] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [393] A regression test command failed: - CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 - ------------ [394] CC="gcc" make testrun/wchar1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [394] A regression test command failed: - CC="gcc" make testrun/wchar1 - ------------ [395] CC="gcc" make testrun/wchar2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [395] A regression test command failed: - CC="gcc" make testrun/wchar2 - ------------ [396] CC="gcc" make testrun/wchar3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [396] A regression test command failed: - CC="gcc" make testrun/wchar3 - ------------ [397] CC="gcc" make testrun/wchar4 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [397] A regression test command failed: - CC="gcc" make testrun/wchar4 - ------------ [398] CC="gcc" make testrun/wchar5 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [398] A regression test command failed: - CC="gcc" make testrun/wchar5 - ------------ [399] CC="gcc" make testrun/wchar6 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [399] A regression test command failed: - CC="gcc" make testrun/wchar6 - ------------ [400] CC="gcc" make testrun/wchar7 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [400] A regression test command failed: - CC="gcc" make testrun/wchar7 - ------------ [401] (fail) CC="gcc" make testrun/wrongnumargs ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [402] CC="gcc" make testrunc11/c11-align-of ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [402] A regression test command failed: - CC="gcc" make testrunc11/c11-align-of - ------------ [403] CC="gcc" make testrunc11/c11-atomic ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [403] A regression test command failed: - CC="gcc" make testrunc11/c11-atomic - ------------ [404] CC="gcc" make testrunc11/c11-atomic-store ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [404] A regression test command failed: - CC="gcc" make testrunc11/c11-atomic-store - ------------ [405] CC="gcc" make testrunc11/c11-caserange ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [405] A regression test command failed: - CC="gcc" make testrunc11/c11-caserange - ------------ [406] CC="gcc" make testrunc11/c11-extendedFloat ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [406] A regression test command failed: - CC="gcc" make testrunc11/c11-extendedFloat - ------------ [407] CC="gcc" make testrunc11/c11-generic ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [407] A regression test command failed: - CC="gcc" make testrunc11/c11-generic - ------------ [408] CC="gcc" make testrunc11/c11-noreturn ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [408] A regression test command failed: - CC="gcc" make testrunc11/c11-noreturn - ------------ [409] CC="gcc" make testrunc11/c11-static-assert ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [409] A regression test command failed: - CC="gcc" make testrunc11/c11-static-assert - ------------ [410] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [410] A regression test command failed: - CC="gcc" make testrunc11/gcc-c11-generic-1 - ------------ [411] CC="gcc" make testrunc99/c99-bool ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [411] A regression test command failed: - CC="gcc" make testrunc99/c99-bool - ------------ [412] CC="gcc" make testrunc99/c99-complex ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [412] A regression test command failed: - CC="gcc" make testrunc99/c99-complex - ------------ [413] CC="gcc" make testrunc99/c99-fixed-width-int ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [413] A regression test command failed: - CC="gcc" make testrunc99/c99-fixed-width-int - ------------ [414] CC="gcc" make testrunc99/c99-float-pragma ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [414] A regression test command failed: - CC="gcc" make testrunc99/c99-float-pragma - ------------ [415] CC="gcc" make testrunc99/c99-predefined ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [415] A regression test command failed: - CC="gcc" make testrunc99/c99-predefined - ------------ [416] CC="gcc" make testrunc99/c99-struct ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [416] A regression test command failed: - CC="gcc" make testrunc99/c99-struct - ------------ [417] CC="gcc" make testrunc99/c99-tgmath ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [417] A regression test command failed: - CC="gcc" make testrunc99/c99-tgmath - ------------ [418] CC="gcc" make testrunc99/c99-tgmath2 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [418] A regression test command failed: - CC="gcc" make testrunc99/c99-tgmath2 - ------------ [419] CC="gcc" make testrunc99/c99-universal-character-names ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [419] A regression test command failed: - CC="gcc" make testrunc99/c99-universal-character-names - ------------ [420] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [420] A regression test command failed: - CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 - ------------ [421] CC="gcc" make testrungcc/enum3 ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [421] A regression test command failed: - CC="gcc" make testrungcc/enum3 - ------------ [422] CC="gcc" make testrungcc/enum3a ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [422] A regression test command failed: - CC="gcc" make testrungcc/enum3a - ------------ [423] CC="gcc" make testrungcc/enum3b ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [423] A regression test command failed: - CC="gcc" make testrungcc/enum3b - ------------ [424] (fail) CC="gcc" make testrungcc/enum3c ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - ------------ [425] CC="gcc" make testrungcc/enum3d ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [425] A regression test command failed: - CC="gcc" make testrungcc/enum3d - ------------ [426] CC="gcc" make testrungcc/enum3e ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [426] A regression test command failed: - CC="gcc" make testrungcc/enum3e - ------------ [427] CC="gcc" make testrungcc/enum3f ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [427] A regression test command failed: - CC="gcc" make testrungcc/enum3f - ------------ [428] CC="gcc" make testrungcc/enum3g ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [428] A regression test command failed: - CC="gcc" make testrungcc/enum3g - ------------ [429] CC="gcc" make testrungcc/enum3h ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [429] A regression test command failed: - CC="gcc" make testrungcc/enum3h - ------------ [430] CC="gcc" make testrungcc/enum3i ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [430] A regression test command failed: - CC="gcc" make testrungcc/enum3i - ------------ [431] CC="gcc" make testrungcc/enum3j ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [431] A regression test command failed: - CC="gcc" make testrungcc/enum3j - ------------ [432] CC="gcc" make testrungcc/enum3k ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [432] A regression test command failed: - CC="gcc" make testrungcc/enum3k - ------------ [433] CC="gcc" make testrungcc/enum3l ------------ - cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 - - [433] A regression test command failed: - CC="gcc" make testrungcc/enum3l - - Successful tests: 2 - Failed as expected: 42 - Unexpected success: 0 - Unexpected failure: 390 - - [0] A regression test command failed: - CC=gcc make arcombine - [1] A regression test command failed: - CC=gcc make baddef - [2] A regression test command failed: - CC=gcc make comb - [3] A regression test command failed: - CC=gcc make combine1 - [4] A regression test command failed: - CC=gcc make combine10 - [5] A regression test command failed: - CC=gcc make combine11 - [6] A regression test command failed: - CC=gcc make combine12 - [7] A regression test command failed: - CC=gcc make combine13 - [8] A regression test command failed: - CC=gcc make combine14 - [9] A regression test command failed: - CC=gcc make combine15 - [10] A regression test command failed: - CC=gcc make combine16 - [11] A regression test command failed: - CC=gcc make combine17 - [12] A regression test command failed: - CC=gcc make combine18 - [13] A regression test command failed: - CC=gcc make combine2 - [14] A regression test command failed: - CC=gcc make combine20 - [15] A regression test command failed: - CC=gcc make combine21 - [17] A regression test command failed: - CC=gcc make combine3 - [18] A regression test command failed: - CC=gcc make combine5 - [19] A regression test command failed: - CC=gcc make combine6 - [20] A regression test command failed: - CC=gcc make combine8 - [22] A regression test command failed: - CC=gcc make combine_allocate MERGEINLINES=1 - [23] A regression test command failed: - CC=gcc make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 - [24] A regression test command failed: - CC=gcc make combine_init - [27] A regression test command failed: - CC=gcc make combine_sbump - [28] A regression test command failed: - CC=gcc make combine_sbumpB MERGEINLINES=1 - [29] A regression test command failed: - CC=gcc make combine_syserr MERGEINLINES=1 - [30] A regression test command failed: - CC=gcc make combine_theFunc MERGEINLINES=1 - [31] A regression test command failed: - CC=gcc make combinealias - [33] A regression test command failed: - CC=gcc make combineenum1 - [34] A regression test command failed: - CC=gcc make combineenum2 - [35] A regression test command failed: - CC=gcc make combineenum3 - [36] A regression test command failed: - CC=gcc make combinegnuinline - [38] A regression test command failed: - CC=gcc make combineinline2 - [41] A regression test command failed: - CC=gcc make combineinline6 - [42] A regression test command failed: - CC=gcc make combinelibrik - [43] A regression test command failed: - CC=gcc make combinestruct1 - [44] A regression test command failed: - CC=gcc make merge-ar - [45] A regression test command failed: - CC=gcc make mergeinit - [46] A regression test command failed: - CC=gcc make mergeinline - [47] A regression test command failed: - CC=gcc make mergestruct - [48] A regression test command failed: - CC=gcc make mixedcomb - [49] A regression test command failed: - CC=gcc make runall/alpha - [50] A regression test command failed: - CC=gcc make runall/extinline - [51] A regression test command failed: - CC=gcc make runall/runall_misc - [52] A regression test command failed: - CC=gcc make runall/structattr2 - [53] A regression test command failed: - CC=gcc make runall/switch - [54] A regression test command failed: - CC=gcc make scott-nogcc/bogus_redef - [55] A regression test command failed: - CC=gcc make scott-nogcc/funcname - [56] A regression test command failed: - CC=gcc make scott-nolink/brlock - [57] A regression test command failed: - CC=gcc make scott/arrayinit - [59] A regression test command failed: - CC=gcc make scott/bisonerror - [60] A regression test command failed: - CC=gcc make scott/cmpzero - [61] A regression test command failed: - CC=gcc make scott/constdecl - [62] A regression test command failed: - CC=gcc make scott/constfold - [63] A regression test command failed: - CC=gcc make scott/ctype - [64] A regression test command failed: - CC=gcc make scott/enumattr - [65] A regression test command failed: - CC=gcc make scott/enumerator_sizeof - [66] A regression test command failed: - CC=gcc make scott/enuminit - [67] A regression test command failed: - CC=gcc make scott/errorinfn - [68] A regression test command failed: - CC=gcc make scott/funcptr - [69] A regression test command failed: - CC=gcc make scott/gimpdouble - [71] A regression test command failed: - CC=gcc make scott/initedextern - [72] A regression test command failed: - CC=gcc make scott/invalredef - [73] A regression test command failed: - CC=gcc make scott/invalredef2 - [74] A regression test command failed: - CC=gcc make scott/kernel1 - [75] A regression test command failed: - CC=gcc make scott/kernel2 - [76] A regression test command failed: - CC=gcc make scott/lexnum - [77] A regression test command failed: - CC=gcc make scott/litstruct - [78] A regression test command failed: - CC=gcc make scott/main - [79] A regression test command failed: - CC=gcc make scott/memberofptr - [80] A regression test command failed: - CC=gcc make scott/mode_sizes - [81] A regression test command failed: - CC=gcc make scott/multiplestatics - [82] A regression test command failed: - CC=gcc make scott/neg64 - [83] A regression test command failed: - CC=gcc make scott/oldstyle - [84] A regression test command failed: - CC=gcc make scott/open - [85] A regression test command failed: - CC=gcc make scott/partialbracket - [86] A regression test command failed: - CC=gcc make scott/putc - [88] A regression test command failed: - CC=gcc make scott/s59 - [89] A regression test command failed: - CC=gcc make scott/sizeofchar - [90] A regression test command failed: - CC=gcc make scott/sockaddr - [91] A regression test command failed: - CC=gcc make scott/struct_cs - [92] A regression test command failed: - CC=gcc make scott/structattr - [93] A regression test command failed: - CC=gcc make scott/structattr3 - [94] A regression test command failed: - CC=gcc make scott/thing - [95] A regression test command failed: - CC=gcc make scott/transpunion - [96] A regression test command failed: - CC=gcc make scott/typeof - [97] A regression test command failed: - CC=gcc make scott/uninit_tmp - [98] A regression test command failed: - CC=gcc make scott/unionassign - [99] A regression test command failed: - CC=gcc make scott/unscomp - [100] A regression test command failed: - CC=gcc make scott/volatilestruct - [101] A regression test command failed: - CC=gcc make scott/xcheckers - [102] A regression test command failed: - CC=gcc make test-bad/enuminit2 - [103] A regression test command failed: - CC=gcc make test-bad/trivial-tb - [104] A regression test command failed: - CC=gcc make test-bad1/flexible-array-member-bad - [105] A regression test command failed: - CC=gcc make test-bad1/wchar-bad - [106] A regression test command failed: - CC=gcc make test/align3 - [107] A regression test command failed: - CC=gcc make test/apachebits - [109] A regression test command failed: - CC=gcc make test/array-size-trick - [110] A regression test command failed: - CC=gcc make test/array1 - [111] A regression test command failed: - CC=gcc make test/array2 - [112] A regression test command failed: - CC=gcc make test/arrsize - [113] A regression test command failed: - CC=gcc make test/asm2 - [114] A regression test command failed: - CC=gcc make test/asm3 - [115] A regression test command failed: - CC=gcc make test/asm4 - [116] A regression test command failed: - CC=gcc make test/asm_emptyclobberallowed - [117] A regression test command failed: - CC=gcc make test/attr10 - [118] A regression test command failed: - CC=gcc make test/attr11 - [119] A regression test command failed: - CC=gcc make test/attr12 - [120] A regression test command failed: - CC=gcc make test/attr13 - [121] A regression test command failed: - CC=gcc make test/attr2 - [122] A regression test command failed: - CC=gcc make test/attr3 - [123] A regression test command failed: - CC=gcc make test/attr6 - [124] A regression test command failed: - CC=gcc make test/attr7 - [125] A regression test command failed: - CC=gcc make test/attr8 - [126] A regression test command failed: - CC=gcc make test/attr9 WARNINGS_ARE_ERRORS=1 - [127] A regression test command failed: - CC=gcc make test/bitfield - [129] A regression test command failed: - CC=gcc make test/builtin2 - [130] A regression test command failed: - CC=gcc make test/builtin5 - [131] A regression test command failed: - CC=gcc make test/cast1 - [132] A regression test command failed: - CC=gcc make test/cast2 - [133] A regression test command failed: - CC=gcc make test/cast4 - [134] A regression test command failed: - CC=gcc make test/castcall - [135] A regression test command failed: - CC=gcc make test/castunion - [136] A regression test command failed: - CC=gcc make test/const-struct-init WARNINGS_ARE_ERRORS=1 - [138] A regression test command failed: - CC=gcc make test/const14 - [139] A regression test command failed: - CC=gcc make test/const7 - [140] A regression test command failed: - CC=gcc make test/const9 - [141] A regression test command failed: - CC=gcc make test/constprop - [142] A regression test command failed: - CC=gcc make test/constrexpr - [144] A regression test command failed: - CC=gcc make test/cpp-3 - [146] A regression test command failed: - CC=gcc make test/deref - [147] A regression test command failed: - CC=gcc make test/duplicate - [148] A regression test command failed: - CC=gcc make test/enum - [149] A regression test command failed: - CC=gcc make test/enum-scope - [150] A regression test command failed: - CC=gcc make test/extinline3 - [151] A regression test command failed: - CC=gcc make test/func - [154] A regression test command failed: - CC=gcc make test/globals - [156] A regression test command failed: - CC=gcc make test/huff1 - [157] A regression test command failed: - CC=gcc make test/init - [158] A regression test command failed: - CC=gcc make test/init8 - [159] A regression test command failed: - CC=gcc make test/initial WARNINGS_ARE_ERRORS=1 - [160] A regression test command failed: - CC=gcc make test/inline3 - [161] A regression test command failed: - CC=gcc make test/jmp_buf - [162] A regression test command failed: - CC=gcc make test/label5 - [163] A regression test command failed: - CC=gcc make test/label7 - [164] A regression test command failed: - CC=gcc make test/label8 - [165] A regression test command failed: - CC=gcc make test/label9 EXTRAARGS=--domakeCFG - [166] A regression test command failed: - CC=gcc make test/li - [167] A regression test command failed: - CC=gcc make test/linux_atomic - [168] A regression test command failed: - CC=gcc make test/linuxcombine1_1 - [169] A regression test command failed: - CC=gcc make test/list - [170] A regression test command failed: - CC=gcc make test/matrix - [171] A regression test command failed: - CC=gcc make test/noreturn - [172] A regression test command failed: - CC=gcc make test/outofmem - [173] A regression test command failed: - CC=gcc make test/packed2 - [174] A regression test command failed: - CC=gcc make test/power1 - [175] A regression test command failed: - CC=gcc make test/printf - [176] A regression test command failed: - CC=gcc make test/printf_const - [179] A regression test command failed: - CC=gcc make test/pure - [180] A regression test command failed: - CC=gcc make test/restrict EXTRAARGS=-std=c9x - [181] A regression test command failed: - CC=gcc make test/restrict1 - [182] A regression test command failed: - CC=gcc make test/retval - [183] A regression test command failed: - CC=gcc make test/scope12 - [184] A regression test command failed: - CC=gcc make test/scope2 - [186] A regression test command failed: - CC=gcc make test/scope4 - [187] A regression test command failed: - CC=gcc make test/shell-escape SHELL_ESCAPE=1 - [189] A regression test command failed: - CC=gcc make test/static - [190] A regression test command failed: - CC=gcc make test/static1 - [191] A regression test command failed: - CC=gcc make test/strcpy - [192] A regression test command failed: - CC=gcc make test/struct_init - [193] A regression test command failed: - CC=gcc make test/structassign - [195] A regression test command failed: - CC=gcc make test/sync-1 - [196] A regression test command failed: - CC=gcc make test/sync-2 - [197] A regression test command failed: - CC=gcc make test/sync-3 - [198] A regression test command failed: - CC=gcc make test/tags - [199] A regression test command failed: - CC=gcc make test/task - [200] A regression test command failed: - CC=gcc make test/unimplemented - [201] A regression test command failed: - CC=gcc make test/union5 - [202] A regression test command failed: - CC=gcc make test/va_arg_pack - [203] A regression test command failed: - CC=gcc make test/vararg7 - [204] A regression test command failed: - CC=gcc make test/voidstar - [205] A regression test command failed: - CC=gcc make test/voidtypedef - [206] A regression test command failed: - CC=gcc make test/warnings-cast WARNINGS_ARE_ERRORS=1 - [207] A regression test command failed: - CC=gcc make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 - [208] A regression test command failed: - CC=gcc make test_i/empty - [209] A regression test command failed: - CC=gcc make test_i/lineno - [210] A regression test command failed: - CC=gcc make testc11/alignas - [213] A regression test command failed: - CC=gcc make testc11/clang-c11-generic-2 - [216] A regression test command failed: - CC=gcc make testc11/gcc-c11-generic-3-1 - [220] A regression test command failed: - CC=gcc make testobj/asm5 - [221] A regression test command failed: - CC=gcc make testrun/addr-array - [222] A regression test command failed: - CC=gcc make testrun/addr-string - [223] A regression test command failed: - CC=gcc make testrun/addrof3 - [224] A regression test command failed: - CC=gcc make testrun/align1 - [225] A regression test command failed: - CC=gcc make testrun/align2 EXTRAARGS=-O2 - [226] A regression test command failed: - CC=gcc make testrun/apachebuf - [227] A regression test command failed: - CC=gcc make testrun/apachefptr - [228] A regression test command failed: - CC=gcc make testrun/array_formal - [230] A regression test command failed: - CC=gcc make testrun/array_varsize - [231] A regression test command failed: - CC=gcc make testrun/arrayinitsize - [232] A regression test command failed: - CC=gcc make testrun/asm1 - [233] A regression test command failed: - CC=gcc make testrun/assign - [234] A regression test command failed: - CC=gcc make testrun/attr-in-decllist - [235] A regression test command failed: - CC=gcc make testrun/attr4 - [237] A regression test command failed: - CC=gcc make testrun/bitfield2 - [238] A regression test command failed: - CC=gcc make testrun/bitfield3 - [239] A regression test command failed: - CC=gcc make testrun/blockattr2 USECFG=1 - [240] A regression test command failed: - CC=gcc make testrun/bool - [241] A regression test command failed: - CC=gcc make testrun/booleanOp USE_LOGICAL_OPERATORS=1 - [242] A regression test command failed: - CC=gcc make testrun/builtin - [243] A regression test command failed: - CC=gcc make testrun/builtin3 - [244] A regression test command failed: - CC=gcc make testrun/builtin4 - [245] A regression test command failed: - CC=gcc make testrun/builtin_choose_expr - [246] A regression test command failed: - CC=gcc make testrun/call2 - [247] A regression test command failed: - CC=gcc make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG - [248] A regression test command failed: - CC=gcc make testrun/caserange - [249] A regression test command failed: - CC=gcc make testrun/cast8 - [250] A regression test command failed: - CC=gcc make testrun/castincr WARNINGS_ARE_ERRORS=1 - [251] A regression test command failed: - CC=gcc make testrun/comma1 - [252] A regression test command failed: - CC=gcc make testrun/comparisons - [254] A regression test command failed: - CC=gcc make testrun/compound2 - [255] A regression test command failed: - CC=gcc make testrun/cond1 - [256] A regression test command failed: - CC=gcc make testrun/cond2 - [257] A regression test command failed: - CC=gcc make testrun/const-array-init WARNINGS_ARE_ERRORS=1 - [258] A regression test command failed: - CC=gcc make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 - [259] A regression test command failed: - CC=gcc make testrun/const1 - [260] A regression test command failed: - CC=gcc make testrun/const10 - [261] A regression test command failed: - CC=gcc make testrun/const11 - [262] A regression test command failed: - CC=gcc make testrun/const12 - [263] A regression test command failed: - CC=gcc make testrun/const15 - [264] A regression test command failed: - CC=gcc make testrun/const16 - [265] A regression test command failed: - CC=gcc make testrun/const2 - [266] A regression test command failed: - CC=gcc make testrun/const3 - [267] A regression test command failed: - CC=gcc make testrun/const4 - [268] A regression test command failed: - CC=gcc make testrun/const5 - [269] A regression test command failed: - CC=gcc make testrun/const6 - [270] A regression test command failed: - CC=gcc make testrun/const8 - [273] A regression test command failed: - CC=gcc make testrun/decl_mix_stmt - [274] A regression test command failed: - CC=gcc make testrun/enum2 - [275] A regression test command failed: - CC=gcc make testrun/escapes - [276] A regression test command failed: - CC=gcc make testrun/extern1 - [277] A regression test command failed: - CC=gcc make testrun/extinline2 - [278] A regression test command failed: - CC=gcc make testrun/fallthrough-label - [279] A regression test command failed: - CC=gcc make testrun/flexible-array-member - [280] A regression test command failed: - CC=gcc make testrun/float - [281] A regression test command failed: - CC=gcc make testrun/float2 - [282] A regression test command failed: - CC=gcc make testrun/for1 - [283] A regression test command failed: - CC=gcc make testrun/formalscope - [284] A regression test command failed: - CC=gcc make testrun/func2 - [285] A regression test command failed: - CC=gcc make testrun/func3 - [286] A regression test command failed: - CC=gcc make testrun/func4 - [287] A regression test command failed: - CC=gcc make testrun/funptr1 - [288] A regression test command failed: - CC=gcc make testrun/init - [289] A regression test command failed: - CC=gcc make testrun/init1 - [290] A regression test command failed: - CC=gcc make testrun/init10 - [291] A regression test command failed: - CC=gcc make testrun/init11 - [292] A regression test command failed: - CC=gcc make testrun/init12 - [293] A regression test command failed: - CC=gcc make testrun/init13 - [294] A regression test command failed: - CC=gcc make testrun/init14 - [295] A regression test command failed: - CC=gcc make testrun/init15 - [296] A regression test command failed: - CC=gcc make testrun/init16 - [297] A regression test command failed: - CC=gcc make testrun/init17 - [298] A regression test command failed: - CC=gcc make testrun/init18 - [299] A regression test command failed: - CC=gcc make testrun/init19 WARNINGS_ARE_ERRORS=1 - [300] A regression test command failed: - CC=gcc make testrun/init2 - [301] A regression test command failed: - CC=gcc make testrun/init20 - [302] A regression test command failed: - CC=gcc make testrun/init21 - [303] A regression test command failed: - CC=gcc make testrun/init22 - [304] A regression test command failed: - CC=gcc make testrun/init3 - [305] A regression test command failed: - CC=gcc make testrun/init4 - [306] A regression test command failed: - CC=gcc make testrun/init5 - [307] A regression test command failed: - CC=gcc make testrun/init6 - [308] A regression test command failed: - CC=gcc make testrun/init9 - [309] A regression test command failed: - CC=gcc make testrun/initial - [311] A regression test command failed: - CC=gcc make testrun/inline2 - [312] A regression test command failed: - CC=gcc make testrun/label1 - [313] A regression test command failed: - CC=gcc make testrun/label2 - [314] A regression test command failed: - CC=gcc make testrun/label2b COMPUTEDGOTO=1 - [315] A regression test command failed: - CC=gcc make testrun/label3 - [316] A regression test command failed: - CC=gcc make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 - [317] A regression test command failed: - CC=gcc make testrun/label4 - [318] A regression test command failed: - CC=gcc make testrun/label4b COMPUTEDGOTO=1 - [319] A regression test command failed: - CC=gcc make testrun/label6 - [320] A regression test command failed: - CC=gcc make testrun/land_expr - [321] A regression test command failed: - CC=gcc make testrun/large_unsigned_long - [322] A regression test command failed: - CC=gcc make testrun/linux_signal - [323] A regression test command failed: - CC=gcc make testrun/localinit - [324] A regression test command failed: - CC=gcc make testrun/logical - [325] A regression test command failed: - CC=gcc make testrun/logical1 USE_LOGICAL_OPERATORS=1 - [326] A regression test command failed: - CC=gcc make testrun/logical2 USE_LOGICAL_OPERATORS=1 - [328] A regression test command failed: - CC=gcc make testrun/lval1 - [329] A regression test command failed: - CC=gcc make testrun/macro_hidden - [330] A regression test command failed: - CC=gcc make testrun/math1 - [331] A regression test command failed: - CC=gcc make testrun/memcpy1 - [332] A regression test command failed: - CC=gcc make testrun/min - [333] A regression test command failed: - CC=gcc make testrun/msvc1 - [334] A regression test command failed: - CC=gcc make testrun/msvc5 - [335] A regression test command failed: - CC=gcc make testrun/nan-global - [336] A regression test command failed: - CC=gcc make testrun/offsetof - [337] A regression test command failed: - CC=gcc make testrun/offsetof1 - [338] A regression test command failed: - CC=gcc make testrun/offsetof2 - [339] A regression test command failed: - CC=gcc make testrun/offsetof3 - [340] A regression test command failed: - CC=gcc make testrun/packed WARNINGS_ARE_ERRORS=1 - [341] A regression test command failed: - CC=gcc make testrun/percent400 - [342] A regression test command failed: - CC=gcc make testrun/percentm - [343] A regression test command failed: - CC=gcc make testrun/perror - [344] A regression test command failed: - CC=gcc make testrun/perror1 - [346] A regression test command failed: - CC=gcc make testrun/printf2 - [347] A regression test command failed: - CC=gcc make testrun/question - [348] A regression test command failed: - CC=gcc make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 - [349] A regression test command failed: - CC=gcc make testrun/question2 - [350] A regression test command failed: - CC=gcc make testrun/question3 USE_LOGICAL_OPERATORS=1 - [351] A regression test command failed: - CC=gcc make testrun/return1 - [352] A regression test command failed: - CC=gcc make testrun/returnvoid - [353] A regression test command failed: - CC=gcc make testrun/returnvoid1 - [355] A regression test command failed: - CC=gcc make testrun/rmtmps1 - [356] A regression test command failed: - CC=gcc make testrun/rmtmps2 - [357] A regression test command failed: - CC=gcc make testrun/scope1 - [358] A regression test command failed: - CC=gcc make testrun/scope10 - [359] A regression test command failed: - CC=gcc make testrun/scope11 - [360] A regression test command failed: - CC=gcc make testrun/scope5 - [361] A regression test command failed: - CC=gcc make testrun/scope6 - [362] A regression test command failed: - CC=gcc make testrun/scope8 - [363] A regression test command failed: - CC=gcc make testrun/scope9 - [364] A regression test command failed: - CC=gcc make testrun/semicolon - [365] A regression test command failed: - CC=gcc make testrun/simon6 - [366] A regression test command failed: - CC=gcc make testrun/sizeof1 - [367] A regression test command failed: - CC=gcc make testrun/sizeof2 - [368] A regression test command failed: - CC=gcc make testrun/static - [369] A regression test command failed: - CC=gcc make testrun/static2 - [370] A regression test command failed: - CC=gcc make testrun/stringsize - [371] A regression test command failed: - CC=gcc make testrun/strloop - [372] A regression test command failed: - CC=gcc make testrun/strloop3 - [373] A regression test command failed: - CC=gcc make testrun/struct1 - [374] A regression test command failed: - CC=gcc make testrun/typeof1 - [376] A regression test command failed: - CC=gcc make testrun/union2 - [377] A regression test command failed: - CC=gcc make testrun/union3 - [379] A regression test command failed: - CC=gcc make testrun/va-arg-1 - [380] A regression test command failed: - CC=gcc make testrun/va-arg-2 - [381] A regression test command failed: - CC=gcc make testrun/va-arg-7 - [382] A regression test command failed: - CC=gcc make testrun/var_named_hidden - [383] A regression test command failed: - CC=gcc make testrun/vararg1 - [384] A regression test command failed: - CC=gcc make testrun/vararg2 - [385] A regression test command failed: - CC=gcc make testrun/vararg3 - [386] A regression test command failed: - CC=gcc make testrun/vararg4 - [387] A regression test command failed: - CC=gcc make testrun/vararg5 - [388] A regression test command failed: - CC=gcc make testrun/vararg6 - [389] A regression test command failed: - CC=gcc make testrun/varargauto1 - [390] A regression test command failed: - CC=gcc make testrun/void - [391] A regression test command failed: - CC=gcc make testrun/voidarg - [392] A regression test command failed: - CC=gcc make testrun/vsp - [393] A regression test command failed: - CC=gcc make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 - [394] A regression test command failed: - CC=gcc make testrun/wchar1 - [395] A regression test command failed: - CC=gcc make testrun/wchar2 - [396] A regression test command failed: - CC=gcc make testrun/wchar3 - [397] A regression test command failed: - CC=gcc make testrun/wchar4 - [398] A regression test command failed: - CC=gcc make testrun/wchar5 - [399] A regression test command failed: - CC=gcc make testrun/wchar6 - [400] A regression test command failed: - CC=gcc make testrun/wchar7 - [402] A regression test command failed: - CC=gcc make testrunc11/c11-align-of - [403] A regression test command failed: - CC=gcc make testrunc11/c11-atomic - [404] A regression test command failed: - CC=gcc make testrunc11/c11-atomic-store - [405] A regression test command failed: - CC=gcc make testrunc11/c11-caserange - [406] A regression test command failed: - CC=gcc make testrunc11/c11-extendedFloat - [407] A regression test command failed: - CC=gcc make testrunc11/c11-generic - [408] A regression test command failed: - CC=gcc make testrunc11/c11-noreturn - [409] A regression test command failed: - CC=gcc make testrunc11/c11-static-assert - [410] A regression test command failed: - CC=gcc make testrunc11/gcc-c11-generic-1 - [411] A regression test command failed: - CC=gcc make testrunc99/c99-bool - [412] A regression test command failed: - CC=gcc make testrunc99/c99-complex - [413] A regression test command failed: - CC=gcc make testrunc99/c99-fixed-width-int - [414] A regression test command failed: - CC=gcc make testrunc99/c99-float-pragma - [415] A regression test command failed: - CC=gcc make testrunc99/c99-predefined - [416] A regression test command failed: - CC=gcc make testrunc99/c99-struct - [417] A regression test command failed: - CC=gcc make testrunc99/c99-tgmath - [418] A regression test command failed: - CC=gcc make testrunc99/c99-tgmath2 - [419] A regression test command failed: - CC=gcc make testrunc99/c99-universal-character-names - [420] A regression test command failed: - CC=gcc make testrungcc/builtin_object_size OPTIMIZE=1 - [421] A regression test command failed: - CC=gcc make testrungcc/enum3 - [422] A regression test command failed: - CC=gcc make testrungcc/enum3a - [423] A regression test command failed: - CC=gcc make testrungcc/enum3b - [425] A regression test command failed: - CC=gcc make testrungcc/enum3d - [426] A regression test command failed: - CC=gcc make testrungcc/enum3e - [427] A regression test command failed: - CC=gcc make testrungcc/enum3f - [428] A regression test command failed: - CC=gcc make testrungcc/enum3g - [429] A regression test command failed: - CC=gcc make testrungcc/enum3h - [430] A regression test command failed: - CC=gcc make testrungcc/enum3i - [431] A regression test command failed: - CC=gcc make testrungcc/enum3j - [432] A regression test command failed: - CC=gcc make testrungcc/enum3k - [433] A regression test command failed: - CC=gcc make testrungcc/enum3l - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:298: arcombine] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:409: baddef] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:366: comb] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine10] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine11] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine12] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine13] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine14] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine15] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine16] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine17] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine18] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine20] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine21] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine22] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine8] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine9] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_allocate] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_copyptrs] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_init] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_node_alloc] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_samefn] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_sbump] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_sbumpB] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_syserr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combine_theFunc] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combinealias] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:306: combinec99inline] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineenum1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineenum2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineenum3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:291: combinegnuinline] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineinline1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineinline2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineinline3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineinline4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combineinline6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combinelibrik] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:284: combinestruct1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:428: merge-ar] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:396: mergeinit] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:401: mergeinline] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:387: mergestruct] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:378: mixedcomb] Error 2 - Test case baseline (line 2) fails and it is supposed to succeed at ../runall.pl line 395. - Died at ../runall.pl line 399. - make: *** [Makefile:344: runall/alpha] Error 2 - Cannot find "Trying to rename" in output of test bad at ../runall.pl line 416. - Died at ../runall.pl line 419. - make: *** [Makefile:344: runall/extinline] Error 2 - Cannot find "syntax error" in output of test rbrace at ../runall.pl line 416. - Died at ../runall.pl line 419. - make: *** [Makefile:344: runall/runall_misc] Error 2 - Test case archspecific (line 42) fails and it is supposed to succeed at ../runall.pl line 395. - Died at ../runall.pl line 399. - make: *** [Makefile:344: runall/structattr2] Error 2 - Test case baseline (line 4) fails and it is supposed to succeed at ../runall.pl line 395. - Died at ../runall.pl line 399. - make: *** [Makefile:344: runall/switch] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:249: scott-nogcc/bogus_redef] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:249: scott-nogcc/funcname] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:258: scott-nolink/brlock] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/arrayinit] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/asmfndecl] Error 2 - bisonerror.c: In function 'closure': - bisonerror.c:9:12: warning: variable 'csend' set but not used [-Wunused-but-set-variable] - 9 | short * csend ; - | ^~~~~ - bisonerror.c: In function 'main': - bisonerror.c:14:8: warning: unused variable 'x' [-Wunused-variable] - 14 | core x; - | ^ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/bisonerror] Error 2 - cmpzero.c: In function 'main': - cmpzero.c:8:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 8 | char c = (char)i; // should be 0 - | ^ - cmpzero.c:10:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 10 | printf("i: %d\n", (int)i); - | ^ - cmpzero.c:13:9: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 13 | if (i == '\0') { - | ^~ - cmpzero.c:13:7: note: did you mean to dereference the pointer? - 13 | if (i == '\0') { - | ^ - cmpzero.c:21:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 21 | if ((int)(char)i == (int)'\0') { - | ^ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/cmpzero] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/constdecl] Error 2 - constfold.c: In function 'main': - constfold.c:12:20: warning: variable 'tmp12' set but not used [-Wunused-but-set-variable] - 12 | float z10, z5, tmp12; - | ^~~~~ - constfold.c:17:18: warning: variable 'root' set but not used [-Wunused-but-set-variable] - 17 | double a,b,c,root; - | ^~~~ - constfold.c:13:37: warning: 'z10' is used uninitialized [-Wuninitialized] - 13 | tmp12 = (float )(- 2.613125930) * z10 + z5; // ijpeg - | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~ - constfold.c:13:11: warning: 'z5' is used uninitialized [-Wuninitialized] - 13 | tmp12 = (float )(- 2.613125930) * z10 + z5; // ijpeg - | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - constfold.c:18:13: warning: 'b' is used uninitialized [-Wuninitialized] - 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power - | ^~ - constfold.c:18:26: warning: 'a' is used uninitialized [-Wuninitialized] - 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power - | ~^~ - constfold.c:18:28: warning: 'c' is used uninitialized [-Wuninitialized] - 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power - | ~~~^~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/constfold] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/ctype] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/enumattr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/enumerator_sizeof] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/enuminit] Error 2 - errorinfn.c: In function 'main': - errorinfn.c:3:15: warning: initializer-string for array of 'char' is too long - 3 | char c[8] = "an error!"; - | ^~~~~~~~~~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/errorinfn] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/funcptr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/gimpdouble] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/globalprob] Error 2 - initedextern.c:6:12: warning: 'foo' initialized and declared 'extern' - 6 | extern int foo = 3; - | ^~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/initedextern] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/invalredef] Error 2 - invalredef2.c:9:13: warning: 'parse' defined but not used [-Wunused-function] - 9 | static int parse(enum token * tok ) - | ^~~~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/invalredef2] Error 2 - kernel1.c:2:1: warning: data definition has no type or storage class - 2 | DECLARE_WAIT_QUEUE_HEAD(log_wait); - | ^~~~~~~~~~~~~~~~~~~~~~~ - kernel1.c:2:1: warning: type defaults to 'int' in declaration of 'DECLARE_WAIT_QUEUE_HEAD' [-Wimplicit-int] - kernel1.c:2:1: warning: parameter names (without types) in function declaration - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/kernel1] Error 2 - kernel2.c:8:22: warning: 'kernel_module' defined but not used [-Wunused-variable] - 8 | static struct module kernel_module = - | ^~~~~~~~~~~~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/kernel2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/lexnum] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/litstruct] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/main] Error 2 - memberofptr.c: In function 'read_header': - memberofptr.c:21:18: warning: unused variable 'next' [-Wunused-variable] - 21 | static char * next; /*decdef*/ - | ^~~~ - memberofptr.c:20:18: warning: unused variable 'header' [-Wunused-variable] - 20 | union block * header ; /*decdef*/ - | ^~~~~~ - At top level: - memberofptr.c:21:18: warning: 'next' defined but not used [-Wunused-variable] - 21 | static char * next; /*decdef*/ - | ^~~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/memberofptr] Error 2 - mode_sizes.c: In function 'main': - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:29:3: note: in expansion of macro 'PRSIZE' - 29 | PRSIZE(int8_t, 1); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:30:3: note: in expansion of macro 'PRSIZE' - 30 | PRSIZE(int16_t, 2); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:31:3: note: in expansion of macro 'PRSIZE' - 31 | PRSIZE(int32_t, 4); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:32:3: note: in expansion of macro 'PRSIZE' - 32 | PRSIZE(int64_t, 8); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:34:3: note: in expansion of macro 'PRSIZE' - 34 | PRSIZE(u_int8_t, 1); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:35:3: note: in expansion of macro 'PRSIZE' - 35 | PRSIZE(u_int16_t, 2); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:36:3: note: in expansion of macro 'PRSIZE' - 36 | PRSIZE(u_int32_t, 4); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:37:3: note: in expansion of macro 'PRSIZE' - 37 | PRSIZE(u_int64_t, 8); - | ^~~~~~ - mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] - 27 | printf("size of " #type " is: %d (should be %d)\n", \ - | ^~~~~~~~~~ - 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) - | ~~~~~~~~~~~~ - | | - | long unsigned int - mode_sizes.c:39:3: note: in expansion of macro 'PRSIZE' - 39 | PRSIZE(x8_t, 1); - | ^~~~~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/mode_sizes] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/multiplestatics] Error 2 - neg64.c:12:1: warning: return type defaults to 'int' [-Wimplicit-int] - 12 | main() - | ^~~~ - neg64.c: In function 'main': - neg64.c:15:5: warning: implicit declaration of function 'abort' [-Wimplicit-function-declaration] - 15 | abort(); - | ^~~~~ - neg64.c:1:1: note: include '' or provide a declaration of 'abort' - +++ |+#include - 1 | // neg64.c - neg64.c:15:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch] - 15 | abort(); - | ^~~~~ - neg64.c:15:5: note: include '' or provide a declaration of 'abort' - neg64.c:17:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] - 17 | exit(0); - | ^~~~ - neg64.c:17:3: note: include '' or provide a declaration of 'exit' - neg64.c:17:3: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] - neg64.c:17:3: note: include '' or provide a declaration of 'exit' - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/neg64] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/oldstyle] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/open] Error 2 - partialbracket.c:7:20: warning: missing braces around initializer [-Wmissing-braces] - 7 | struct S array[] = { - | ^ - 8 | 1,2, - | { } - 9 | 3,4 - | { - 10 | }; - | } - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/partialbracket] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/putc] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/regparm0] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/s59] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/sizeofchar] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/sockaddr] Error 2 - struct_cs.c:9:1: warning: 'reverse_pairs_list' defined but not used [-Wunused-function] - 9 | reverse_pairs_list (gdouble *list, - | ^~~~~~~~~~~~~~~~~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/struct_cs] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/structattr] Error 2 - structattr3.c:7:18: warning: missing braces around initializer [-Wmissing-braces] - 7 | struct S y[10] = {1,2,3}; - | ^ - | {}{}{} - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/structattr3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/thing] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/transpunion] Error 2 - typeof.c: In function 'y': - typeof.c:6:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] - 6 | exit(-2); //make sure y() is not invoked! - | ^~~~ - typeof.c:1:1: note: include '' or provide a declaration of 'exit' - +++ |+#include - 1 | // simple use of typeof - typeof.c:6:3: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] - 6 | exit(-2); //make sure y() is not invoked! - | ^~~~ - typeof.c:6:3: note: include '' or provide a declaration of 'exit' - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/typeof] Error 2 - uninit_tmp.c: In function 'bad_function': - uninit_tmp.c:11:33: warning: variable 'other_variable' set but not used [-Wunused-but-set-variable] - 11 | auto const struct struct_two *other_variable; - | ^~~~~~~~~~~~~~ - uninit_tmp.c: In function 'main': - uninit_tmp.c:32:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] - 32 | printf("cil bug is still present\n"); - | ^~~~~~ - uninit_tmp.c:1:1: note: include '' or provide a declaration of 'printf' - +++ |+#include - 1 | // uninit_tmp.c - uninit_tmp.c:32:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] - 32 | printf("cil bug is still present\n"); - | ^~~~~~ - uninit_tmp.c:32:5: note: include '' or provide a declaration of 'printf' - uninit_tmp.c:36:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] - 36 | printf("bug has been fixed!\n"); - | ^~~~~~ - uninit_tmp.c:36:5: note: include '' or provide a declaration of 'printf' - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/uninit_tmp] Error 2 - unionassign.c: In function 'foo': - unionassign.c:85:19: warning: variable 'x' set but not used [-Wunused-but-set-variable] - 85 | union sockunion x,y; - | ^ - unionassign.c:86:5: warning: 'y' is used uninitialized [-Wuninitialized] - 86 | x = y; - | ~~^~~ - unionassign.c:85:21: note: 'y' declared here - 85 | union sockunion x,y; - | ^ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/unionassign] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/unscomp] Error 2 - volatilestruct.c: In function 'main': - volatilestruct.c:17:14: warning: variable 'bar' set but not used [-Wunused-but-set-variable] - 17 | } volatile bar; - | ^~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/volatilestruct] Error 2 - xcheckers.c:18:13: warning: 'loadImage' defined but not used [-Wunused-function] - 18 | static void loadImage(void ) - | ^~~~~~~~~ - xcheckers.c: In function 'loadImage': - xcheckers.c:21:11: warning: 'thisScene' is used uninitialized [-Wuninitialized] - 21 | paper = getColor((& (((_XPrivDisplay )dpy)->screens)[1])->cmap, thisScene); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:238: scott/xcheckers] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:323: test-bad/enuminit2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:323: test-bad/trivial-tb] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:332: test-bad1/flexible-array-member-bad] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:332: test-bad1/wchar-bad] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/align3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/apachebits] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/argcast] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/array-size-trick] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/array1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/array2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/arrsize] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/asm2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/asm3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/asm4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/asm_emptyclobberallowed] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr10] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr11] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr12] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr13] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr7] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr8] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/attr9] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/bitfield] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/break1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/builtin2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/builtin5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/cast1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/cast2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/cast4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/castcall] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/castunion] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/const-struct-init] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/const13] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/const14] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/const7] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/const9] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/constprop] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/constrexpr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/cpp-2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/cpp-3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/decl2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/deref] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/duplicate] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/enum] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/enum-scope] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/extinline3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/func] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/func10] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/funcarg] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/globals] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/globals2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/huff1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/init] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/init8] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/initial] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/inline3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/jmp_buf] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/label5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/label7] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/label8] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/label9] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/li] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/linux_atomic] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/linuxcombine1_1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/list] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/matrix] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/noreturn] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/outofmem] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/packed2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/power1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/printf] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/printf_const] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/proto1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/proto2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/pure] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/restrict] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/restrict1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/retval] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/scope12] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/scope2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/scope3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/scope4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/shell-escape] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/sizeof3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/static] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/static1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/strcpy] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/struct_init] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/structassign] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/switch_default_parse_bug] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/sync-1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/sync-2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/sync-3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/tags] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/task] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/unimplemented] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/union5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/va_arg_pack] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/vararg7] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/voidstar] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/voidtypedef] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/warnings-cast] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:175: test/warnings-noreturn] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:215: test_i/empty] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:215: test_i/lineno] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/alignas] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/clang-c11-generic-1-1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/clang-c11-generic-1-2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/clang-c11-generic-2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/gcc-c11-generic-2-1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/gcc-c11-generic-2-7] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/gcc-c11-generic-3-1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/gcc-c11-generic-3-2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/gcc-c11-generic-3-3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:197: testc11/gcc-c11-generic-3-4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:180: testobj/asm5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/addr-array] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/addr-string] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/addrof3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/align1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/align2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/apachebuf] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/apachefptr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/array_formal] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/array_multi_varsize] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/array_varsize] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/arrayinitsize] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/asm1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/assign] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/attr-in-decllist] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/attr4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/bitfield2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/bitfield3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/blockattr2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/bool] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/booleanOp] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/builtin] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/builtin3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/builtin4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/builtin_choose_expr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/call2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/case_then_default_in_switch] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/caserange] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/cast8] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/castincr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/comma1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/comparisons] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/compound1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/compound2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/cond1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/cond2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const-array-init] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const-struct-init] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const10] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const11] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const12] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const15] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const16] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/const8] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/constfold] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/constfold2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/decl_mix_stmt] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/enum2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/escapes] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/extern1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/extinline2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/fallthrough-label] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/flexible-array-member] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/float] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/float2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/for1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/formalscope] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/func2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/func3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/func4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/funptr1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init10] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init11] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init12] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init13] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init14] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init15] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init16] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init17] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init18] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init19] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init20] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init21] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init22] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/init9] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/initial] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/inline1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/inline2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label2b] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label3b] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label4b] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/label6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/land_expr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/large_unsigned_long] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/linux_signal] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/localinit] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/logical] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/logical1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/logical2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/lval1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/macro_hidden] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/math1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/memcpy1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/min] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/msvc1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/msvc5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/nan-global] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/offsetof] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/offsetof1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/offsetof2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/offsetof3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/packed] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/percent400] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/percentm] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/perror] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/perror1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/post-assign] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/printf2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/question] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/question-fold-float] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/question2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/question3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/return1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/returnvoid] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/returnvoid1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/rmtmps-attr] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/rmtmps1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/rmtmps2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/scope1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/scope10] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/scope11] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/scope5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/scope6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/scope8] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/scope9] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/semicolon] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/simon6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/sizeof1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/sizeof2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/static] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/static2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/stringsize] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/strloop] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/strloop3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/struct1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/typeof1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/typespec1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/union2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/union3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/union6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/va-arg-1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/va-arg-2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/va-arg-7] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/var_named_hidden] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/vararg1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/vararg2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/vararg3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/vararg4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/vararg5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/vararg6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/varargauto1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/void] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/voidarg] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/vsp] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/warnings-unused-label] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wchar1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wchar2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wchar3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wchar4] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wchar5] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wchar6] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wchar7] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:184: testrun/wrongnumargs] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-align-of] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-atomic] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-atomic-store] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-caserange] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-extendedFloat] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-generic] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-noreturn] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/c11-static-assert] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:202: testrunc11/gcc-c11-generic-1] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-bool] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-complex] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-fixed-width-int] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-float-pragma] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-predefined] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-struct] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-tgmath] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-tgmath2] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:190: testrunc99/c99-universal-character-names] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/builtin_object_size] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3a] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3b] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3c] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3d] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3e] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3f] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3g] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3h] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3i] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3j] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3k] Error 2 - Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. - make: *** [Makefile:208: testrungcc/enum3l] Error 2 [ERROR] The compilation of goblint-cil.2.0.1 failed at "dune build -p goblint-cil -j 255 @install @runtest". #=== ERROR while compiling goblint-cil.2.0.1 ==================================# # context 2.2.0~alpha3~dev | linux/x86_64 | ocaml-base-compiler.4.14.1 | pinned(https://github.com/goblint/cil/releases/download/2.0.1/goblint-cil-2.0.1.tbz) # path ~/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1 # 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-4431ee.env # output-file ~/.opam/log/goblint-cil-7-4431ee.out ### output ### # (cd _build/default && /home/opam/.opam/4.14/bin/ocamlyacc src/frontc/cparser.mly) # 1 shift/reduce conflict, 1 reduce/reduce conflict. # (cd _build/default/src && /home/opam/.opam/4.14/bin/cppo -V OCAML:4.14.1 machdep.cppo.ml -x machdep:./machdep-ml.exe -o machdep.ml) # Generating machine dependency information for CIL # File "test/dune", line 1, 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 434 tests enabled # ------------ [0] CC="gcc" make arcombine ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -c array1.c array2.c # # [0] A regression test command failed: # CC="gcc" make arcombine # ------------ [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/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.c -c -o baddef1.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef2.c -c -o baddef2.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats baddef1.o baddef2.o -obaddef.exe # # [1] A regression test command failed: # CC="gcc" make baddef # ------------ [2] CC="gcc" make comb ------------ # rm -f ./small2/comb.exe # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c -c -o comb1.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb2.c -c -o comb2.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb3.c -c -o comb3.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb4.c -c -o comb4.o; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.o comb2.o comb3.o comb4.o -ocomb.exe # # [2] A regression test command failed: # CC="gcc" make comb # ------------ [3] CC="gcc" make combine1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [3] A regression test command failed: # CC="gcc" make combine1 # ------------ [4] CC="gcc" make combine10 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [4] A regression test command failed: # CC="gcc" make combine10 # ------------ [5] CC="gcc" make combine11 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [5] A regression test command failed: # CC="gcc" make combine11 # ------------ [6] CC="gcc" make combine12 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [6] A regression test command failed: # CC="gcc" make combine12 # ------------ [7] CC="gcc" make combine13 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [7] A regression test command failed: # CC="gcc" make combine13 # ------------ [8] CC="gcc" make combine14 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [8] A regression test command failed: # CC="gcc" make combine14 # ------------ [9] CC="gcc" make combine15 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [9] A regression test command failed: # CC="gcc" make combine15 # ------------ [10] CC="gcc" make combine16 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [10] A regression test command failed: # CC="gcc" make combine16 # ------------ [11] CC="gcc" make combine17 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [11] A regression test command failed: # CC="gcc" make combine17 # ------------ [12] CC="gcc" make combine18 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [12] A regression test command failed: # CC="gcc" make combine18 # ------------ [13] CC="gcc" make combine2 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [13] A regression test command failed: # CC="gcc" make combine2 # ------------ [14] CC="gcc" make combine20 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [14] A regression test command failed: # CC="gcc" make combine20 # ------------ [15] CC="gcc" make combine21 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [15] A regression test command failed: # CC="gcc" make combine21 # ------------ [16] (fail) CC="gcc" make combine22 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [17] A regression test command failed: # CC="gcc" make combine3 # ------------ [18] CC="gcc" make combine5 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [18] A regression test command failed: # CC="gcc" make combine5 # ------------ [19] CC="gcc" make combine6 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [19] A regression test command failed: # CC="gcc" make combine6 # ------------ [20] CC="gcc" make combine8 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [20] A regression test command failed: # CC="gcc" make combine8 # ------------ [21] (fail) CC="gcc" make combine9 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [22] CC="gcc" make combine_allocate MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [22] A regression test command failed: # CC="gcc" make combine_allocate MERGEINLINES=1 # ------------ [23] CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [23] A regression test command failed: # CC="gcc" make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 # ------------ [24] CC="gcc" make combine_init ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [24] A regression test command failed: # CC="gcc" make combine_init # ------------ [25] (fail) CC="gcc" make combine_node_alloc ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [27] A regression test command failed: # CC="gcc" make combine_sbump # ------------ [28] CC="gcc" make combine_sbumpB MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [28] A regression test command failed: # CC="gcc" make combine_sbumpB MERGEINLINES=1 # ------------ [29] CC="gcc" make combine_syserr MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [29] A regression test command failed: # CC="gcc" make combine_syserr MERGEINLINES=1 # ------------ [30] CC="gcc" make combine_theFunc MERGEINLINES=1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [30] A regression test command failed: # CC="gcc" make combine_theFunc MERGEINLINES=1 # ------------ [31] CC="gcc" make combinealias ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [31] A regression test command failed: # CC="gcc" make combinealias # ------------ [32] (fail) CC="gcc" make combinec99inline ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c99 -fcommon --merge \ # combine-c99inline_1.c combine-c99inline_2.c \ # -ocombine-c99inline.exe # ------------ [33] CC="gcc" make combineenum1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [33] A regression test command failed: # CC="gcc" make combineenum1 # ------------ [34] CC="gcc" make combineenum2 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [34] A regression test command failed: # CC="gcc" make combineenum2 # ------------ [35] CC="gcc" make combineenum3 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [35] A regression test command failed: # CC="gcc" make combineenum3 # ------------ [36] CC="gcc" make combinegnuinline ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [36] A regression test command failed: # CC="gcc" make combinegnuinline # ------------ [37] (fail) CC="gcc" make combineinline1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [38] CC="gcc" make combineinline2 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [38] A regression test command failed: # CC="gcc" make combineinline2 # ------------ [39] (fail) CC="gcc" make combineinline3 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [40] (fail) CC="gcc" make combineinline4 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [41] CC="gcc" make combineinline6 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [41] A regression test command failed: # CC="gcc" make combineinline6 # ------------ [42] CC="gcc" make combinelibrik ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [42] A regression test command failed: # CC="gcc" make combinelibrik # ------------ [43] CC="gcc" make combinestruct1 ------------ # cd ./small1; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [43] A regression test command failed: # CC="gcc" make combinestruct1 # ------------ [44] CC="gcc" make merge-ar ------------ # cd small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --merge -c merge-ar.c merge-twice-1.c # # [44] A regression test command failed: # CC="gcc" make merge-ar # ------------ [45] CC="gcc" make mergeinit ------------ # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [45] A regression test command failed: # CC="gcc" make mergeinit # ------------ [46] CC="gcc" make mergeinline ------------ # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats mergeinline1.c mergeinline2.c -o mergeinline.exe # # [46] A regression test command failed: # CC="gcc" make mergeinline # ------------ [47] CC="gcc" make mergestruct ------------ # cd ./small2; \ # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon mergestruct1.c mergestruct2.c -o mergestruct.exe # # [47] A regression test command failed: # CC="gcc" make mergestruct # ------------ [48] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats -fcommon comb1.c comb2.i comb3.s comb4.o -ocomb.exe # # [48] A regression test command failed: # CC="gcc" make mixedcomb # ------------ [49] CC="gcc" make runall/alpha ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test baseline returned with code 512. Expected success # # [49] A regression test command failed: # CC="gcc" make runall/alpha # ------------ [50] CC="gcc" make runall/extinline ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test bad returned with code 512. Expected failure # # [50] A regression test command failed: # CC="gcc" make runall/extinline # ------------ [51] CC="gcc" make runall/runall_misc ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test rbrace returned with code 512. Expected failure # # [51] A regression test command failed: # CC="gcc" make runall/runall_misc # ------------ [52] CC="gcc" make runall/structattr2 ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test archspecific returned with code 512. Expected success # # [52] A regression test command failed: # CC="gcc" make runall/structattr2 # ------------ [53] CC="gcc" make runall/switch ------------ # cd ./small2; \ # CCURED_NO_SIGABRT=1 \ # COMMAND="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Test baseline returned with code 512. Expected success # # [53] A regression test command failed: # CC="gcc" make runall/switch # ------------ [54] CC="gcc" make scott-nogcc/bogus_redef ------------ # rm -f ./small2/bogus_redef.exe # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [54] A regression test command failed: # CC="gcc" make scott-nogcc/bogus_redef # ------------ [55] CC="gcc" make scott-nogcc/funcname ------------ # rm -f ./small2/funcname.exe # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [55] A regression test command failed: # CC="gcc" make scott-nogcc/funcname # ------------ [56] CC="gcc" make scott-nolink/brlock ------------ # rm -f ./small2/brlock.exe # cd ./small2; gcc -c -Wall brlock.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [56] A regression test command failed: # CC="gcc" make scott-nolink/brlock # ------------ [57] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [57] A regression test command failed: # CC="gcc" make scott/arrayinit # ------------ [58] (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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [59] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [59] A regression test command failed: # CC="gcc" make scott/bisonerror # ------------ [60] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [60] A regression test command failed: # CC="gcc" make scott/cmpzero # ------------ [61] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [61] A regression test command failed: # CC="gcc" make scott/constdecl # ------------ [62] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [62] A regression test command failed: # CC="gcc" make scott/constfold # ------------ [63] 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/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [63] A regression test command failed: # CC="gcc" make scott/ctype # ------------ [64] CC="gcc" make scott/enumattr ------------ # rm -f ./small2/enumattr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enumattr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # enumattr.c \ # -oenumattr.exe # # [64] A regression test command failed: # CC="gcc" make scott/enumattr # ------------ [65] CC="gcc" make scott/enumerator_sizeof ------------ # rm -f ./small2/enumerator_sizeof.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enumerator_sizeof.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # enumerator_sizeof.c \ # -oenumerator_sizeof.exe # # [65] A regression test command failed: # CC="gcc" make scott/enumerator_sizeof # ------------ [66] CC="gcc" make scott/enuminit ------------ # rm -f ./small2/enuminit.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enuminit.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # enuminit.c \ # -oenuminit.exe # # [66] A regression test command failed: # CC="gcc" make scott/enuminit # ------------ [67] CC="gcc" make scott/errorinfn ------------ # rm -f ./small2/errorinfn.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall errorinfn.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # errorinfn.c \ # -oerrorinfn.exe # # [67] A regression test command failed: # CC="gcc" make scott/errorinfn # ------------ [68] CC="gcc" make scott/funcptr ------------ # rm -f ./small2/funcptr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall funcptr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # funcptr.c \ # -ofuncptr.exe # # [68] A regression test command failed: # CC="gcc" make scott/funcptr # ------------ [69] CC="gcc" make scott/gimpdouble ------------ # rm -f ./small2/gimpdouble.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall gimpdouble.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # gimpdouble.c \ # -ogimpdouble.exe # # [69] A regression test command failed: # CC="gcc" make scott/gimpdouble # ------------ [70] (fail) CC="gcc" make scott/globalprob ------------ # rm -f ./small2/globalprob.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall globalprob.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # globalprob.c \ # -oglobalprob.exe # ------------ [71] CC="gcc" make scott/initedextern ------------ # rm -f ./small2/initedextern.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall initedextern.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # initedextern.c \ # -oinitedextern.exe # # [71] A regression test command failed: # CC="gcc" make scott/initedextern # ------------ [72] CC="gcc" make scott/invalredef ------------ # rm -f ./small2/invalredef.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall invalredef.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # invalredef.c \ # -oinvalredef.exe # # [72] A regression test command failed: # CC="gcc" make scott/invalredef # ------------ [73] CC="gcc" make scott/invalredef2 ------------ # rm -f ./small2/invalredef2.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall invalredef2.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # invalredef2.c \ # -oinvalredef2.exe # # [73] A regression test command failed: # CC="gcc" make scott/invalredef2 # ------------ [74] CC="gcc" make scott/kernel1 ------------ # rm -f ./small2/kernel1.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall kernel1.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # kernel1.c \ # -okernel1.exe # # [74] A regression test command failed: # CC="gcc" make scott/kernel1 # ------------ [75] CC="gcc" make scott/kernel2 ------------ # rm -f ./small2/kernel2.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall kernel2.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # kernel2.c \ # -okernel2.exe # # [75] A regression test command failed: # CC="gcc" make scott/kernel2 # ------------ [76] CC="gcc" make scott/lexnum ------------ # rm -f ./small2/lexnum.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall lexnum.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # lexnum.c \ # -olexnum.exe # # [76] A regression test command failed: # CC="gcc" make scott/lexnum # ------------ [77] CC="gcc" make scott/litstruct ------------ # rm -f ./small2/litstruct.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall litstruct.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # litstruct.c \ # -olitstruct.exe # # [77] A regression test command failed: # CC="gcc" make scott/litstruct # ------------ [78] CC="gcc" make scott/main ------------ # rm -f ./small2/main.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall main.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # main.c \ # -omain.exe # # [78] A regression test command failed: # CC="gcc" make scott/main # ------------ [79] CC="gcc" make scott/memberofptr ------------ # rm -f ./small2/memberofptr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall memberofptr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # memberofptr.c \ # -omemberofptr.exe # # [79] A regression test command failed: # CC="gcc" make scott/memberofptr # ------------ [80] CC="gcc" make scott/mode_sizes ------------ # rm -f ./small2/mode_sizes.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall mode_sizes.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # mode_sizes.c \ # -omode_sizes.exe # # [80] A regression test command failed: # CC="gcc" make scott/mode_sizes # ------------ [81] CC="gcc" make scott/multiplestatics ------------ # rm -f ./small2/multiplestatics.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall multiplestatics.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # multiplestatics.c \ # -omultiplestatics.exe # # [81] A regression test command failed: # CC="gcc" make scott/multiplestatics # ------------ [82] CC="gcc" make scott/neg64 ------------ # rm -f ./small2/neg64.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall neg64.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # neg64.c \ # -oneg64.exe # # [82] A regression test command failed: # CC="gcc" make scott/neg64 # ------------ [83] CC="gcc" make scott/oldstyle ------------ # rm -f ./small2/oldstyle.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall oldstyle.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # oldstyle.c \ # -ooldstyle.exe # # [83] A regression test command failed: # CC="gcc" make scott/oldstyle # ------------ [84] CC="gcc" make scott/open ------------ # rm -f ./small2/open.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall open.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # open.c \ # -oopen.exe # # [84] A regression test command failed: # CC="gcc" make scott/open # ------------ [85] CC="gcc" make scott/partialbracket ------------ # rm -f ./small2/partialbracket.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall partialbracket.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # partialbracket.c \ # -opartialbracket.exe # # [85] A regression test command failed: # CC="gcc" make scott/partialbracket # ------------ [86] CC="gcc" make scott/putc ------------ # rm -f ./small2/putc.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall putc.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # putc.c \ # -oputc.exe # # [86] A regression test command failed: # CC="gcc" make scott/putc # ------------ [87] (fail) CC="gcc" make scott/regparm0 ------------ # rm -f ./small2/regparm0.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall regparm0.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # regparm0.c \ # -oregparm0.exe # ------------ [88] CC="gcc" make scott/s59 ------------ # rm -f ./small2/s59.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall s59.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # s59.c \ # -os59.exe # # [88] A regression test command failed: # CC="gcc" make scott/s59 # ------------ [89] CC="gcc" make scott/sizeofchar ------------ # rm -f ./small2/sizeofchar.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall sizeofchar.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # sizeofchar.c \ # -osizeofchar.exe # # [89] A regression test command failed: # CC="gcc" make scott/sizeofchar # ------------ [90] CC="gcc" make scott/sockaddr ------------ # rm -f ./small2/sockaddr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall sockaddr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # sockaddr.c \ # -osockaddr.exe # # [90] A regression test command failed: # CC="gcc" make scott/sockaddr # ------------ [91] CC="gcc" make scott/struct_cs ------------ # rm -f ./small2/struct_cs.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall struct_cs.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # struct_cs.c \ # -ostruct_cs.exe # # [91] A regression test command failed: # CC="gcc" make scott/struct_cs # ------------ [92] CC="gcc" make scott/structattr ------------ # rm -f ./small2/structattr.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall structattr.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # structattr.c \ # -ostructattr.exe # # [92] A regression test command failed: # CC="gcc" make scott/structattr # ------------ [93] CC="gcc" make scott/structattr3 ------------ # rm -f ./small2/structattr3.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall structattr3.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # structattr3.c \ # -ostructattr3.exe # # [93] A regression test command failed: # CC="gcc" make scott/structattr3 # ------------ [94] CC="gcc" make scott/thing ------------ # rm -f ./small2/thing.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall thing.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # thing.c \ # -othing.exe # # [94] A regression test command failed: # CC="gcc" make scott/thing # ------------ [95] CC="gcc" make scott/transpunion ------------ # rm -f ./small2/transpunion.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall transpunion.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # transpunion.c \ # -otranspunion.exe # # [95] A regression test command failed: # CC="gcc" make scott/transpunion # ------------ [96] CC="gcc" make scott/typeof ------------ # rm -f ./small2/typeof.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall typeof.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # typeof.c \ # -otypeof.exe # # [96] A regression test command failed: # CC="gcc" make scott/typeof # ------------ [97] CC="gcc" make scott/uninit_tmp ------------ # rm -f ./small2/uninit_tmp.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall uninit_tmp.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # uninit_tmp.c \ # -ouninit_tmp.exe # # [97] A regression test command failed: # CC="gcc" make scott/uninit_tmp # ------------ [98] CC="gcc" make scott/unionassign ------------ # rm -f ./small2/unionassign.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall unionassign.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # unionassign.c \ # -ounionassign.exe # # [98] A regression test command failed: # CC="gcc" make scott/unionassign # ------------ [99] CC="gcc" make scott/unscomp ------------ # rm -f ./small2/unscomp.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall unscomp.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # unscomp.c \ # -ounscomp.exe # # [99] A regression test command failed: # CC="gcc" make scott/unscomp # ------------ [100] CC="gcc" make scott/volatilestruct ------------ # rm -f ./small2/volatilestruct.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall volatilestruct.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # volatilestruct.c \ # -ovolatilestruct.exe # # [100] A regression test command failed: # CC="gcc" make scott/volatilestruct # ------------ [101] CC="gcc" make scott/xcheckers ------------ # rm -f ./small2/xcheckers.exe # cd ./small2; gcc -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall xcheckers.c # cd ./small2; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --save-temps=. \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG --commPrintLn \ # xcheckers.c \ # -oxcheckers.exe # # [101] A regression test command failed: # CC="gcc" make scott/xcheckers # ------------ [102] CC="gcc" make test-bad/enuminit2 ------------ # cd ./small2; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS="-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad enuminit2.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS=-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 1 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall enuminit2-tmp.c -o enuminit2-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [102] A regression test command failed: # CC="gcc" make test-bad/enuminit2 # ------------ [103] CC="gcc" make test-bad/trivial-tb ------------ # cd ./small2; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS="-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad trivial-tb.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS=-D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 4 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall trivial-tb-tmp.c -o trivial-tb-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [103] A regression test command failed: # CC="gcc" make test-bad/trivial-tb # ------------ [104] CC="gcc" make test-bad1/flexible-array-member-bad ------------ # cd ./small1; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS=" -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad flexible-array-member-bad.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS= -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 1 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall flexible-array-member-bad-tmp.c -o flexible-array-member-bad-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [104] A regression test command failed: # CC="gcc" make test-bad1/flexible-array-member-bad # ------------ [105] CC="gcc" make test-bad1/wchar-bad ------------ # cd ./small1; \ # CILHOME="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/.." \ # CILLY="/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn" \ # CFLAGS=" -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall" \ # TESTBADONCE="" \ # _MSVC="" \ # bash ../test-bad wchar-bad.c # CILLY=/home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn # CFLAGS= -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall # there are 4 failure cases in this file # # # ********************** Iteration 0 # # # generating test 0 # /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn -D_GNUCC -Wall -g -ggdb -D_DEBUG -Wall wchar-bad-tmp.c -o wchar-bad-tmp.exe # The command failed! # The 0th iteration failed to CURE! It is supposed to succeed. # # [105] A regression test command failed: # CC="gcc" make test-bad1/wchar-bad # ------------ [106] CC="gcc" make test/align3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o align3.s align3.c # # [106] A regression test command failed: # CC="gcc" make test/align3 # ------------ [107] CC="gcc" make test/apachebits ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o apachebits.s apachebits.c # # [107] A regression test command failed: # CC="gcc" make test/apachebits # ------------ [108] (fail) CC="gcc" make test/argcast ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o argcast.s argcast.c # ------------ [109] CC="gcc" make test/array-size-trick ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array-size-trick.s array-size-trick.c # # [109] A regression test command failed: # CC="gcc" make test/array-size-trick # ------------ [110] CC="gcc" make test/array1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array1.s array1.c # # [110] A regression test command failed: # CC="gcc" make test/array1 # ------------ [111] CC="gcc" make test/array2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o array2.s array2.c # # [111] A regression test command failed: # CC="gcc" make test/array2 # ------------ [112] CC="gcc" make test/arrsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o arrsize.s arrsize.c # # [112] A regression test command failed: # CC="gcc" make test/arrsize # ------------ [113] CC="gcc" make test/asm2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm2.s asm2.c # # [113] A regression test command failed: # CC="gcc" make test/asm2 # ------------ [114] CC="gcc" make test/asm3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm3.s asm3.c # # [114] A regression test command failed: # CC="gcc" make test/asm3 # ------------ [115] CC="gcc" make test/asm4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm4.s asm4.c # # [115] A regression test command failed: # CC="gcc" make test/asm4 # ------------ [116] CC="gcc" make test/asm_emptyclobberallowed ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o asm_emptyclobberallowed.s asm_emptyclobberallowed.c # # [116] A regression test command failed: # CC="gcc" make test/asm_emptyclobberallowed # ------------ [117] CC="gcc" make test/attr10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr10.s attr10.c # # [117] A regression test command failed: # CC="gcc" make test/attr10 # ------------ [118] CC="gcc" make test/attr11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr11.s attr11.c # # [118] A regression test command failed: # CC="gcc" make test/attr11 # ------------ [119] CC="gcc" make test/attr12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr12.s attr12.c # # [119] A regression test command failed: # CC="gcc" make test/attr12 # ------------ [120] CC="gcc" make test/attr13 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr13.s attr13.c # # [120] A regression test command failed: # CC="gcc" make test/attr13 # ------------ [121] CC="gcc" make test/attr2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr2.s attr2.c # # [121] A regression test command failed: # CC="gcc" make test/attr2 # ------------ [122] CC="gcc" make test/attr3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr3.s attr3.c # # [122] A regression test command failed: # CC="gcc" make test/attr3 # ------------ [123] CC="gcc" make test/attr6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr6.s attr6.c # # [123] A regression test command failed: # CC="gcc" make test/attr6 # ------------ [124] CC="gcc" make test/attr7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr7.s attr7.c # # [124] A regression test command failed: # CC="gcc" make test/attr7 # ------------ [125] CC="gcc" make test/attr8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o attr8.s attr8.c # # [125] A regression test command failed: # CC="gcc" make test/attr8 # ------------ [126] CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o attr9.s attr9.c # # [126] A regression test command failed: # CC="gcc" make test/attr9 WARNINGS_ARE_ERRORS=1 # ------------ [127] CC="gcc" make test/bitfield ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o bitfield.s bitfield.c # # [127] A regression test command failed: # CC="gcc" make test/bitfield # ------------ [128] (fail) CC="gcc" make test/break1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o break1.s break1.c # ------------ [129] CC="gcc" make test/builtin2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o builtin2.s builtin2.c # # [129] A regression test command failed: # CC="gcc" make test/builtin2 # ------------ [130] CC="gcc" make test/builtin5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o builtin5.s builtin5.c # # [130] A regression test command failed: # CC="gcc" make test/builtin5 # ------------ [131] CC="gcc" make test/cast1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast1.s cast1.c # # [131] A regression test command failed: # CC="gcc" make test/cast1 # ------------ [132] CC="gcc" make test/cast2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast2.s cast2.c # # [132] A regression test command failed: # CC="gcc" make test/cast2 # ------------ [133] CC="gcc" make test/cast4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cast4.s cast4.c # # [133] A regression test command failed: # CC="gcc" make test/cast4 # ------------ [134] CC="gcc" make test/castcall ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o castcall.s castcall.c # # [134] A regression test command failed: # CC="gcc" make test/castcall # ------------ [135] CC="gcc" make test/castunion ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o castunion.s castunion.c # # [135] A regression test command failed: # CC="gcc" make test/castunion # ------------ [136] CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o const-struct-init.s const-struct-init.c # # [136] A regression test command failed: # CC="gcc" make test/const-struct-init WARNINGS_ARE_ERRORS=1 # ------------ [137] (fail) CC="gcc" make test/const13 WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o const13.s const13.c # ------------ [138] CC="gcc" make test/const14 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const14.s const14.c # # [138] A regression test command failed: # CC="gcc" make test/const14 # ------------ [139] CC="gcc" make test/const7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const7.s const7.c # # [139] A regression test command failed: # CC="gcc" make test/const7 # ------------ [140] CC="gcc" make test/const9 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o const9.s const9.c # # [140] A regression test command failed: # CC="gcc" make test/const9 # ------------ [141] CC="gcc" make test/constprop ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o constprop.s constprop.c # # [141] A regression test command failed: # CC="gcc" make test/constprop # ------------ [142] CC="gcc" make test/constrexpr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o constrexpr.s constrexpr.c # # [142] A regression test command failed: # CC="gcc" make test/constrexpr # ------------ [143] (fail) CC="gcc" make test/cpp-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cpp-2.s cpp-2.c # ------------ [144] CC="gcc" make test/cpp-3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o cpp-3.s cpp-3.c # # [144] A regression test command failed: # CC="gcc" make test/cpp-3 # ------------ [145] (fail) CC="gcc" make test/decl2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o decl2.s decl2.c # ------------ [146] CC="gcc" make test/deref ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o deref.s deref.c # # [146] A regression test command failed: # CC="gcc" make test/deref # ------------ [147] CC="gcc" make test/duplicate ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o duplicate.s duplicate.c # # [147] A regression test command failed: # CC="gcc" make test/duplicate # ------------ [148] CC="gcc" make test/enum ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o enum.s enum.c # # [148] A regression test command failed: # CC="gcc" make test/enum # ------------ [149] CC="gcc" make test/enum-scope ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o enum-scope.s enum-scope.c # # [149] A regression test command failed: # CC="gcc" make test/enum-scope # ------------ [150] CC="gcc" make test/extinline3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o extinline3.s extinline3.c # # [150] A regression test command failed: # CC="gcc" make test/extinline3 # ------------ [151] CC="gcc" make test/func ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o func.s func.c # # [151] A regression test command failed: # CC="gcc" make test/func # ------------ [152] (fail) CC="gcc" make test/func10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o func10.s func10.c # ------------ [153] (fail) CC="gcc" make test/funcarg ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o funcarg.s funcarg.c # ------------ [154] CC="gcc" make test/globals ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o globals.s globals.c # # [154] A regression test command failed: # CC="gcc" make test/globals # ------------ [155] (fail) CC="gcc" make test/globals2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o globals2.s globals2.c # ------------ [156] CC="gcc" make test/huff1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o huff1.s huff1.c # # [156] A regression test command failed: # CC="gcc" make test/huff1 # ------------ [157] CC="gcc" make test/init ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o init.s init.c # # [157] A regression test command failed: # CC="gcc" make test/init # ------------ [158] CC="gcc" make test/init8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o init8.s init8.c # # [158] A regression test command failed: # CC="gcc" make test/init8 # ------------ [159] CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o initial.s initial.c # # [159] A regression test command failed: # CC="gcc" make test/initial WARNINGS_ARE_ERRORS=1 # ------------ [160] CC="gcc" make test/inline3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o inline3.s inline3.c # # [160] A regression test command failed: # CC="gcc" make test/inline3 # ------------ [161] CC="gcc" make test/jmp_buf ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o jmp_buf.s jmp_buf.c # # [161] A regression test command failed: # CC="gcc" make test/jmp_buf # ------------ [162] CC="gcc" make test/label5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label5.s label5.c # # [162] A regression test command failed: # CC="gcc" make test/label5 # ------------ [163] CC="gcc" make test/label7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label7.s label7.c # # [163] A regression test command failed: # CC="gcc" make test/label7 # ------------ [164] CC="gcc" make test/label8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label8.s label8.c # # [164] A regression test command failed: # CC="gcc" make test/label8 # ------------ [165] CC="gcc" make test/label9 EXTRAARGS=--domakeCFG ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o label9.s label9.c # # [165] A regression test command failed: # CC="gcc" make test/label9 EXTRAARGS=--domakeCFG # ------------ [166] CC="gcc" make test/li ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o li.s li.c # # [166] A regression test command failed: # CC="gcc" make test/li # ------------ [167] CC="gcc" make test/linux_atomic ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o linux_atomic.s linux_atomic.c # # [167] A regression test command failed: # CC="gcc" make test/linux_atomic # ------------ [168] CC="gcc" make test/linuxcombine1_1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o linuxcombine1_1.s linuxcombine1_1.c # # [168] A regression test command failed: # CC="gcc" make test/linuxcombine1_1 # ------------ [169] CC="gcc" make test/list ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o list.s list.c # # [169] A regression test command failed: # CC="gcc" make test/list # ------------ [170] CC="gcc" make test/matrix ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o matrix.s matrix.c # # [170] A regression test command failed: # CC="gcc" make test/matrix # ------------ [171] CC="gcc" make test/noreturn ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o noreturn.s noreturn.c # # [171] A regression test command failed: # CC="gcc" make test/noreturn # ------------ [172] CC="gcc" make test/outofmem ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o outofmem.s outofmem.c # # [172] A regression test command failed: # CC="gcc" make test/outofmem # ------------ [173] CC="gcc" make test/packed2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o packed2.s packed2.c # # [173] A regression test command failed: # CC="gcc" make test/packed2 # ------------ [174] CC="gcc" make test/power1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o power1.s power1.c # # [174] A regression test command failed: # CC="gcc" make test/power1 # ------------ [175] CC="gcc" make test/printf ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o printf.s printf.c # # [175] A regression test command failed: # CC="gcc" make test/printf # ------------ [176] CC="gcc" make test/printf_const ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o printf_const.s printf_const.c # # [176] A regression test command failed: # CC="gcc" make test/printf_const # ------------ [177] (fail) CC="gcc" make test/proto1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o proto1.s proto1.c # ------------ [178] (fail) CC="gcc" make test/proto2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o proto2.s proto2.c # ------------ [179] CC="gcc" make test/pure ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o pure.s pure.c # # [179] A regression test command failed: # CC="gcc" make test/pure # ------------ [180] CC="gcc" make test/restrict EXTRAARGS=-std=c9x ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps -std=c9x --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o restrict.s restrict.c # # [180] A regression test command failed: # CC="gcc" make test/restrict EXTRAARGS=-std=c9x # ------------ [181] CC="gcc" make test/restrict1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o restrict1.s restrict1.c # # [181] A regression test command failed: # CC="gcc" make test/restrict1 # ------------ [182] CC="gcc" make test/retval ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o retval.s retval.c # # [182] A regression test command failed: # CC="gcc" make test/retval # ------------ [183] CC="gcc" make test/scope12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope12.s scope12.c # # [183] A regression test command failed: # CC="gcc" make test/scope12 # ------------ [184] CC="gcc" make test/scope2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope2.s scope2.c # # [184] A regression test command failed: # CC="gcc" make test/scope2 # ------------ [185] (fail) CC="gcc" make test/scope3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope3.s scope3.c # ------------ [186] CC="gcc" make test/scope4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o scope4.s scope4.c # # [186] A regression test command failed: # CC="gcc" make test/scope4 # ------------ [187] CC="gcc" make test/shell-escape SHELL_ESCAPE=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG "-DSTDIO=" '-DTEST="testharness.h"' -S -o shell-escape.s shell-escape.c # # [187] A regression test command failed: # CC="gcc" make test/shell-escape SHELL_ESCAPE=1 # ------------ [188] (fail) CC="gcc" make test/sizeof3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sizeof3.s sizeof3.c # ------------ [189] CC="gcc" make test/static ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o static.s static.c # # [189] A regression test command failed: # CC="gcc" make test/static # ------------ [190] CC="gcc" make test/static1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o static1.s static1.c # # [190] A regression test command failed: # CC="gcc" make test/static1 # ------------ [191] CC="gcc" make test/strcpy ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o strcpy.s strcpy.c # # [191] A regression test command failed: # CC="gcc" make test/strcpy # ------------ [192] CC="gcc" make test/struct_init ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o struct_init.s struct_init.c # # [192] A regression test command failed: # CC="gcc" make test/struct_init # ------------ [193] CC="gcc" make test/structassign ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o structassign.s structassign.c # # [193] A regression test command failed: # CC="gcc" make test/structassign # ------------ [194] (fail) CC="gcc" make test/switch_default_parse_bug ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o switch_default_parse_bug.s switch_default_parse_bug.c # ------------ [195] CC="gcc" make test/sync-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-1.s sync-1.c # # [195] A regression test command failed: # CC="gcc" make test/sync-1 # ------------ [196] CC="gcc" make test/sync-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-2.s sync-2.c # # [196] A regression test command failed: # CC="gcc" make test/sync-2 # ------------ [197] CC="gcc" make test/sync-3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o sync-3.s sync-3.c # # [197] A regression test command failed: # CC="gcc" make test/sync-3 # ------------ [198] CC="gcc" make test/tags ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o tags.s tags.c # # [198] A regression test command failed: # CC="gcc" make test/tags # ------------ [199] CC="gcc" make test/task ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o task.s task.c # # [199] A regression test command failed: # CC="gcc" make test/task # ------------ [200] CC="gcc" make test/unimplemented ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o unimplemented.s unimplemented.c # # [200] A regression test command failed: # CC="gcc" make test/unimplemented # ------------ [201] CC="gcc" make test/union5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o union5.s union5.c # # [201] A regression test command failed: # CC="gcc" make test/union5 # ------------ [202] CC="gcc" make test/va_arg_pack ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o va_arg_pack.s va_arg_pack.c # # [202] A regression test command failed: # CC="gcc" make test/va_arg_pack # ------------ [203] CC="gcc" make test/vararg7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o vararg7.s vararg7.c # # [203] A regression test command failed: # CC="gcc" make test/vararg7 # ------------ [204] CC="gcc" make test/voidstar ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o voidstar.s voidstar.c # # [204] A regression test command failed: # CC="gcc" make test/voidstar # ------------ [205] CC="gcc" make test/voidtypedef ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o voidtypedef.s voidtypedef.c # # [205] A regression test command failed: # CC="gcc" make test/voidtypedef # ------------ [206] CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o warnings-cast.s warnings-cast.c # # [206] A regression test command failed: # CC="gcc" make test/warnings-cast WARNINGS_ARE_ERRORS=1 # ------------ [207] CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -std=gnu90 -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -S -o warnings-noreturn.s warnings-noreturn.c # # [207] A regression test command failed: # CC="gcc" make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 # ------------ [208] CC="gcc" make test_i/empty ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o empty.s empty.i # # [208] A regression test command failed: # CC="gcc" make test_i/empty # ------------ [209] CC="gcc" make test_i/lineno ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -S -o lineno.s lineno.i # # [209] A regression test command failed: # CC="gcc" make test_i/lineno # ------------ [210] CC="gcc" make testc11/alignas ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oalignas.exe alignas.c -lm # # [210] A regression test command failed: # CC="gcc" make testc11/alignas # ------------ [211] (fail) CC="gcc" make testc11/clang-c11-generic-1-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-1-1.exe clang-c11-generic-1-1.c -lm # ------------ [212] (fail) CC="gcc" make testc11/clang-c11-generic-1-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-1-2.exe clang-c11-generic-1-2.c -lm # ------------ [213] CC="gcc" make testc11/clang-c11-generic-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=c11 -oclang-c11-generic-2.exe clang-c11-generic-2.c -lm # # [213] A regression test command failed: # CC="gcc" make testc11/clang-c11-generic-2 # ------------ [214] (fail) CC="gcc" make testc11/gcc-c11-generic-2-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-2-1.exe gcc-c11-generic-2-1.c -lm # ------------ [215] (fail) CC="gcc" make testc11/gcc-c11-generic-2-7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-2-7.exe gcc-c11-generic-2-7.c -lm # ------------ [216] CC="gcc" make testc11/gcc-c11-generic-3-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-1.exe gcc-c11-generic-3-1.c -lm # # [216] A regression test command failed: # CC="gcc" make testc11/gcc-c11-generic-3-1 # ------------ [217] (fail) CC="gcc" make testc11/gcc-c11-generic-3-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-2.exe gcc-c11-generic-3-2.c -lm # ------------ [218] (fail) CC="gcc" make testc11/gcc-c11-generic-3-3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-3.exe gcc-c11-generic-3-3.c -lm # ------------ [219] (fail) CC="gcc" make testc11/gcc-c11-generic-3-4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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-3-4.exe gcc-c11-generic-3-4.c -lm # ------------ [220] CC="gcc" make testobj/asm5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -c -D_GNUCC -Wall -g -ggdb -D_DEBUG -oasm5.o asm5.c # # [220] A regression test command failed: # CC="gcc" make testobj/asm5 # ------------ [221] CC="gcc" make testrun/addr-array ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddr-array.exe addr-array.c # # [221] A regression test command failed: # CC="gcc" make testrun/addr-array # ------------ [222] CC="gcc" make testrun/addr-string ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddr-string.exe addr-string.c # # [222] A regression test command failed: # CC="gcc" make testrun/addr-string # ------------ [223] CC="gcc" make testrun/addrof3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oaddrof3.exe addrof3.c # # [223] A regression test command failed: # CC="gcc" make testrun/addrof3 # ------------ [224] CC="gcc" make testrun/align1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oalign1.exe align1.c # # [224] A regression test command failed: # CC="gcc" make testrun/align1 # ------------ [225] CC="gcc" make testrun/align2 EXTRAARGS=-O2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps -O2 --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oalign2.exe align2.c # # [225] A regression test command failed: # CC="gcc" make testrun/align2 EXTRAARGS=-O2 # ------------ [226] CC="gcc" make testrun/apachebuf ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oapachebuf.exe apachebuf.c # # [226] A regression test command failed: # CC="gcc" make testrun/apachebuf # ------------ [227] CC="gcc" make testrun/apachefptr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oapachefptr.exe apachefptr.c # # [227] A regression test command failed: # CC="gcc" make testrun/apachefptr # ------------ [228] CC="gcc" make testrun/array_formal ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_formal.exe array_formal.c # # [228] A regression test command failed: # CC="gcc" make testrun/array_formal # ------------ [229] (fail) CC="gcc" make testrun/array_multi_varsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_multi_varsize.exe array_multi_varsize.c # ------------ [230] CC="gcc" make testrun/array_varsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarray_varsize.exe array_varsize.c # # [230] A regression test command failed: # CC="gcc" make testrun/array_varsize # ------------ [231] CC="gcc" make testrun/arrayinitsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oarrayinitsize.exe arrayinitsize.c # # [231] A regression test command failed: # CC="gcc" make testrun/arrayinitsize # ------------ [232] CC="gcc" make testrun/asm1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oasm1.exe asm1.c # # [232] A regression test command failed: # CC="gcc" make testrun/asm1 # ------------ [233] CC="gcc" make testrun/assign ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oassign.exe assign.c # # [233] A regression test command failed: # CC="gcc" make testrun/assign # ------------ [234] CC="gcc" make testrun/attr-in-decllist ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oattr-in-decllist.exe attr-in-decllist.c # # [234] A regression test command failed: # CC="gcc" make testrun/attr-in-decllist # ------------ [235] CC="gcc" make testrun/attr4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oattr4.exe attr4.c # # [235] A regression test command failed: # CC="gcc" make testrun/attr4 # ------------ [236] CC="gcc" make testrun/attr5 ------------ # This Makefile is intended to be run with an explicit target. # ------------ [237] CC="gcc" make testrun/bitfield2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obitfield2.exe bitfield2.c # # [237] A regression test command failed: # CC="gcc" make testrun/bitfield2 # ------------ [238] CC="gcc" make testrun/bitfield3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obitfield3.exe bitfield3.c # # [238] A regression test command failed: # CC="gcc" make testrun/bitfield3 # ------------ [239] CC="gcc" make testrun/blockattr2 USECFG=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --domakeCFG --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oblockattr2.exe blockattr2.c # # [239] A regression test command failed: # CC="gcc" make testrun/blockattr2 USECFG=1 # ------------ [240] CC="gcc" make testrun/bool ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obool.exe bool.c # # [240] A regression test command failed: # CC="gcc" make testrun/bool # ------------ [241] CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --useLogicalOperators --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obooleanOp.exe booleanOp.c # # [241] A regression test command failed: # CC="gcc" make testrun/booleanOp USE_LOGICAL_OPERATORS=1 # ------------ [242] CC="gcc" make testrun/builtin ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin.exe builtin.c # # [242] A regression test command failed: # CC="gcc" make testrun/builtin # ------------ [243] CC="gcc" make testrun/builtin3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin3.exe builtin3.c # # [243] A regression test command failed: # CC="gcc" make testrun/builtin3 # ------------ [244] CC="gcc" make testrun/builtin4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin4.exe builtin4.c # # [244] A regression test command failed: # CC="gcc" make testrun/builtin4 # ------------ [245] CC="gcc" make testrun/builtin_choose_expr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -obuiltin_choose_expr.exe builtin_choose_expr.c # # [245] A regression test command failed: # CC="gcc" make testrun/builtin_choose_expr # ------------ [246] CC="gcc" make testrun/call2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocall2.exe call2.c # # [246] A regression test command failed: # CC="gcc" make testrun/call2 # ------------ [247] CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocase_then_default_in_switch.exe case_then_default_in_switch.c # # [247] A regression test command failed: # CC="gcc" make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG # ------------ [248] CC="gcc" make testrun/caserange ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocaserange.exe caserange.c # # [248] A regression test command failed: # CC="gcc" make testrun/caserange # ------------ [249] CC="gcc" make testrun/cast8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocast8.exe cast8.c # # [249] A regression test command failed: # CC="gcc" make testrun/cast8 # ------------ [250] CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -ocastincr.exe castincr.c # # [250] A regression test command failed: # CC="gcc" make testrun/castincr WARNINGS_ARE_ERRORS=1 # ------------ [251] CC="gcc" make testrun/comma1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocomma1.exe comma1.c # # [251] A regression test command failed: # CC="gcc" make testrun/comma1 # ------------ [252] CC="gcc" make testrun/comparisons ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocomparisons.exe comparisons.c # # [252] A regression test command failed: # CC="gcc" make testrun/comparisons # ------------ [253] (fail) CC="gcc" make testrun/compound1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocompound1.exe compound1.c # ------------ [254] CC="gcc" make testrun/compound2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocompound2.exe compound2.c # # [254] A regression test command failed: # CC="gcc" make testrun/compound2 # ------------ [255] CC="gcc" make testrun/cond1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocond1.exe cond1.c # # [255] A regression test command failed: # CC="gcc" make testrun/cond1 # ------------ [256] CC="gcc" make testrun/cond2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ocond2.exe cond2.c # # [256] A regression test command failed: # CC="gcc" make testrun/cond2 # ------------ [257] CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oconst-array-init.exe const-array-init.c # # [257] A regression test command failed: # CC="gcc" make testrun/const-array-init WARNINGS_ARE_ERRORS=1 # ------------ [258] CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oconst-struct-init.exe const-struct-init.c # # [258] A regression test command failed: # CC="gcc" make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 # ------------ [259] CC="gcc" make testrun/const1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst1.exe const1.c # # [259] A regression test command failed: # CC="gcc" make testrun/const1 # ------------ [260] CC="gcc" make testrun/const10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst10.exe const10.c # # [260] A regression test command failed: # CC="gcc" make testrun/const10 # ------------ [261] CC="gcc" make testrun/const11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst11.exe const11.c # # [261] A regression test command failed: # CC="gcc" make testrun/const11 # ------------ [262] CC="gcc" make testrun/const12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst12.exe const12.c # # [262] A regression test command failed: # CC="gcc" make testrun/const12 # ------------ [263] CC="gcc" make testrun/const15 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst15.exe const15.c # # [263] A regression test command failed: # CC="gcc" make testrun/const15 # ------------ [264] CC="gcc" make testrun/const16 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst16.exe const16.c # # [264] A regression test command failed: # CC="gcc" make testrun/const16 # ------------ [265] CC="gcc" make testrun/const2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst2.exe const2.c # # [265] A regression test command failed: # CC="gcc" make testrun/const2 # ------------ [266] CC="gcc" make testrun/const3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst3.exe const3.c # # [266] A regression test command failed: # CC="gcc" make testrun/const3 # ------------ [267] CC="gcc" make testrun/const4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst4.exe const4.c # # [267] A regression test command failed: # CC="gcc" make testrun/const4 # ------------ [268] CC="gcc" make testrun/const5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst5.exe const5.c # # [268] A regression test command failed: # CC="gcc" make testrun/const5 # ------------ [269] CC="gcc" make testrun/const6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst6.exe const6.c # # [269] A regression test command failed: # CC="gcc" make testrun/const6 # ------------ [270] CC="gcc" make testrun/const8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconst8.exe const8.c # # [270] A regression test command failed: # CC="gcc" make testrun/const8 # ------------ [271] (fail) CC="gcc" make testrun/constfold EXTRAARGS="--domakeCFG --dopartial" ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG --dopartial --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconstfold.exe constfold.c # ------------ [272] (fail) CC="gcc" make testrun/constfold2 EXTRAARGS="--domakeCFG -Wall -Wshift-overflow=3 -Werror" ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --domakeCFG -Wall -Wshift-overflow=3 -Werror --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oconstfold2.exe constfold2.c # ------------ [273] CC="gcc" make testrun/decl_mix_stmt ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -odecl_mix_stmt.exe decl_mix_stmt.c # # [273] A regression test command failed: # CC="gcc" make testrun/decl_mix_stmt # ------------ [274] CC="gcc" make testrun/enum2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oenum2.exe enum2.c # # [274] A regression test command failed: # CC="gcc" make testrun/enum2 # ------------ [275] CC="gcc" make testrun/escapes ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oescapes.exe escapes.c # # [275] A regression test command failed: # CC="gcc" make testrun/escapes # ------------ [276] CC="gcc" make testrun/extern1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oextern1.exe extern1.c # # [276] A regression test command failed: # CC="gcc" make testrun/extern1 # ------------ [277] CC="gcc" make testrun/extinline2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oextinline2.exe extinline2.c # # [277] A regression test command failed: # CC="gcc" make testrun/extinline2 # ------------ [278] CC="gcc" make testrun/fallthrough-label ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofallthrough-label.exe fallthrough-label.c # # [278] A regression test command failed: # CC="gcc" make testrun/fallthrough-label # ------------ [279] CC="gcc" make testrun/flexible-array-member ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oflexible-array-member.exe flexible-array-member.c # # [279] A regression test command failed: # CC="gcc" make testrun/flexible-array-member # ------------ [280] CC="gcc" make testrun/float ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofloat.exe float.c # # [280] A regression test command failed: # CC="gcc" make testrun/float # ------------ [281] CC="gcc" make testrun/float2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofloat2.exe float2.c # # [281] A regression test command failed: # CC="gcc" make testrun/float2 # ------------ [282] CC="gcc" make testrun/for1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofor1.exe for1.c # # [282] A regression test command failed: # CC="gcc" make testrun/for1 # ------------ [283] CC="gcc" make testrun/formalscope ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oformalscope.exe formalscope.c # # [283] A regression test command failed: # CC="gcc" make testrun/formalscope # ------------ [284] CC="gcc" make testrun/func2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc2.exe func2.c # # [284] A regression test command failed: # CC="gcc" make testrun/func2 # ------------ [285] CC="gcc" make testrun/func3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc3.exe func3.c # # [285] A regression test command failed: # CC="gcc" make testrun/func3 # ------------ [286] CC="gcc" make testrun/func4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunc4.exe func4.c # # [286] A regression test command failed: # CC="gcc" make testrun/func4 # ------------ [287] CC="gcc" make testrun/funptr1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ofunptr1.exe funptr1.c # # [287] A regression test command failed: # CC="gcc" make testrun/funptr1 # ------------ [288] CC="gcc" make testrun/init ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit.exe init.c # # [288] A regression test command failed: # CC="gcc" make testrun/init # ------------ [289] CC="gcc" make testrun/init1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit1.exe init1.c # # [289] A regression test command failed: # CC="gcc" make testrun/init1 # ------------ [290] CC="gcc" make testrun/init10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit10.exe init10.c # # [290] A regression test command failed: # CC="gcc" make testrun/init10 # ------------ [291] CC="gcc" make testrun/init11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit11.exe init11.c # # [291] A regression test command failed: # CC="gcc" make testrun/init11 # ------------ [292] CC="gcc" make testrun/init12 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit12.exe init12.c # # [292] A regression test command failed: # CC="gcc" make testrun/init12 # ------------ [293] CC="gcc" make testrun/init13 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit13.exe init13.c # # [293] A regression test command failed: # CC="gcc" make testrun/init13 # ------------ [294] CC="gcc" make testrun/init14 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit14.exe init14.c # # [294] A regression test command failed: # CC="gcc" make testrun/init14 # ------------ [295] CC="gcc" make testrun/init15 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit15.exe init15.c # # [295] A regression test command failed: # CC="gcc" make testrun/init15 # ------------ [296] CC="gcc" make testrun/init16 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit16.exe init16.c # # [296] A regression test command failed: # CC="gcc" make testrun/init16 # ------------ [297] CC="gcc" make testrun/init17 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit17.exe init17.c # # [297] A regression test command failed: # CC="gcc" make testrun/init17 # ------------ [298] CC="gcc" make testrun/init18 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit18.exe init18.c # # [298] A regression test command failed: # CC="gcc" make testrun/init18 # ------------ [299] CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -Werror -std=gnu90 -oinit19.exe init19.c # # [299] A regression test command failed: # CC="gcc" make testrun/init19 WARNINGS_ARE_ERRORS=1 # ------------ [300] CC="gcc" make testrun/init2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit2.exe init2.c # # [300] A regression test command failed: # CC="gcc" make testrun/init2 # ------------ [301] CC="gcc" make testrun/init20 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit20.exe init20.c # # [301] A regression test command failed: # CC="gcc" make testrun/init20 # ------------ [302] CC="gcc" make testrun/init21 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit21.exe init21.c # # [302] A regression test command failed: # CC="gcc" make testrun/init21 # ------------ [303] CC="gcc" make testrun/init22 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit22.exe init22.c # # [303] A regression test command failed: # CC="gcc" make testrun/init22 # ------------ [304] CC="gcc" make testrun/init3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit3.exe init3.c # # [304] A regression test command failed: # CC="gcc" make testrun/init3 # ------------ [305] CC="gcc" make testrun/init4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit4.exe init4.c # # [305] A regression test command failed: # CC="gcc" make testrun/init4 # ------------ [306] CC="gcc" make testrun/init5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit5.exe init5.c # # [306] A regression test command failed: # CC="gcc" make testrun/init5 # ------------ [307] CC="gcc" make testrun/init6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit6.exe init6.c # # [307] A regression test command failed: # CC="gcc" make testrun/init6 # ------------ [308] CC="gcc" make testrun/init9 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinit9.exe init9.c # # [308] A regression test command failed: # CC="gcc" make testrun/init9 # ------------ [309] CC="gcc" make testrun/initial ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinitial.exe initial.c # # [309] A regression test command failed: # CC="gcc" make testrun/initial # ------------ [310] (fail) CC="gcc" make testrun/inline1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinline1.exe inline1.c # ------------ [311] CC="gcc" make testrun/inline2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -oinline2.exe inline2.c # # [311] A regression test command failed: # CC="gcc" make testrun/inline2 # ------------ [312] CC="gcc" make testrun/label1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [312] A regression test command failed: # CC="gcc" make testrun/label1 # ------------ [313] CC="gcc" make testrun/label2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [313] A regression test command failed: # CC="gcc" make testrun/label2 # ------------ [314] CC="gcc" make testrun/label2b COMPUTEDGOTO=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [314] A regression test command failed: # CC="gcc" make testrun/label2b COMPUTEDGOTO=1 # ------------ [315] CC="gcc" make testrun/label3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [315] A regression test command failed: # CC="gcc" make testrun/label3 # ------------ [316] CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [316] A regression test command failed: # CC="gcc" make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 # ------------ [317] CC="gcc" make testrun/label4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [317] A regression test command failed: # CC="gcc" make testrun/label4 # ------------ [318] CC="gcc" make testrun/label4b COMPUTEDGOTO=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [318] A regression test command failed: # CC="gcc" make testrun/label4b COMPUTEDGOTO=1 # ------------ [319] CC="gcc" make testrun/label6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [319] A regression test command failed: # CC="gcc" make testrun/label6 # ------------ [320] CC="gcc" make testrun/land_expr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [320] A regression test command failed: # CC="gcc" make testrun/land_expr # ------------ [321] CC="gcc" make testrun/large_unsigned_long ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [321] A regression test command failed: # CC="gcc" make testrun/large_unsigned_long # ------------ [322] CC="gcc" make testrun/linux_signal ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [322] A regression test command failed: # CC="gcc" make testrun/linux_signal # ------------ [323] CC="gcc" make testrun/localinit ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [323] A regression test command failed: # CC="gcc" make testrun/localinit # ------------ [324] CC="gcc" make testrun/logical ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [324] A regression test command failed: # CC="gcc" make testrun/logical # ------------ [325] CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [325] A regression test command failed: # CC="gcc" make testrun/logical1 USE_LOGICAL_OPERATORS=1 # ------------ [326] CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [326] A regression test command failed: # CC="gcc" make testrun/logical2 USE_LOGICAL_OPERATORS=1 # ------------ [327] CC="gcc" make testrun/longBlock ------------ # ocamlfind ocamlc -I /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../../install/default/lib/goblint-cil -I /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [328] CC="gcc" make testrun/lval1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [328] A regression test command failed: # CC="gcc" make testrun/lval1 # ------------ [329] CC="gcc" make testrun/macro_hidden ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [329] A regression test command failed: # CC="gcc" make testrun/macro_hidden # ------------ [330] CC="gcc" make testrun/math1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [330] A regression test command failed: # CC="gcc" make testrun/math1 # ------------ [331] CC="gcc" make testrun/memcpy1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [331] A regression test command failed: # CC="gcc" make testrun/memcpy1 # ------------ [332] CC="gcc" make testrun/min ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [332] A regression test command failed: # CC="gcc" make testrun/min # ------------ [333] CC="gcc" make testrun/msvc1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [333] A regression test command failed: # CC="gcc" make testrun/msvc1 # ------------ [334] CC="gcc" make testrun/msvc5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [334] A regression test command failed: # CC="gcc" make testrun/msvc5 # ------------ [335] CC="gcc" make testrun/nan-global ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [335] A regression test command failed: # CC="gcc" make testrun/nan-global # ------------ [336] CC="gcc" make testrun/offsetof ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [336] A regression test command failed: # CC="gcc" make testrun/offsetof # ------------ [337] CC="gcc" make testrun/offsetof1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [337] A regression test command failed: # CC="gcc" make testrun/offsetof1 # ------------ [338] CC="gcc" make testrun/offsetof2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [338] A regression test command failed: # CC="gcc" make testrun/offsetof2 # ------------ [339] CC="gcc" make testrun/offsetof3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [339] A regression test command failed: # CC="gcc" make testrun/offsetof3 # ------------ [340] CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [340] A regression test command failed: # CC="gcc" make testrun/packed WARNINGS_ARE_ERRORS=1 # ------------ [341] CC="gcc" make testrun/percent400 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [341] A regression test command failed: # CC="gcc" make testrun/percent400 # ------------ [342] CC="gcc" make testrun/percentm ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [342] A regression test command failed: # CC="gcc" make testrun/percentm # ------------ [343] CC="gcc" make testrun/perror ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [343] A regression test command failed: # CC="gcc" make testrun/perror # ------------ [344] CC="gcc" make testrun/perror1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [344] A regression test command failed: # CC="gcc" make testrun/perror1 # ------------ [345] (fail) CC="gcc" make testrun/post-assign ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [346] CC="gcc" make testrun/printf2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [346] A regression test command failed: # CC="gcc" make testrun/printf2 # ------------ [347] CC="gcc" make testrun/question ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [347] A regression test command failed: # CC="gcc" make testrun/question # ------------ [348] CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [348] A regression test command failed: # CC="gcc" make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 # ------------ [349] CC="gcc" make testrun/question2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [349] A regression test command failed: # CC="gcc" make testrun/question2 # ------------ [350] CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [350] A regression test command failed: # CC="gcc" make testrun/question3 USE_LOGICAL_OPERATORS=1 # ------------ [351] CC="gcc" make testrun/return1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [351] A regression test command failed: # CC="gcc" make testrun/return1 # ------------ [352] CC="gcc" make testrun/returnvoid ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [352] A regression test command failed: # CC="gcc" make testrun/returnvoid # ------------ [353] CC="gcc" make testrun/returnvoid1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [353] A regression test command failed: # CC="gcc" make testrun/returnvoid1 # ------------ [354] (fail) CC="gcc" make testrun/rmtmps-attr ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps-attr.exe rmtmps-attr.c # ------------ [355] CC="gcc" make testrun/rmtmps1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps1.exe rmtmps1.c # # [355] A regression test command failed: # CC="gcc" make testrun/rmtmps1 # ------------ [356] CC="gcc" make testrun/rmtmps2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly --mode=GNUCC --decil --save-temps --strictcheck --stats --nomerge --commPrintLn \ # -D_GNUCC -Wall -g -ggdb -D_DEBUG -std=gnu90 -ormtmps2.exe rmtmps2.c # # [356] A regression test command failed: # CC="gcc" make testrun/rmtmps2 # ------------ [357] CC="gcc" make testrun/scope1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [357] A regression test command failed: # CC="gcc" make testrun/scope1 # ------------ [358] CC="gcc" make testrun/scope10 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [358] A regression test command failed: # CC="gcc" make testrun/scope10 # ------------ [359] CC="gcc" make testrun/scope11 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [359] A regression test command failed: # CC="gcc" make testrun/scope11 # ------------ [360] CC="gcc" make testrun/scope5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [360] A regression test command failed: # CC="gcc" make testrun/scope5 # ------------ [361] CC="gcc" make testrun/scope6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [361] A regression test command failed: # CC="gcc" make testrun/scope6 # ------------ [362] CC="gcc" make testrun/scope8 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [362] A regression test command failed: # CC="gcc" make testrun/scope8 # ------------ [363] CC="gcc" make testrun/scope9 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [363] A regression test command failed: # CC="gcc" make testrun/scope9 # ------------ [364] CC="gcc" make testrun/semicolon ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [364] A regression test command failed: # CC="gcc" make testrun/semicolon # ------------ [365] CC="gcc" make testrun/simon6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [365] A regression test command failed: # CC="gcc" make testrun/simon6 # ------------ [366] CC="gcc" make testrun/sizeof1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [366] A regression test command failed: # CC="gcc" make testrun/sizeof1 # ------------ [367] CC="gcc" make testrun/sizeof2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [367] A regression test command failed: # CC="gcc" make testrun/sizeof2 # ------------ [368] CC="gcc" make testrun/static ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [368] A regression test command failed: # CC="gcc" make testrun/static # ------------ [369] CC="gcc" make testrun/static2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [369] A regression test command failed: # CC="gcc" make testrun/static2 # ------------ [370] CC="gcc" make testrun/stringsize ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [370] A regression test command failed: # CC="gcc" make testrun/stringsize # ------------ [371] CC="gcc" make testrun/strloop ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [371] A regression test command failed: # CC="gcc" make testrun/strloop # ------------ [372] CC="gcc" make testrun/strloop3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [372] A regression test command failed: # CC="gcc" make testrun/strloop3 # ------------ [373] CC="gcc" make testrun/struct1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [373] A regression test command failed: # CC="gcc" make testrun/struct1 # ------------ [374] CC="gcc" make testrun/typeof1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [374] A regression test command failed: # CC="gcc" make testrun/typeof1 # ------------ [375] (fail) CC="gcc" make testrun/typespec1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [376] CC="gcc" make testrun/union2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [376] A regression test command failed: # CC="gcc" make testrun/union2 # ------------ [377] CC="gcc" make testrun/union3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [377] A regression test command failed: # CC="gcc" make testrun/union3 # ------------ [378] (fail) CC="gcc" make testrun/union6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [379] CC="gcc" make testrun/va-arg-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [379] A regression test command failed: # CC="gcc" make testrun/va-arg-1 # ------------ [380] CC="gcc" make testrun/va-arg-2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [380] A regression test command failed: # CC="gcc" make testrun/va-arg-2 # ------------ [381] CC="gcc" make testrun/va-arg-7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [381] A regression test command failed: # CC="gcc" make testrun/va-arg-7 # ------------ [382] CC="gcc" make testrun/var_named_hidden ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [382] A regression test command failed: # CC="gcc" make testrun/var_named_hidden # ------------ [383] CC="gcc" make testrun/vararg1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [383] A regression test command failed: # CC="gcc" make testrun/vararg1 # ------------ [384] CC="gcc" make testrun/vararg2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [384] A regression test command failed: # CC="gcc" make testrun/vararg2 # ------------ [385] CC="gcc" make testrun/vararg3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [385] A regression test command failed: # CC="gcc" make testrun/vararg3 # ------------ [386] CC="gcc" make testrun/vararg4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [386] A regression test command failed: # CC="gcc" make testrun/vararg4 # ------------ [387] CC="gcc" make testrun/vararg5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [387] A regression test command failed: # CC="gcc" make testrun/vararg5 # ------------ [388] CC="gcc" make testrun/vararg6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [388] A regression test command failed: # CC="gcc" make testrun/vararg6 # ------------ [389] CC="gcc" make testrun/varargauto1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [389] A regression test command failed: # CC="gcc" make testrun/varargauto1 # ------------ [390] CC="gcc" make testrun/void ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [390] A regression test command failed: # CC="gcc" make testrun/void # ------------ [391] CC="gcc" make testrun/voidarg ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [391] A regression test command failed: # CC="gcc" make testrun/voidarg # ------------ [392] CC="gcc" make testrun/vsp ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [392] A regression test command failed: # CC="gcc" make testrun/vsp # ------------ [393] CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [393] A regression test command failed: # CC="gcc" make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 # ------------ [394] CC="gcc" make testrun/wchar1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [394] A regression test command failed: # CC="gcc" make testrun/wchar1 # ------------ [395] CC="gcc" make testrun/wchar2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [395] A regression test command failed: # CC="gcc" make testrun/wchar2 # ------------ [396] CC="gcc" make testrun/wchar3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [396] A regression test command failed: # CC="gcc" make testrun/wchar3 # ------------ [397] CC="gcc" make testrun/wchar4 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [397] A regression test command failed: # CC="gcc" make testrun/wchar4 # ------------ [398] CC="gcc" make testrun/wchar5 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [398] A regression test command failed: # CC="gcc" make testrun/wchar5 # ------------ [399] CC="gcc" make testrun/wchar6 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [399] A regression test command failed: # CC="gcc" make testrun/wchar6 # ------------ [400] CC="gcc" make testrun/wchar7 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [400] A regression test command failed: # CC="gcc" make testrun/wchar7 # ------------ [401] (fail) CC="gcc" make testrun/wrongnumargs ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [402] CC="gcc" make testrunc11/c11-align-of ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [402] A regression test command failed: # CC="gcc" make testrunc11/c11-align-of # ------------ [403] CC="gcc" make testrunc11/c11-atomic ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [403] A regression test command failed: # CC="gcc" make testrunc11/c11-atomic # ------------ [404] CC="gcc" make testrunc11/c11-atomic-store ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [404] A regression test command failed: # CC="gcc" make testrunc11/c11-atomic-store # ------------ [405] CC="gcc" make testrunc11/c11-caserange ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [405] A regression test command failed: # CC="gcc" make testrunc11/c11-caserange # ------------ [406] CC="gcc" make testrunc11/c11-extendedFloat ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [406] A regression test command failed: # CC="gcc" make testrunc11/c11-extendedFloat # ------------ [407] CC="gcc" make testrunc11/c11-generic ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [407] A regression test command failed: # CC="gcc" make testrunc11/c11-generic # ------------ [408] CC="gcc" make testrunc11/c11-noreturn ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [408] A regression test command failed: # CC="gcc" make testrunc11/c11-noreturn # ------------ [409] CC="gcc" make testrunc11/c11-static-assert ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [409] A regression test command failed: # CC="gcc" make testrunc11/c11-static-assert # ------------ [410] CC="gcc" make testrunc11/gcc-c11-generic-1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [410] A regression test command failed: # CC="gcc" make testrunc11/gcc-c11-generic-1 # ------------ [411] CC="gcc" make testrunc99/c99-bool ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [411] A regression test command failed: # CC="gcc" make testrunc99/c99-bool # ------------ [412] CC="gcc" make testrunc99/c99-complex ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [412] A regression test command failed: # CC="gcc" make testrunc99/c99-complex # ------------ [413] CC="gcc" make testrunc99/c99-fixed-width-int ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [413] A regression test command failed: # CC="gcc" make testrunc99/c99-fixed-width-int # ------------ [414] CC="gcc" make testrunc99/c99-float-pragma ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [414] A regression test command failed: # CC="gcc" make testrunc99/c99-float-pragma # ------------ [415] CC="gcc" make testrunc99/c99-predefined ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [415] A regression test command failed: # CC="gcc" make testrunc99/c99-predefined # ------------ [416] CC="gcc" make testrunc99/c99-struct ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [416] A regression test command failed: # CC="gcc" make testrunc99/c99-struct # ------------ [417] CC="gcc" make testrunc99/c99-tgmath ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [417] A regression test command failed: # CC="gcc" make testrunc99/c99-tgmath # ------------ [418] CC="gcc" make testrunc99/c99-tgmath2 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [418] A regression test command failed: # CC="gcc" make testrunc99/c99-tgmath2 # ------------ [419] CC="gcc" make testrunc99/c99-universal-character-names ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [419] A regression test command failed: # CC="gcc" make testrunc99/c99-universal-character-names # ------------ [420] CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [420] A regression test command failed: # CC="gcc" make testrungcc/builtin_object_size OPTIMIZE=1 # ------------ [421] CC="gcc" make testrungcc/enum3 ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [421] A regression test command failed: # CC="gcc" make testrungcc/enum3 # ------------ [422] CC="gcc" make testrungcc/enum3a ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [422] A regression test command failed: # CC="gcc" make testrungcc/enum3a # ------------ [423] CC="gcc" make testrungcc/enum3b ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [423] A regression test command failed: # CC="gcc" make testrungcc/enum3b # ------------ [424] (fail) CC="gcc" make testrungcc/enum3c ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # ------------ [425] CC="gcc" make testrungcc/enum3d ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [425] A regression test command failed: # CC="gcc" make testrungcc/enum3d # ------------ [426] CC="gcc" make testrungcc/enum3e ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [426] A regression test command failed: # CC="gcc" make testrungcc/enum3e # ------------ [427] CC="gcc" make testrungcc/enum3f ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [427] A regression test command failed: # CC="gcc" make testrungcc/enum3f # ------------ [428] CC="gcc" make testrungcc/enum3g ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [428] A regression test command failed: # CC="gcc" make testrungcc/enum3g # ------------ [429] CC="gcc" make testrungcc/enum3h ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [429] A regression test command failed: # CC="gcc" make testrungcc/enum3h # ------------ [430] CC="gcc" make testrungcc/enum3i ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [430] A regression test command failed: # CC="gcc" make testrungcc/enum3i # ------------ [431] CC="gcc" make testrungcc/enum3j ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [431] A regression test command failed: # CC="gcc" make testrungcc/enum3j # ------------ [432] CC="gcc" make testrungcc/enum3k ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [432] A regression test command failed: # CC="gcc" make testrungcc/enum3k # ------------ [433] CC="gcc" make testrungcc/enum3l ------------ # cd ./small1; /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_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 # # [433] A regression test command failed: # CC="gcc" make testrungcc/enum3l # # Successful tests: 2 # Failed as expected: 42 # Unexpected success: 0 # Unexpected failure: 390 # # [0] A regression test command failed: # CC=gcc make arcombine # [1] A regression test command failed: # CC=gcc make baddef # [2] A regression test command failed: # CC=gcc make comb # [3] A regression test command failed: # CC=gcc make combine1 # [4] A regression test command failed: # CC=gcc make combine10 # [5] A regression test command failed: # CC=gcc make combine11 # [6] A regression test command failed: # CC=gcc make combine12 # [7] A regression test command failed: # CC=gcc make combine13 # [8] A regression test command failed: # CC=gcc make combine14 # [9] A regression test command failed: # CC=gcc make combine15 # [10] A regression test command failed: # CC=gcc make combine16 # [11] A regression test command failed: # CC=gcc make combine17 # [12] A regression test command failed: # CC=gcc make combine18 # [13] A regression test command failed: # CC=gcc make combine2 # [14] A regression test command failed: # CC=gcc make combine20 # [15] A regression test command failed: # CC=gcc make combine21 # [17] A regression test command failed: # CC=gcc make combine3 # [18] A regression test command failed: # CC=gcc make combine5 # [19] A regression test command failed: # CC=gcc make combine6 # [20] A regression test command failed: # CC=gcc make combine8 # [22] A regression test command failed: # CC=gcc make combine_allocate MERGEINLINES=1 # [23] A regression test command failed: # CC=gcc make combine_copyptrs WARNINGS_ARE_ERRORS=1 MERGEINLINES=1 # [24] A regression test command failed: # CC=gcc make combine_init # [27] A regression test command failed: # CC=gcc make combine_sbump # [28] A regression test command failed: # CC=gcc make combine_sbumpB MERGEINLINES=1 # [29] A regression test command failed: # CC=gcc make combine_syserr MERGEINLINES=1 # [30] A regression test command failed: # CC=gcc make combine_theFunc MERGEINLINES=1 # [31] A regression test command failed: # CC=gcc make combinealias # [33] A regression test command failed: # CC=gcc make combineenum1 # [34] A regression test command failed: # CC=gcc make combineenum2 # [35] A regression test command failed: # CC=gcc make combineenum3 # [36] A regression test command failed: # CC=gcc make combinegnuinline # [38] A regression test command failed: # CC=gcc make combineinline2 # [41] A regression test command failed: # CC=gcc make combineinline6 # [42] A regression test command failed: # CC=gcc make combinelibrik # [43] A regression test command failed: # CC=gcc make combinestruct1 # [44] A regression test command failed: # CC=gcc make merge-ar # [45] A regression test command failed: # CC=gcc make mergeinit # [46] A regression test command failed: # CC=gcc make mergeinline # [47] A regression test command failed: # CC=gcc make mergestruct # [48] A regression test command failed: # CC=gcc make mixedcomb # [49] A regression test command failed: # CC=gcc make runall/alpha # [50] A regression test command failed: # CC=gcc make runall/extinline # [51] A regression test command failed: # CC=gcc make runall/runall_misc # [52] A regression test command failed: # CC=gcc make runall/structattr2 # [53] A regression test command failed: # CC=gcc make runall/switch # [54] A regression test command failed: # CC=gcc make scott-nogcc/bogus_redef # [55] A regression test command failed: # CC=gcc make scott-nogcc/funcname # [56] A regression test command failed: # CC=gcc make scott-nolink/brlock # [57] A regression test command failed: # CC=gcc make scott/arrayinit # [59] A regression test command failed: # CC=gcc make scott/bisonerror # [60] A regression test command failed: # CC=gcc make scott/cmpzero # [61] A regression test command failed: # CC=gcc make scott/constdecl # [62] A regression test command failed: # CC=gcc make scott/constfold # [63] A regression test command failed: # CC=gcc make scott/ctype # [64] A regression test command failed: # CC=gcc make scott/enumattr # [65] A regression test command failed: # CC=gcc make scott/enumerator_sizeof # [66] A regression test command failed: # CC=gcc make scott/enuminit # [67] A regression test command failed: # CC=gcc make scott/errorinfn # [68] A regression test command failed: # CC=gcc make scott/funcptr # [69] A regression test command failed: # CC=gcc make scott/gimpdouble # [71] A regression test command failed: # CC=gcc make scott/initedextern # [72] A regression test command failed: # CC=gcc make scott/invalredef # [73] A regression test command failed: # CC=gcc make scott/invalredef2 # [74] A regression test command failed: # CC=gcc make scott/kernel1 # [75] A regression test command failed: # CC=gcc make scott/kernel2 # [76] A regression test command failed: # CC=gcc make scott/lexnum # [77] A regression test command failed: # CC=gcc make scott/litstruct # [78] A regression test command failed: # CC=gcc make scott/main # [79] A regression test command failed: # CC=gcc make scott/memberofptr # [80] A regression test command failed: # CC=gcc make scott/mode_sizes # [81] A regression test command failed: # CC=gcc make scott/multiplestatics # [82] A regression test command failed: # CC=gcc make scott/neg64 # [83] A regression test command failed: # CC=gcc make scott/oldstyle # [84] A regression test command failed: # CC=gcc make scott/open # [85] A regression test command failed: # CC=gcc make scott/partialbracket # [86] A regression test command failed: # CC=gcc make scott/putc # [88] A regression test command failed: # CC=gcc make scott/s59 # [89] A regression test command failed: # CC=gcc make scott/sizeofchar # [90] A regression test command failed: # CC=gcc make scott/sockaddr # [91] A regression test command failed: # CC=gcc make scott/struct_cs # [92] A regression test command failed: # CC=gcc make scott/structattr # [93] A regression test command failed: # CC=gcc make scott/structattr3 # [94] A regression test command failed: # CC=gcc make scott/thing # [95] A regression test command failed: # CC=gcc make scott/transpunion # [96] A regression test command failed: # CC=gcc make scott/typeof # [97] A regression test command failed: # CC=gcc make scott/uninit_tmp # [98] A regression test command failed: # CC=gcc make scott/unionassign # [99] A regression test command failed: # CC=gcc make scott/unscomp # [100] A regression test command failed: # CC=gcc make scott/volatilestruct # [101] A regression test command failed: # CC=gcc make scott/xcheckers # [102] A regression test command failed: # CC=gcc make test-bad/enuminit2 # [103] A regression test command failed: # CC=gcc make test-bad/trivial-tb # [104] A regression test command failed: # CC=gcc make test-bad1/flexible-array-member-bad # [105] A regression test command failed: # CC=gcc make test-bad1/wchar-bad # [106] A regression test command failed: # CC=gcc make test/align3 # [107] A regression test command failed: # CC=gcc make test/apachebits # [109] A regression test command failed: # CC=gcc make test/array-size-trick # [110] A regression test command failed: # CC=gcc make test/array1 # [111] A regression test command failed: # CC=gcc make test/array2 # [112] A regression test command failed: # CC=gcc make test/arrsize # [113] A regression test command failed: # CC=gcc make test/asm2 # [114] A regression test command failed: # CC=gcc make test/asm3 # [115] A regression test command failed: # CC=gcc make test/asm4 # [116] A regression test command failed: # CC=gcc make test/asm_emptyclobberallowed # [117] A regression test command failed: # CC=gcc make test/attr10 # [118] A regression test command failed: # CC=gcc make test/attr11 # [119] A regression test command failed: # CC=gcc make test/attr12 # [120] A regression test command failed: # CC=gcc make test/attr13 # [121] A regression test command failed: # CC=gcc make test/attr2 # [122] A regression test command failed: # CC=gcc make test/attr3 # [123] A regression test command failed: # CC=gcc make test/attr6 # [124] A regression test command failed: # CC=gcc make test/attr7 # [125] A regression test command failed: # CC=gcc make test/attr8 # [126] A regression test command failed: # CC=gcc make test/attr9 WARNINGS_ARE_ERRORS=1 # [127] A regression test command failed: # CC=gcc make test/bitfield # [129] A regression test command failed: # CC=gcc make test/builtin2 # [130] A regression test command failed: # CC=gcc make test/builtin5 # [131] A regression test command failed: # CC=gcc make test/cast1 # [132] A regression test command failed: # CC=gcc make test/cast2 # [133] A regression test command failed: # CC=gcc make test/cast4 # [134] A regression test command failed: # CC=gcc make test/castcall # [135] A regression test command failed: # CC=gcc make test/castunion # [136] A regression test command failed: # CC=gcc make test/const-struct-init WARNINGS_ARE_ERRORS=1 # [138] A regression test command failed: # CC=gcc make test/const14 # [139] A regression test command failed: # CC=gcc make test/const7 # [140] A regression test command failed: # CC=gcc make test/const9 # [141] A regression test command failed: # CC=gcc make test/constprop # [142] A regression test command failed: # CC=gcc make test/constrexpr # [144] A regression test command failed: # CC=gcc make test/cpp-3 # [146] A regression test command failed: # CC=gcc make test/deref # [147] A regression test command failed: # CC=gcc make test/duplicate # [148] A regression test command failed: # CC=gcc make test/enum # [149] A regression test command failed: # CC=gcc make test/enum-scope # [150] A regression test command failed: # CC=gcc make test/extinline3 # [151] A regression test command failed: # CC=gcc make test/func # [154] A regression test command failed: # CC=gcc make test/globals # [156] A regression test command failed: # CC=gcc make test/huff1 # [157] A regression test command failed: # CC=gcc make test/init # [158] A regression test command failed: # CC=gcc make test/init8 # [159] A regression test command failed: # CC=gcc make test/initial WARNINGS_ARE_ERRORS=1 # [160] A regression test command failed: # CC=gcc make test/inline3 # [161] A regression test command failed: # CC=gcc make test/jmp_buf # [162] A regression test command failed: # CC=gcc make test/label5 # [163] A regression test command failed: # CC=gcc make test/label7 # [164] A regression test command failed: # CC=gcc make test/label8 # [165] A regression test command failed: # CC=gcc make test/label9 EXTRAARGS=--domakeCFG # [166] A regression test command failed: # CC=gcc make test/li # [167] A regression test command failed: # CC=gcc make test/linux_atomic # [168] A regression test command failed: # CC=gcc make test/linuxcombine1_1 # [169] A regression test command failed: # CC=gcc make test/list # [170] A regression test command failed: # CC=gcc make test/matrix # [171] A regression test command failed: # CC=gcc make test/noreturn # [172] A regression test command failed: # CC=gcc make test/outofmem # [173] A regression test command failed: # CC=gcc make test/packed2 # [174] A regression test command failed: # CC=gcc make test/power1 # [175] A regression test command failed: # CC=gcc make test/printf # [176] A regression test command failed: # CC=gcc make test/printf_const # [179] A regression test command failed: # CC=gcc make test/pure # [180] A regression test command failed: # CC=gcc make test/restrict EXTRAARGS=-std=c9x # [181] A regression test command failed: # CC=gcc make test/restrict1 # [182] A regression test command failed: # CC=gcc make test/retval # [183] A regression test command failed: # CC=gcc make test/scope12 # [184] A regression test command failed: # CC=gcc make test/scope2 # [186] A regression test command failed: # CC=gcc make test/scope4 # [187] A regression test command failed: # CC=gcc make test/shell-escape SHELL_ESCAPE=1 # [189] A regression test command failed: # CC=gcc make test/static # [190] A regression test command failed: # CC=gcc make test/static1 # [191] A regression test command failed: # CC=gcc make test/strcpy # [192] A regression test command failed: # CC=gcc make test/struct_init # [193] A regression test command failed: # CC=gcc make test/structassign # [195] A regression test command failed: # CC=gcc make test/sync-1 # [196] A regression test command failed: # CC=gcc make test/sync-2 # [197] A regression test command failed: # CC=gcc make test/sync-3 # [198] A regression test command failed: # CC=gcc make test/tags # [199] A regression test command failed: # CC=gcc make test/task # [200] A regression test command failed: # CC=gcc make test/unimplemented # [201] A regression test command failed: # CC=gcc make test/union5 # [202] A regression test command failed: # CC=gcc make test/va_arg_pack # [203] A regression test command failed: # CC=gcc make test/vararg7 # [204] A regression test command failed: # CC=gcc make test/voidstar # [205] A regression test command failed: # CC=gcc make test/voidtypedef # [206] A regression test command failed: # CC=gcc make test/warnings-cast WARNINGS_ARE_ERRORS=1 # [207] A regression test command failed: # CC=gcc make test/warnings-noreturn WARNINGS_ARE_ERRORS=1 # [208] A regression test command failed: # CC=gcc make test_i/empty # [209] A regression test command failed: # CC=gcc make test_i/lineno # [210] A regression test command failed: # CC=gcc make testc11/alignas # [213] A regression test command failed: # CC=gcc make testc11/clang-c11-generic-2 # [216] A regression test command failed: # CC=gcc make testc11/gcc-c11-generic-3-1 # [220] A regression test command failed: # CC=gcc make testobj/asm5 # [221] A regression test command failed: # CC=gcc make testrun/addr-array # [222] A regression test command failed: # CC=gcc make testrun/addr-string # [223] A regression test command failed: # CC=gcc make testrun/addrof3 # [224] A regression test command failed: # CC=gcc make testrun/align1 # [225] A regression test command failed: # CC=gcc make testrun/align2 EXTRAARGS=-O2 # [226] A regression test command failed: # CC=gcc make testrun/apachebuf # [227] A regression test command failed: # CC=gcc make testrun/apachefptr # [228] A regression test command failed: # CC=gcc make testrun/array_formal # [230] A regression test command failed: # CC=gcc make testrun/array_varsize # [231] A regression test command failed: # CC=gcc make testrun/arrayinitsize # [232] A regression test command failed: # CC=gcc make testrun/asm1 # [233] A regression test command failed: # CC=gcc make testrun/assign # [234] A regression test command failed: # CC=gcc make testrun/attr-in-decllist # [235] A regression test command failed: # CC=gcc make testrun/attr4 # [237] A regression test command failed: # CC=gcc make testrun/bitfield2 # [238] A regression test command failed: # CC=gcc make testrun/bitfield3 # [239] A regression test command failed: # CC=gcc make testrun/blockattr2 USECFG=1 # [240] A regression test command failed: # CC=gcc make testrun/bool # [241] A regression test command failed: # CC=gcc make testrun/booleanOp USE_LOGICAL_OPERATORS=1 # [242] A regression test command failed: # CC=gcc make testrun/builtin # [243] A regression test command failed: # CC=gcc make testrun/builtin3 # [244] A regression test command failed: # CC=gcc make testrun/builtin4 # [245] A regression test command failed: # CC=gcc make testrun/builtin_choose_expr # [246] A regression test command failed: # CC=gcc make testrun/call2 # [247] A regression test command failed: # CC=gcc make testrun/case_then_default_in_switch EXTRAARGS=--domakeCFG # [248] A regression test command failed: # CC=gcc make testrun/caserange # [249] A regression test command failed: # CC=gcc make testrun/cast8 # [250] A regression test command failed: # CC=gcc make testrun/castincr WARNINGS_ARE_ERRORS=1 # [251] A regression test command failed: # CC=gcc make testrun/comma1 # [252] A regression test command failed: # CC=gcc make testrun/comparisons # [254] A regression test command failed: # CC=gcc make testrun/compound2 # [255] A regression test command failed: # CC=gcc make testrun/cond1 # [256] A regression test command failed: # CC=gcc make testrun/cond2 # [257] A regression test command failed: # CC=gcc make testrun/const-array-init WARNINGS_ARE_ERRORS=1 # [258] A regression test command failed: # CC=gcc make testrun/const-struct-init WARNINGS_ARE_ERRORS=1 # [259] A regression test command failed: # CC=gcc make testrun/const1 # [260] A regression test command failed: # CC=gcc make testrun/const10 # [261] A regression test command failed: # CC=gcc make testrun/const11 # [262] A regression test command failed: # CC=gcc make testrun/const12 # [263] A regression test command failed: # CC=gcc make testrun/const15 # [264] A regression test command failed: # CC=gcc make testrun/const16 # [265] A regression test command failed: # CC=gcc make testrun/const2 # [266] A regression test command failed: # CC=gcc make testrun/const3 # [267] A regression test command failed: # CC=gcc make testrun/const4 # [268] A regression test command failed: # CC=gcc make testrun/const5 # [269] A regression test command failed: # CC=gcc make testrun/const6 # [270] A regression test command failed: # CC=gcc make testrun/const8 # [273] A regression test command failed: # CC=gcc make testrun/decl_mix_stmt # [274] A regression test command failed: # CC=gcc make testrun/enum2 # [275] A regression test command failed: # CC=gcc make testrun/escapes # [276] A regression test command failed: # CC=gcc make testrun/extern1 # [277] A regression test command failed: # CC=gcc make testrun/extinline2 # [278] A regression test command failed: # CC=gcc make testrun/fallthrough-label # [279] A regression test command failed: # CC=gcc make testrun/flexible-array-member # [280] A regression test command failed: # CC=gcc make testrun/float # [281] A regression test command failed: # CC=gcc make testrun/float2 # [282] A regression test command failed: # CC=gcc make testrun/for1 # [283] A regression test command failed: # CC=gcc make testrun/formalscope # [284] A regression test command failed: # CC=gcc make testrun/func2 # [285] A regression test command failed: # CC=gcc make testrun/func3 # [286] A regression test command failed: # CC=gcc make testrun/func4 # [287] A regression test command failed: # CC=gcc make testrun/funptr1 # [288] A regression test command failed: # CC=gcc make testrun/init # [289] A regression test command failed: # CC=gcc make testrun/init1 # [290] A regression test command failed: # CC=gcc make testrun/init10 # [291] A regression test command failed: # CC=gcc make testrun/init11 # [292] A regression test command failed: # CC=gcc make testrun/init12 # [293] A regression test command failed: # CC=gcc make testrun/init13 # [294] A regression test command failed: # CC=gcc make testrun/init14 # [295] A regression test command failed: # CC=gcc make testrun/init15 # [296] A regression test command failed: # CC=gcc make testrun/init16 # [297] A regression test command failed: # CC=gcc make testrun/init17 # [298] A regression test command failed: # CC=gcc make testrun/init18 # [299] A regression test command failed: # CC=gcc make testrun/init19 WARNINGS_ARE_ERRORS=1 # [300] A regression test command failed: # CC=gcc make testrun/init2 # [301] A regression test command failed: # CC=gcc make testrun/init20 # [302] A regression test command failed: # CC=gcc make testrun/init21 # [303] A regression test command failed: # CC=gcc make testrun/init22 # [304] A regression test command failed: # CC=gcc make testrun/init3 # [305] A regression test command failed: # CC=gcc make testrun/init4 # [306] A regression test command failed: # CC=gcc make testrun/init5 # [307] A regression test command failed: # CC=gcc make testrun/init6 # [308] A regression test command failed: # CC=gcc make testrun/init9 # [309] A regression test command failed: # CC=gcc make testrun/initial # [311] A regression test command failed: # CC=gcc make testrun/inline2 # [312] A regression test command failed: # CC=gcc make testrun/label1 # [313] A regression test command failed: # CC=gcc make testrun/label2 # [314] A regression test command failed: # CC=gcc make testrun/label2b COMPUTEDGOTO=1 # [315] A regression test command failed: # CC=gcc make testrun/label3 # [316] A regression test command failed: # CC=gcc make testrun/label3b COMPUTEDGOTO=1 LOCALINIT=1 # [317] A regression test command failed: # CC=gcc make testrun/label4 # [318] A regression test command failed: # CC=gcc make testrun/label4b COMPUTEDGOTO=1 # [319] A regression test command failed: # CC=gcc make testrun/label6 # [320] A regression test command failed: # CC=gcc make testrun/land_expr # [321] A regression test command failed: # CC=gcc make testrun/large_unsigned_long # [322] A regression test command failed: # CC=gcc make testrun/linux_signal # [323] A regression test command failed: # CC=gcc make testrun/localinit # [324] A regression test command failed: # CC=gcc make testrun/logical # [325] A regression test command failed: # CC=gcc make testrun/logical1 USE_LOGICAL_OPERATORS=1 # [326] A regression test command failed: # CC=gcc make testrun/logical2 USE_LOGICAL_OPERATORS=1 # [328] A regression test command failed: # CC=gcc make testrun/lval1 # [329] A regression test command failed: # CC=gcc make testrun/macro_hidden # [330] A regression test command failed: # CC=gcc make testrun/math1 # [331] A regression test command failed: # CC=gcc make testrun/memcpy1 # [332] A regression test command failed: # CC=gcc make testrun/min # [333] A regression test command failed: # CC=gcc make testrun/msvc1 # [334] A regression test command failed: # CC=gcc make testrun/msvc5 # [335] A regression test command failed: # CC=gcc make testrun/nan-global # [336] A regression test command failed: # CC=gcc make testrun/offsetof # [337] A regression test command failed: # CC=gcc make testrun/offsetof1 # [338] A regression test command failed: # CC=gcc make testrun/offsetof2 # [339] A regression test command failed: # CC=gcc make testrun/offsetof3 # [340] A regression test command failed: # CC=gcc make testrun/packed WARNINGS_ARE_ERRORS=1 # [341] A regression test command failed: # CC=gcc make testrun/percent400 # [342] A regression test command failed: # CC=gcc make testrun/percentm # [343] A regression test command failed: # CC=gcc make testrun/perror # [344] A regression test command failed: # CC=gcc make testrun/perror1 # [346] A regression test command failed: # CC=gcc make testrun/printf2 # [347] A regression test command failed: # CC=gcc make testrun/question # [348] A regression test command failed: # CC=gcc make testrun/question-fold-float USE_LOGICAL_OPERATORS=1 # [349] A regression test command failed: # CC=gcc make testrun/question2 # [350] A regression test command failed: # CC=gcc make testrun/question3 USE_LOGICAL_OPERATORS=1 # [351] A regression test command failed: # CC=gcc make testrun/return1 # [352] A regression test command failed: # CC=gcc make testrun/returnvoid # [353] A regression test command failed: # CC=gcc make testrun/returnvoid1 # [355] A regression test command failed: # CC=gcc make testrun/rmtmps1 # [356] A regression test command failed: # CC=gcc make testrun/rmtmps2 # [357] A regression test command failed: # CC=gcc make testrun/scope1 # [358] A regression test command failed: # CC=gcc make testrun/scope10 # [359] A regression test command failed: # CC=gcc make testrun/scope11 # [360] A regression test command failed: # CC=gcc make testrun/scope5 # [361] A regression test command failed: # CC=gcc make testrun/scope6 # [362] A regression test command failed: # CC=gcc make testrun/scope8 # [363] A regression test command failed: # CC=gcc make testrun/scope9 # [364] A regression test command failed: # CC=gcc make testrun/semicolon # [365] A regression test command failed: # CC=gcc make testrun/simon6 # [366] A regression test command failed: # CC=gcc make testrun/sizeof1 # [367] A regression test command failed: # CC=gcc make testrun/sizeof2 # [368] A regression test command failed: # CC=gcc make testrun/static # [369] A regression test command failed: # CC=gcc make testrun/static2 # [370] A regression test command failed: # CC=gcc make testrun/stringsize # [371] A regression test command failed: # CC=gcc make testrun/strloop # [372] A regression test command failed: # CC=gcc make testrun/strloop3 # [373] A regression test command failed: # CC=gcc make testrun/struct1 # [374] A regression test command failed: # CC=gcc make testrun/typeof1 # [376] A regression test command failed: # CC=gcc make testrun/union2 # [377] A regression test command failed: # CC=gcc make testrun/union3 # [379] A regression test command failed: # CC=gcc make testrun/va-arg-1 # [380] A regression test command failed: # CC=gcc make testrun/va-arg-2 # [381] A regression test command failed: # CC=gcc make testrun/va-arg-7 # [382] A regression test command failed: # CC=gcc make testrun/var_named_hidden # [383] A regression test command failed: # CC=gcc make testrun/vararg1 # [384] A regression test command failed: # CC=gcc make testrun/vararg2 # [385] A regression test command failed: # CC=gcc make testrun/vararg3 # [386] A regression test command failed: # CC=gcc make testrun/vararg4 # [387] A regression test command failed: # CC=gcc make testrun/vararg5 # [388] A regression test command failed: # CC=gcc make testrun/vararg6 # [389] A regression test command failed: # CC=gcc make testrun/varargauto1 # [390] A regression test command failed: # CC=gcc make testrun/void # [391] A regression test command failed: # CC=gcc make testrun/voidarg # [392] A regression test command failed: # CC=gcc make testrun/vsp # [393] A regression test command failed: # CC=gcc make testrun/warnings-unused-label WARNINGS_ARE_ERRORS=1 # [394] A regression test command failed: # CC=gcc make testrun/wchar1 # [395] A regression test command failed: # CC=gcc make testrun/wchar2 # [396] A regression test command failed: # CC=gcc make testrun/wchar3 # [397] A regression test command failed: # CC=gcc make testrun/wchar4 # [398] A regression test command failed: # CC=gcc make testrun/wchar5 # [399] A regression test command failed: # CC=gcc make testrun/wchar6 # [400] A regression test command failed: # CC=gcc make testrun/wchar7 # [402] A regression test command failed: # CC=gcc make testrunc11/c11-align-of # [403] A regression test command failed: # CC=gcc make testrunc11/c11-atomic # [404] A regression test command failed: # CC=gcc make testrunc11/c11-atomic-store # [405] A regression test command failed: # CC=gcc make testrunc11/c11-caserange # [406] A regression test command failed: # CC=gcc make testrunc11/c11-extendedFloat # [407] A regression test command failed: # CC=gcc make testrunc11/c11-generic # [408] A regression test command failed: # CC=gcc make testrunc11/c11-noreturn # [409] A regression test command failed: # CC=gcc make testrunc11/c11-static-assert # [410] A regression test command failed: # CC=gcc make testrunc11/gcc-c11-generic-1 # [411] A regression test command failed: # CC=gcc make testrunc99/c99-bool # [412] A regression test command failed: # CC=gcc make testrunc99/c99-complex # [413] A regression test command failed: # CC=gcc make testrunc99/c99-fixed-width-int # [414] A regression test command failed: # CC=gcc make testrunc99/c99-float-pragma # [415] A regression test command failed: # CC=gcc make testrunc99/c99-predefined # [416] A regression test command failed: # CC=gcc make testrunc99/c99-struct # [417] A regression test command failed: # CC=gcc make testrunc99/c99-tgmath # [418] A regression test command failed: # CC=gcc make testrunc99/c99-tgmath2 # [419] A regression test command failed: # CC=gcc make testrunc99/c99-universal-character-names # [420] A regression test command failed: # CC=gcc make testrungcc/builtin_object_size OPTIMIZE=1 # [421] A regression test command failed: # CC=gcc make testrungcc/enum3 # [422] A regression test command failed: # CC=gcc make testrungcc/enum3a # [423] A regression test command failed: # CC=gcc make testrungcc/enum3b # [425] A regression test command failed: # CC=gcc make testrungcc/enum3d # [426] A regression test command failed: # CC=gcc make testrungcc/enum3e # [427] A regression test command failed: # CC=gcc make testrungcc/enum3f # [428] A regression test command failed: # CC=gcc make testrungcc/enum3g # [429] A regression test command failed: # CC=gcc make testrungcc/enum3h # [430] A regression test command failed: # CC=gcc make testrungcc/enum3i # [431] A regression test command failed: # CC=gcc make testrungcc/enum3j # [432] A regression test command failed: # CC=gcc make testrungcc/enum3k # [433] A regression test command failed: # CC=gcc make testrungcc/enum3l # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:298: arcombine] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:409: baddef] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:366: comb] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine14] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine15] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine16] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine17] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine18] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine20] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine21] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine22] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_allocate] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_copyptrs] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_node_alloc] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_samefn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_sbump] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_sbumpB] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_syserr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combine_theFunc] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combinealias] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:306: combinec99inline] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineenum1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineenum2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineenum3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:291: combinegnuinline] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combineinline6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combinelibrik] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:284: combinestruct1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:428: merge-ar] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:396: mergeinit] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:401: mergeinline] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:387: mergestruct] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:378: mixedcomb] Error 2 # Test case baseline (line 2) fails and it is supposed to succeed at ../runall.pl line 395. # Died at ../runall.pl line 399. # make: *** [Makefile:344: runall/alpha] Error 2 # Cannot find "Trying to rename" in output of test bad at ../runall.pl line 416. # Died at ../runall.pl line 419. # make: *** [Makefile:344: runall/extinline] Error 2 # Cannot find "syntax error" in output of test rbrace at ../runall.pl line 416. # Died at ../runall.pl line 419. # make: *** [Makefile:344: runall/runall_misc] Error 2 # Test case archspecific (line 42) fails and it is supposed to succeed at ../runall.pl line 395. # Died at ../runall.pl line 399. # make: *** [Makefile:344: runall/structattr2] Error 2 # Test case baseline (line 4) fails and it is supposed to succeed at ../runall.pl line 395. # Died at ../runall.pl line 399. # make: *** [Makefile:344: runall/switch] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:249: scott-nogcc/bogus_redef] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:249: scott-nogcc/funcname] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:258: scott-nolink/brlock] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/arrayinit] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/asmfndecl] Error 2 # bisonerror.c: In function 'closure': # bisonerror.c:9:12: warning: variable 'csend' set but not used [-Wunused-but-set-variable] # 9 | short * csend ; # | ^~~~~ # bisonerror.c: In function 'main': # bisonerror.c:14:8: warning: unused variable 'x' [-Wunused-variable] # 14 | core x; # | ^ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/bisonerror] Error 2 # cmpzero.c: In function 'main': # cmpzero.c:8:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] # 8 | char c = (char)i; // should be 0 # | ^ # cmpzero.c:10:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] # 10 | printf("i: %d\n", (int)i); # | ^ # cmpzero.c:13:9: warning: comparison between pointer and zero character constant [-Wpointer-compare] # 13 | if (i == '\0') { # | ^~ # cmpzero.c:13:7: note: did you mean to dereference the pointer? # 13 | if (i == '\0') { # | ^ # cmpzero.c:21:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] # 21 | if ((int)(char)i == (int)'\0') { # | ^ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/cmpzero] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/constdecl] Error 2 # constfold.c: In function 'main': # constfold.c:12:20: warning: variable 'tmp12' set but not used [-Wunused-but-set-variable] # 12 | float z10, z5, tmp12; # | ^~~~~ # constfold.c:17:18: warning: variable 'root' set but not used [-Wunused-but-set-variable] # 17 | double a,b,c,root; # | ^~~~ # constfold.c:13:37: warning: 'z10' is used uninitialized [-Wuninitialized] # 13 | tmp12 = (float )(- 2.613125930) * z10 + z5; // ijpeg # | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~ # constfold.c:13:11: warning: 'z5' is used uninitialized [-Wuninitialized] # 13 | tmp12 = (float )(- 2.613125930) * z10 + z5; // ijpeg # | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # constfold.c:18:13: warning: 'b' is used uninitialized [-Wuninitialized] # 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power # | ^~ # constfold.c:18:26: warning: 'a' is used uninitialized [-Wuninitialized] # 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power # | ~^~ # constfold.c:18:28: warning: 'c' is used uninitialized [-Wuninitialized] # 18 | root = (-b-sqrt(b*b-4*a*c))/(2*a); // power # | ~~~^~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/constfold] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/ctype] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/enumattr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/enumerator_sizeof] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/enuminit] Error 2 # errorinfn.c: In function 'main': # errorinfn.c:3:15: warning: initializer-string for array of 'char' is too long # 3 | char c[8] = "an error!"; # | ^~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/errorinfn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/funcptr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/gimpdouble] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/globalprob] Error 2 # initedextern.c:6:12: warning: 'foo' initialized and declared 'extern' # 6 | extern int foo = 3; # | ^~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/initedextern] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/invalredef] Error 2 # invalredef2.c:9:13: warning: 'parse' defined but not used [-Wunused-function] # 9 | static int parse(enum token * tok ) # | ^~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/invalredef2] Error 2 # kernel1.c:2:1: warning: data definition has no type or storage class # 2 | DECLARE_WAIT_QUEUE_HEAD(log_wait); # | ^~~~~~~~~~~~~~~~~~~~~~~ # kernel1.c:2:1: warning: type defaults to 'int' in declaration of 'DECLARE_WAIT_QUEUE_HEAD' [-Wimplicit-int] # kernel1.c:2:1: warning: parameter names (without types) in function declaration # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/kernel1] Error 2 # kernel2.c:8:22: warning: 'kernel_module' defined but not used [-Wunused-variable] # 8 | static struct module kernel_module = # | ^~~~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/kernel2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/lexnum] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/litstruct] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/main] Error 2 # memberofptr.c: In function 'read_header': # memberofptr.c:21:18: warning: unused variable 'next' [-Wunused-variable] # 21 | static char * next; /*decdef*/ # | ^~~~ # memberofptr.c:20:18: warning: unused variable 'header' [-Wunused-variable] # 20 | union block * header ; /*decdef*/ # | ^~~~~~ # At top level: # memberofptr.c:21:18: warning: 'next' defined but not used [-Wunused-variable] # 21 | static char * next; /*decdef*/ # | ^~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/memberofptr] Error 2 # mode_sizes.c: In function 'main': # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:29:3: note: in expansion of macro 'PRSIZE' # 29 | PRSIZE(int8_t, 1); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:30:3: note: in expansion of macro 'PRSIZE' # 30 | PRSIZE(int16_t, 2); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:31:3: note: in expansion of macro 'PRSIZE' # 31 | PRSIZE(int32_t, 4); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:32:3: note: in expansion of macro 'PRSIZE' # 32 | PRSIZE(int64_t, 8); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:34:3: note: in expansion of macro 'PRSIZE' # 34 | PRSIZE(u_int8_t, 1); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:35:3: note: in expansion of macro 'PRSIZE' # 35 | PRSIZE(u_int16_t, 2); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:36:3: note: in expansion of macro 'PRSIZE' # 36 | PRSIZE(u_int32_t, 4); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:37:3: note: in expansion of macro 'PRSIZE' # 37 | PRSIZE(u_int64_t, 8); # | ^~~~~~ # mode_sizes.c:27:12: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long unsigned int' [-Wformat=] # 27 | printf("size of " #type " is: %d (should be %d)\n", \ # | ^~~~~~~~~~ # 28 | sizeof(type), should); ok = ok && (sizeof(type) == should) # | ~~~~~~~~~~~~ # | | # | long unsigned int # mode_sizes.c:39:3: note: in expansion of macro 'PRSIZE' # 39 | PRSIZE(x8_t, 1); # | ^~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/mode_sizes] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/multiplestatics] Error 2 # neg64.c:12:1: warning: return type defaults to 'int' [-Wimplicit-int] # 12 | main() # | ^~~~ # neg64.c: In function 'main': # neg64.c:15:5: warning: implicit declaration of function 'abort' [-Wimplicit-function-declaration] # 15 | abort(); # | ^~~~~ # neg64.c:1:1: note: include '' or provide a declaration of 'abort' # +++ |+#include # 1 | // neg64.c # neg64.c:15:5: warning: incompatible implicit declaration of built-in function 'abort' [-Wbuiltin-declaration-mismatch] # 15 | abort(); # | ^~~~~ # neg64.c:15:5: note: include '' or provide a declaration of 'abort' # neg64.c:17:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] # 17 | exit(0); # | ^~~~ # neg64.c:17:3: note: include '' or provide a declaration of 'exit' # neg64.c:17:3: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] # neg64.c:17:3: note: include '' or provide a declaration of 'exit' # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/neg64] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/oldstyle] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/open] Error 2 # partialbracket.c:7:20: warning: missing braces around initializer [-Wmissing-braces] # 7 | struct S array[] = { # | ^ # 8 | 1,2, # | { } # 9 | 3,4 # | { # 10 | }; # | } # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/partialbracket] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/putc] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/regparm0] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/s59] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/sizeofchar] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/sockaddr] Error 2 # struct_cs.c:9:1: warning: 'reverse_pairs_list' defined but not used [-Wunused-function] # 9 | reverse_pairs_list (gdouble *list, # | ^~~~~~~~~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/struct_cs] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/structattr] Error 2 # structattr3.c:7:18: warning: missing braces around initializer [-Wmissing-braces] # 7 | struct S y[10] = {1,2,3}; # | ^ # | {}{}{} # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/structattr3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/thing] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/transpunion] Error 2 # typeof.c: In function 'y': # typeof.c:6:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] # 6 | exit(-2); //make sure y() is not invoked! # | ^~~~ # typeof.c:1:1: note: include '' or provide a declaration of 'exit' # +++ |+#include # 1 | // simple use of typeof # typeof.c:6:3: warning: incompatible implicit declaration of built-in function 'exit' [-Wbuiltin-declaration-mismatch] # 6 | exit(-2); //make sure y() is not invoked! # | ^~~~ # typeof.c:6:3: note: include '' or provide a declaration of 'exit' # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/typeof] Error 2 # uninit_tmp.c: In function 'bad_function': # uninit_tmp.c:11:33: warning: variable 'other_variable' set but not used [-Wunused-but-set-variable] # 11 | auto const struct struct_two *other_variable; # | ^~~~~~~~~~~~~~ # uninit_tmp.c: In function 'main': # uninit_tmp.c:32:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] # 32 | printf("cil bug is still present\n"); # | ^~~~~~ # uninit_tmp.c:1:1: note: include '' or provide a declaration of 'printf' # +++ |+#include # 1 | // uninit_tmp.c # uninit_tmp.c:32:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] # 32 | printf("cil bug is still present\n"); # | ^~~~~~ # uninit_tmp.c:32:5: note: include '' or provide a declaration of 'printf' # uninit_tmp.c:36:5: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] # 36 | printf("bug has been fixed!\n"); # | ^~~~~~ # uninit_tmp.c:36:5: note: include '' or provide a declaration of 'printf' # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/uninit_tmp] Error 2 # unionassign.c: In function 'foo': # unionassign.c:85:19: warning: variable 'x' set but not used [-Wunused-but-set-variable] # 85 | union sockunion x,y; # | ^ # unionassign.c:86:5: warning: 'y' is used uninitialized [-Wuninitialized] # 86 | x = y; # | ~~^~~ # unionassign.c:85:21: note: 'y' declared here # 85 | union sockunion x,y; # | ^ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/unionassign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/unscomp] Error 2 # volatilestruct.c: In function 'main': # volatilestruct.c:17:14: warning: variable 'bar' set but not used [-Wunused-but-set-variable] # 17 | } volatile bar; # | ^~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/volatilestruct] Error 2 # xcheckers.c:18:13: warning: 'loadImage' defined but not used [-Wunused-function] # 18 | static void loadImage(void ) # | ^~~~~~~~~ # xcheckers.c: In function 'loadImage': # xcheckers.c:21:11: warning: 'thisScene' is used uninitialized [-Wuninitialized] # 21 | paper = getColor((& (((_XPrivDisplay )dpy)->screens)[1])->cmap, thisScene); # | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:238: scott/xcheckers] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:323: test-bad/enuminit2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:323: test-bad/trivial-tb] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:332: test-bad1/flexible-array-member-bad] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:332: test-bad1/wchar-bad] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/align3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/apachebits] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/argcast] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/array-size-trick] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/array1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/array2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/arrsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/asm_emptyclobberallowed] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/attr9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/bitfield] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/break1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/builtin2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/builtin5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cast1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cast2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cast4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/castcall] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/castunion] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const-struct-init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const14] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/const9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/constprop] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/constrexpr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cpp-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/cpp-3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/decl2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/deref] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/duplicate] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/enum] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/enum-scope] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/extinline3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/func] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/func10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/funcarg] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/globals] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/globals2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/huff1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/init8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/initial] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/inline3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/jmp_buf] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/label9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/li] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/linux_atomic] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/linuxcombine1_1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/list] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/matrix] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/noreturn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/outofmem] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/packed2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/power1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/printf] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/printf_const] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/proto1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/proto2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/pure] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/restrict] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/restrict1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/retval] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/scope4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/shell-escape] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sizeof3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/static] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/static1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/strcpy] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/struct_init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/structassign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/switch_default_parse_bug] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sync-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sync-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/sync-3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/tags] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/task] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/unimplemented] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/union5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/va_arg_pack] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/vararg7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/voidstar] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/voidtypedef] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/warnings-cast] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:175: test/warnings-noreturn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:215: test_i/empty] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:215: test_i/lineno] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/alignas] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/clang-c11-generic-1-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/clang-c11-generic-1-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/clang-c11-generic-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-2-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-2-7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:197: testc11/gcc-c11-generic-3-4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:180: testobj/asm5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/addr-array] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/addr-string] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/addrof3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/align1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/align2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/apachebuf] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/apachefptr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/array_formal] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/array_multi_varsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/array_varsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/arrayinitsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/asm1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/assign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/attr-in-decllist] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/attr4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/bitfield2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/bitfield3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/blockattr2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/bool] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/booleanOp] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/builtin_choose_expr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/call2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/case_then_default_in_switch] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/caserange] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/cast8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/castincr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/comma1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/comparisons] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/compound1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/compound2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/cond1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/cond2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const-array-init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const-struct-init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const15] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const16] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/const8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/constfold] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/constfold2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/decl_mix_stmt] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/enum2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/escapes] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/extern1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/extinline2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/fallthrough-label] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/flexible-array-member] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/float] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/float2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/for1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/formalscope] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/func2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/func3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/func4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/funptr1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init12] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init13] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init14] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init15] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init16] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init17] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init18] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init19] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init20] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init21] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init22] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/init9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/initial] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/inline1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/inline2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label2b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label3] Error <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build goblint-cil 2.0.1 +- - No changes have been performed # Run eval $(opam env) to update the current shell environment 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label3b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label4b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/label6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/land_expr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/large_unsigned_long] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/linux_signal] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/localinit] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/logical] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/logical1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/logical2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/lval1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/macro_hidden] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/math1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/memcpy1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/min] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/msvc1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/msvc5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/nan-global] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/offsetof3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/packed] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/percent400] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/percentm] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/perror] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/perror1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/post-assign] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/printf2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question-fold-float] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/question3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/return1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/returnvoid] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/returnvoid1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/rmtmps-attr] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/rmtmps1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/rmtmps2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope10] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope11] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope8] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/scope9] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/semicolon] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/simon6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/sizeof1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/sizeof2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/static] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/static2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/stringsize] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/strloop] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/strloop3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/struct1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/typeof1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/typespec1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/union2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/union3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/union6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/va-arg-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/va-arg-2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/va-arg-7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/var_named_hidden] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vararg6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/varargauto1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/void] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/voidarg] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/vsp] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/warnings-unused-label] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar4] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar5] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar6] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wchar7] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:184: testrun/wrongnumargs] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-align-of] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-atomic] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-atomic-store] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-caserange] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-extendedFloat] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-generic] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-noreturn] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/c11-static-assert] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:202: testrunc11/gcc-c11-generic-1] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-bool] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-complex] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-fixed-width-int] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-float-pragma] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-predefined] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-struct] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-tgmath] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-tgmath2] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:190: testrunc99/c99-universal-character-names] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/builtin_object_size] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3a] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3b] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3c] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3d] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3e] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3f] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3g] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3h] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3i] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3j] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3k] Error 2 # Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /usr/local/lib64/perl5/5.32 /usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # BEGIN failed--compilation aborted at /home/opam/.opam/4.14/.opam-switch/build/goblint-cil.2.0.1/_build/default/test/../bin/cilly line 41. # make: *** [Makefile:208: testrungcc/enum3l] Error 2 'opam reinstall --with-test --verbose goblint-cil.2.0.1' 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.1; res=$?; test "$res" != 31 && exit "$res"; export OPAMCLI=2.0; build_dir=$(opam var prefix)/.opam-switch/build; failed=$(ls "$build_dir"); partial_fails=""; for pkg in $failed; do if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"oraclelinux-9\""; 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.1' && 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 2023-09-21 14:02.19: Job failed: Failed: Build failed 2023-09-21 14:02.19: Log analysis: 2023-09-21 14:02.19: >>> [ERROR] The compilation of goblint-cil.2.0.1 failed at "dune build -p goblint-cil -j 255 @install @runtest". (score = 20) 2023-09-21 14:02.19: >>> [ERROR] The compilation of goblint-cil.2.0.1 failed at "dune build -p goblint-cil -j 255 @install @runtest". (score = 20) 2023-09-21 14:02.19: The compilation of goblint-cil.2.0.1 failed at "dune build -p goblint-cil -j 255 @install @runtest".