bee2 icon indicating copy to clipboard operation
bee2 copied to clipboard

Tests fail when building on Fedora Linux with GCC 13

Open bkmgit opened this issue 3 years ago • 3 comments

Using Gcc 13 the tests

  • bignTest: Err
  • botpTest: Err
  • brngTest: Err
  • belsTest: Err
  • bakeTest: Err

fail. Build log.

With clang, these tests pass. Build log.

bkmgit avatar Jan 30 '23 08:01 bkmgit

Cannot reproduce test fails on gcc13 (Fedora 38). Following Dockerfile was used for testing:

FROM rhub/gcc13:latest

RUN dnf install -y cmake doxygen git

RUN gcc --version
RUN cat /etc/os-release

WORKDIR /usr/src
RUN git clone https://github.com/agievich/bee2.git

WORKDIR /usr/src/bee2
RUN mkdir build

WORKDIR /usr/src/bee2/build
RUN cmake ..
RUN make
RUN make test
RUN make install

WORKDIR /usr/src

blackbearman avatar Feb 02 '23 10:02 blackbearman

Trying to reproduce: https://github.com/bkmgit/bee2/tree/ci-test Environment is not exactly the same though.

bkmgit avatar Feb 08 '23 12:02 bkmgit

Cannot reproduce test fails on clean latest Fedora Rawhide image with GCC 13.0. Following Dockerfile was used for testing:

FROM fedora:rawhide

RUN dnf -y update

RUN dnf install -y gcc cmake doxygen git

RUN gcc --version
RUN cat /etc/os-release

WORKDIR /usr/src
RUN git clone https://github.com/agievich/bee2.git

WORKDIR /usr/src/bee2
RUN mkdir build

WORKDIR /usr/src/bee2/build
RUN cmake ..
RUN make
RUN make test
RUN make install

WORKDIR /usr/src

blackbearman avatar Feb 16 '23 11:02 blackbearman