You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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
Using Gcc 13 the tests
fail. Build log.
With clang, these tests pass. Build log.
The text was updated successfully, but these errors were encountered: