Skip to content

Portable tests #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 6, 2022
Merged

Portable tests #158

merged 1 commit into from
Jul 6, 2022

Conversation

antipeon
Copy link
Collaborator

No description provided.

@antipeon antipeon marked this pull request as draft April 15, 2022 13:11
@antipeon antipeon force-pushed the portable-tests branch 2 times, most recently from 9b6f5ae to 9920184 Compare May 19, 2022 13:22
@antipeon
Copy link
Collaborator Author

antipeon commented May 24, 2022

Good portability for following image:

FROM ubuntu:18.04
# use bash as default shell

SHELL ["/bin/bash", "--login", "-c"]

ENV http_proxy=http://xx.xx.xx.xx:xx
ENV https_proxy=$http_proxy
ENV HTTP_PROXY=$http_proxy
ENV HTTPS_PROXY=$http_proxy
ENV ftp_proxy=$http_proxy
ENV FTP_PROXY=$http_proxy
ENV GLOBAL_AGENT_HTTP_PROXY=$http_proxy


# set user as root for running commands
USER root

RUN apt update && apt install -y build-essential

# install clang
RUN apt update && apt -y install clang-10

# install wget for CMake
RUN apt update && apt -y install wget


#install git for gtest & openssl
RUN apt install -y software-properties-common
RUN apt update
RUN add-apt-repository -y ppa:git-core/ppa
RUN apt update
RUN apt install -y git libcurl4-openssl-dev

# install ssl for cmake

RUN apt install libssl-dev

# install ninja for gtest
RUN apt install -y --no-install-recommends ninja-build

# install cmake for gtest
# Install latest CMake
ENV INSTALL_DIR=/install
ENV UTBOT_CMAKE_BINARY=$INSTALL_DIR/bin/cmake
RUN wget --no-check-certificate https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2.tar.gz -O /tmp/cmake_src.tar.gz
RUN tar xfz /tmp/cmake_src.tar.gz -C /
RUN cd /cmake-3.17.2/ && ./bootstrap --prefix=$INSTALL_DIR --parallel=`nproc` && make -j`nproc` && make install && cd / && rm -rf /cmake-3.17.2

RUN git config --global http.sslVerify "false"

#install gtest

RUN git clone --single-branch -b release-1.10.0 https://github.com/google/googletest.git /gtest
RUN cd /gtest && mkdir build && cd build && \
    $UTBOT_CMAKE_BINARY -G "Ninja" -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR .. && \
    $UTBOT_CMAKE_BINARY --build . --target install && \
    cd /

@antipeon
Copy link
Collaborator Author

antipeon commented May 24, 2022

Run container then copy project with tests inside it (you can remove utbot_build). Then run env make -j36 -f /home/c-example/c-example/tests/lib/linked-list/linked-list.mk clean and env make -j36 -f /home/c-example/tests/lib/floats/floating_point_plain.mk run GTEST_FLAGS="--gtest_filter=*.plain_isnan_test_1" clang="/usr/bin/clang-10" clangpp="/usr/bin/clang++-10" gtest="/gtest".
The later command produces good result:

make -f /home/c-example/tests/lib/floats/../../../tests/lib/floats/__floating_point_plain_shared.mk build && { make -f /home/c-example/tests/lib/floats/../../../tests/lib/floats/__floating_point_plain_shared.mk run; exit $?; } || { make -f /home/c-example/tests/lib/floats/../../../tests/lib/floats/__floating_point_plain_obj.mk build && { make -f /home/c-example/tests/lib/floats/../../../tests/lib/floats/__floating_point_plain_obj.mk run; exit $?; } }
make[1]: Entering directory '/home/c-example/build'
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/floats && /usr/bin/clang++-10 -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -I/gtest/googletest/include -O0 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/floats/floating_point_plain_test.cpp.o -c /home/c-example/tests/lib/floats/../../../tests/lib/floats/floating_point_plain_test.cpp
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs
cd "/home/c-example/tests/lib/floats/../../../build" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../. -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs/main_stub.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -I/home/c-example/tests/lib/floats/../../../src -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -c /home/c-example/tests/lib/floats/../../../tests/stubs/main_stub.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/alignment_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/alignment_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/array
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/array -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/array/array-sort_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/array/array-sort_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/assertion_failures_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/assertion_failures_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/basic_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/basic_functions_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/bits_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/bits_wrapper.c
In file included from /home/c-example/tests/lib/floats/../../../tests/stubs/main_stub.c:12:
/home/c-example/tests/lib/floats/../../../tests/stubs/main_stub.h:29:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/dependent_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/dependent_functions_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/alignment_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/alignment_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/floats -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/floats/floating_point_wrapper.c
1 warning generated.
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/floats -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_plain_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/floats/floating_point_plain_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs/main_stub.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs/main_stub.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/globals_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/dependent_functions_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/dependent_functions_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/halt_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/assertion_failures_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/assertion_failures_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/array/array-sort_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/array/array-sort_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/basic_functions_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/basic_functions_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/bits_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/bits_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_plain_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_plain_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/helloworld_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/helloworld_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/inner
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.d
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/inner -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/inner/inner_basic_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/inner/inner_basic_functions_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/keywords -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords/keywords_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/keywords/keywords_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/keywords -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords/qualifiers_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/keywords/qualifiers_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_wrapper.c.d
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/linked-list -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list/linked-list_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/linked-list/linked-list_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/linked-list -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list/tree_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/linked-list/tree_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/keywords/keywords_wrapper.c:7:
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/main_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/main_wrapper.c
/home/c-example/tests/lib/floats/../../../tests/wrapper/lib/keywords/../../../../lib/keywords/keywords.c:16:1: warning: function declared 'noreturn' should not return [-Winvalid-noreturn]
}
^
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/helloworld_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/helloworld_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/inner/inner_basic_functions_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/inner/inner_basic_functions_wrapper.c.d
1 warning generated.
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords/keywords_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords/keywords_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/memory_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/memory_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/module
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list/tree_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list/tree_wrapper.c.d
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/module -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/module/libfunc_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/module/libfunc_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/main_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/main_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/multi_arrays_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list/linked-list_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/linked-list/linked-list_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/pointers -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/function_pointers_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/function_pointers_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords/qualifiers_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/keywords/qualifiers_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/pointers -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_parameters_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/pointer_parameters_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/enums_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/enums_wrapper.c
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/static_wrapper.c
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/pointers -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_return_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/pointer_return_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/module/libfunc_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/module/libfunc_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/function_pointers_wrapper.c:7:
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/function_pointers.c:5:
In file included from /home/c-example/tests/lib/floats/../../../lib/pointers/function_pointers.h:8:
/home/c-example/tests/lib/floats/../../../lib/pointers/../structures/structs/simple_structs.h:28:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/simple_unions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/simple_unions_wrapper.c
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/pointer_parameters_wrapper.c:7:
/home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/pointer_parameters.c:24:21: warning: passing 'const unsigned char *' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
    return c_strcmp(a, "world");
                    ^
/home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/pointer_parameters.c:7:26: note: passing argument to parameter 'a' here
int c_strcmp(const char* a, const char *b) {
                         ^
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/memory_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/memory_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/struct_arrays_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/struct_arrays_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures/structs -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/complex_structs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/complex_structs_wrapper.c
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/simple_unions_wrapper.c:7:
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/../../../../lib/structures/simple_unions.c:1 warning generated.
5:
/home/c-example/tests/lib/floats/../../../lib/structures/simple_unions.h:40:9: warning: declaration does not declare anything [-Wmissing-declarations]
        union InInnerUnion {mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs

        ^
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/pointer_return_wrapper.c:7:
/home/c-example/tests/lib/floats/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/pointer_return.c:121:12: warning: returning 'struct MinMax **' from a function with result type 'const struct MinMax **' discards qualifiers in nested pointer types [-Wincompatible-pointer-types-discards-qualifiers]
    return arr;
           ^~~
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_parameters_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_parameters_wrapper.c.d
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures/structs -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/packed_structs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/packed_structs_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures/structs -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/simple_structs_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/enums_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/enums_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures/structs -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c
1 warning generated.
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/struct_arrays_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/struct_arrays_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/complex_structs_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/complex_structs_wrapper.c.d
1 warning generated.
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/stubs
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/function_pointers_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/function_pointers_wrapper.c.d
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/stubs -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/stubs/stubs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/stubs/stubs_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_return_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_return_wrapper.c.d
1 warning generated.
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/simple_structs_wrapper.c:7:
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/../../../../../lib/structures/structs/simple_structs.c:5:
/home/c-example/tests/lib/floats/../../../lib/structures/structs/simple_structs.h:28:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/simple_unions_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/simple_unions_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/symbolic_stdin_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/symbolic_stdin_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/packed_structs_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/packed_structs_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/types -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/typedefs_1_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/types/typedefs_1_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/types -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/typedefs_2_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/types/typedefs_2_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/stubs/stubs_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/stubs/stubs_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/types -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/types/types_wrapper.c
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/types -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_2_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/types/types_2_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/symbolic_stdin_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/symbolic_stdin_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/types -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/types/types_3_wrapper.c
1 warning generated.
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/variadic_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/variadic_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/void_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/void_functions_wrapper.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_2_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_2_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/typedefs_2_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/typedefs_2_wrapper.c.d
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs/src
cd "/home/c-example/tests/lib/floats/../../../build/src" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../src -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src/calc_stub.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs/src/calc_stub.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../src -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src/calc_stub.c.o -c /home/c-example/tests/lib/floats/../../../tests/stubs/src/calc_stub.c
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/typedefs_1_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/typedefs_1_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/void_functions_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/void_functions_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/variadic_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/variadic_wrapper.c.d
In file included from /home/c-example/tests/lib/floats/../../../tests/stubs/src/calc_stub.c:12:
/home/c-example/tests/lib/floats/../../../tests/stubs/src/calc_stub.h:29:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^
1 warning generated.
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs/src/calc_stub.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/stubs/src/calc_stub.c.d
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/types/types_wrapper.c.d
rm -f /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a
cd "/home/c-example/tests/lib/floats/../../../build/src" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src && /usr/bin/ar qc -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src/calc_stub.c.o
rm -f /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib && /usr/bin/ar qc -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o
rm -f /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so
cd "/home/c-example/tests/lib/floats/../../../build" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled && /usr/bin/clang-10 -shared  -O0 -Wl,--allow-multiple-definition -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -Wl,--whole-archive -fuse-ld=gold /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a -Wl,--no-whole-archive
cd "/home/c-example/tests/lib/floats/../../../build" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/floats && /usr/bin/clang++-10  -L/home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled /home/c-example/tests/lib/floats/../../../build/googletest/gtest_main.cc.o /home/c-example/tests/lib/floats/../../../build/googletest/gtest-all.cc.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/floats/floating_point_plain_test.cpp.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a -lpthread -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -O0 -fuse-ld=gold -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/floats/floating_point_plain
/usr/bin/ld.gold: warning: Cannot export local symbol '__asan_extra_spill_area'
make[1]: Leaving directory '/home/c-example/build'
make[1]: Entering directory '/home/c-example/build'
mkdir -p /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/floats/../../../lib/structures/structs -MT /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o -MMD -MP -MF /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/floats/../../../lib -std=gnu11 -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o -c /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/simple_structs_wrapper.c
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/simple_structs_wrapper.c:7:
In file included from /home/c-example/tests/lib/floats/../../../tests/wrapper/lib/structures/structs/../../../../../lib/structures/structs/simple_structs.c:5:
/home/c-example/tests/lib/floats/../../../lib/structures/structs/simple_structs.h:28:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^
1 warning generated.
mv -f /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.Td /home/c-example/tests/lib/floats/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.d
rm -f /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a
cd "/home/c-example/tests/lib/floats/../../../build/lib" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib && /usr/bin/ar qc -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o
rm -f /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so
cd "/home/c-example/tests/lib/floats/../../../build" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled && /usr/bin/clang-10 -shared  -O0 -Wl,--allow-multiple-definition -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -Wl,--whole-archive -fuse-ld=gold /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a -Wl,--no-whole-archive
cd "/home/c-example/tests/lib/floats/../../../build" && mkdir -p /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/floats && /usr/bin/clang++-10  -L/home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled /home/c-example/tests/lib/floats/../../../build/googletest/gtest_main.cc.o /home/c-example/tests/lib/floats/../../../build/googletest/gtest-all.cc.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/floats/floating_point_plain_test.cpp.o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a -lpthread -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -O0 -fuse-ld=gold -o /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/floats/floating_point_plain
/usr/bin/ld.gold: warning: Cannot export local symbol '__asan_extra_spill_area'
cd "/home/c-example/tests/lib/floats/../../../build" && PATH=$PATH: UBSAN_OPTIONS=print_stacktrace=1,report_error_type=1 ASAN_OPTIONS=debug=1,detect_odr_violation=1,detect_stack_use_after_return=1,detect_leaks=0 /home/c-example/tests/lib/floats/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/floats/floating_point_plain --gtest_filter=*.plain_isnan_test_1
Running main() from /gtest/googletest/src/gtest_main.cc
Note: Google Test filter = *.plain_isnan_test_1
[==========] Running 1 test from 1 test suite.
[----------] Global test environment set-up.
[----------] 1 test from regression
[ RUN      ] regression.plain_isnan_test_1
[       OK ] regression.plain_isnan_test_1 (0 ms)
[----------] 1 test from regression (0 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test suite ran. (0 ms total)
[  PASSED  ] 1 test.
make[1]: Leaving directory '/home/c-example/build'

@antipeon
Copy link
Collaborator Author

Or for linked list with env make -j36 -f /home/c-example/tests/lib/linked-list/linked-list.mk run GTEST_FLAGS="--gtest_filter=*.sort_list_with_comparator_test_7" clang="/usr/bin/clang-10" clangpp="/usr/bin/clang++-10" gtest="/gtest":

make -f /home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/__linked-list_shared.mk build && { make -f /home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/__linked-list_shared.mk run; exit $?; } || { make -f /home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/__linked-list_obj.mk build && { make -f /home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/__linked-list_obj.mk run; exit $?; } }
make[1]: Entering directory '/home/c-example/tests/lib/linked-list'
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/linked-list && /usr/bin/clang++-10 -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -I/gtest/googletest/include -O0 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/linked-list/linked-list_test.cpp.o -c /home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/linked-list_test.cpp
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs
cd "/home/c-example/tests/lib/linked-list/../../../build" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../. -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs/main_stub.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -I/home/c-example/tests/lib/linked-list/../../../src -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/stubs/main_stub.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/alignment_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/alignment_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/array
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/array -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/array/array-sort_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/array/array-sort_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/assertion_failures_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/assertion_failures_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/basic_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/basic_functions_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/bits_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/bits_wrapper.c
In file included from /home/c-example/tests/lib/linked-list/../../../tests/stubs/main_stub.c:12:
/home/c-example/tests/lib/linked-list/../../../tests/stubs/main_stub.hmkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
:29:9: warning: declaration does not declare anything [-Wmissing-declarations]cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/dependent_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/dependent_functions_wrapper.c

        struct InInnerStruct {
        ^
1 warning generated.
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs/main_stub.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs/main_stub.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/floats -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/floats/floating_point_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/alignment_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/alignment_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/floats -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_plain_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/floats/floating_point_plain_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/globals_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/halt_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/assertion_failures_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/assertion_failures_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/basic_functions_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/basic_functions_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/helloworld_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/helloworld_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/dependent_functions_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/dependent_functions_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/inner
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/inner -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/inner/inner_basic_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/inner/inner_basic_functions_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/bits_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/bits_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/array/array-sort_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/array/array-sort_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/keywords -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords/keywords_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/keywords/keywords_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/keywords -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords/qualifiers_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/keywords/qualifiers_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_plain_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_plain_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/linked-list -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list/linked-list_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/linked-list/linked-list_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/linked-list -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list/tree_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/linked-list/tree_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/main_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/main_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/memory_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/memory_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/inner/inner_basic_functions_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/inner/inner_basic_functions_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.d
In file included from /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/keywords/keywords_wrapper.c:7:
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/module
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/module -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/module/libfunc_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/module/libfunc_wrapper.c
/home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/keywords/../../../../lib/keywords/keywords.c:16:1: warning: function declared 'noreturn' should not return [-Winvalid-noreturn]
}
^
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/helloworld_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/helloworld_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/floats/floating_point_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/multi_arrays_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/pointers -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/function_pointers_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/function_pointers_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/pointers -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_parameters_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/pointer_parameters_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list/tree_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list/tree_wrapper.c.d
1 warning generated.
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/main_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/main_wrapper.c.d
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/pointers -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_return_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/pointer_return_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords/keywords_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords/keywords_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/static_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords/qualifiers_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/keywords/qualifiers_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/structures -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/enums_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-insIn file included from tr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/enums_wrapper.c
/home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/function_pointers_wrapper.c:7:
In file included from /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/function_pointers.c:5:
In file included from /home/c-example/tests/lib/linked-list/../../../lib/pointers/function_pointers.h:8:
/home/c-example/tests/lib/linked-list/../../../lib/pointers/../structures/structs/simple_structs.h:28:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^In file included from /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/pointer_parameters_wrapper.c:7:
/home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/pointer_parameters.c:24:21: warning: passing 'const unsigned char *' to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign]
    return c_strcmp(a, "world");
                    ^
/home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/pointer_parameters.c:7:mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/module/libfunc_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/module/libfunc_wrapper.c.d
26: note: passing argument to parameter 'a' here
int c_strcmp(const char* a, const char *b) {
                         ^
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/structures -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/simple_unions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/simple_unions_wrapper.c

mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/structures -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/struct_arrays_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/struct_arrays_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list/linked-list_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/linked-list/linked-list_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/structures/structs -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/complex_structs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/structs/complex_structs_wrapper.c
In file included from /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/pointer_return_wrapper.c:7:
/home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/pointers/../../../../lib/pointers/pointer_return.c:121:12: warning: returning 'struct MinMax **' from a function with result type 'const struct MinMax **' discards qualifiers in nested pointer types [-Wincompatible-pointer-types-discards-qualifiers]
    return arr;
           ^~~
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs
1 warning generated.
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/structures/structs -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/packed_structs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/structs/packed_structs_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/memory_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/memory_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_parameters_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_parameters_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs
In file included from cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/structures/structs -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/structs/simple_structs_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.d
/home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/simple_unions_wrapper.c:7:
In file included from /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/../../../../lib/structures/simple_unions.c:5:
/home/c-example/tests/lib/linked-list/../../../lib/structures/simple_unions.h:40:9: warning: declaration does not declare anything [-Wmissing-declarations]
        union InInnerUnion {
        ^
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/structures/structs -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/stubs
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/stubs -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/stubs/stubs_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/stubs/stubs_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/enums_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/enums_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
1 warning generated.
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/symbolic_stdin_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/symbolic_stdin_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/struct_arrays_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/struct_arrays_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_return_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/pointer_return_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/types -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/typedefs_1_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/types/typedefs_1_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/types -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/typedefs_2_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/types/typedefs_2_wrapper.c
In file included from /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/structs/simple_structs_wrapper.c:7:
In file included from /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/structures/structs/../../../../../lib/structures/structs/simple_structs.c:5:
/home/c-example/tests/lib/linked-list/../../../lib/structures/structs/simple_structs.h:28:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^
1 warning generated.
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/packed_structs_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/packed_structs_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/complex_structs_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/complex_structs_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/types -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/types/types_wrapper.c
1 warning generated.
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/function_pointers_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/pointers/function_pointers_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/stubs/stubs_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/stubs/stubs_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/types -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_2_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/types/types_2_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/simple_unions_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/simple_unions_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/types -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/types/types_3_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/variadic_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/variadic_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/void_functions_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/void_functions_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/structs_with_pointers_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/symbolic_stdin_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/symbolic_stdin_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/typedefs_2_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/typedefs_2_wrapper.c.d
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs/src
cd "/home/c-example/tests/lib/linked-list/../../../build/src" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../src -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src/calc_stub.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs/src/calc_stub.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../src -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src/calc_stub.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/stubs/src/calc_stub.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/typedefs_1_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/typedefs_1_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_2_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_2_wrapper.c.d
In file included from 1 warning generated.
/home/c-example/tests/lib/linked-list/../../../tests/stubs/src/calc_stub.c:12:
/home/c-example/tests/lib/linked-list/../../../tests/stubs/src/calc_stub.h:29:9: warning: declaration does not declare anything [-Wmissing-declarations]
        struct InInnerStruct {
        ^
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/variadic_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/variadic_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/structures/structs/simple_structs_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/void_functions_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/void_functions_wrapper.c.d
1 warning generated.
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs/src/calc_stub.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/stubs/src/calc_stub.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_wrapper.c.d
rm -f /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a
cd "/home/c-example/tests/lib/linked-list/../../../build/src" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src && /usr/bin/ar qc -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/src/calc_stub.c.o
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.d
rm -f /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib && /usr/bin/ar qc -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o
rm -f /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so
cd "/home/c-example/tests/lib/linked-list/../../../build" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled && /usr/bin/clang-10 -shared  -O0 -Wl,--allow-multiple-definition -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -Wl,--whole-archive -fuse-ld=gold /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a -Wl,--no-whole-archive
cd "/home/c-example/tests/lib/linked-list/../../../build" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list && /usr/bin/clang++-10  -L/home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled /home/c-example/tests/lib/linked-list/../../../build/googletest/gtest_main.cc.o /home/c-example/tests/lib/linked-list/../../../build/googletest/gtest-all.cc.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/linked-list/linked-list_test.cpp.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a -lpthread -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -O0 -fuse-ld=gold -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list
/usr/bin/ld.gold: warning: Cannot export local symbol '__asan_extra_spill_area'
make[1]: Leaving directory '/home/c-example/tests/lib/linked-list'
make[1]: Entering directory '/home/c-example/tests/lib/linked-list'
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/globals_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/halt_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/multi_arrays_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/static_wrapper.c
mkdir -p /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types && C_INCLUDE_PATH=TBOT_LAUNCH_INCLUDE_PATH /usr/bin/clang-10 -iquote/home/c-example/tests/lib/linked-list/../../../lib/types -MT /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o -MMD -MP -MF /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.Td -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -fno-sanitize-recover=all -fprofile-instr-generate -fcoverage-mapping -g -fno-omit-frame-pointer -fno-optimize-sibling-calls -fPIC -O0 -I/home/c-example/tests/lib/linked-list/../../../lib -std=gnu11 -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o -c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/types/types_3_wrapper.c
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/halt_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/globals_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/static_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/multi_arrays_wrapper.c.d
mv -f /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.Td /home/c-example/tests/lib/linked-list/../../../build/dependencies/tests/wrapper/lib/types/types_3_wrapper.c.d
rm -f /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a
cd "/home/c-example/tests/lib/linked-list/../../../build/lib" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib && /usr/bin/ar qc -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/alignment.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/array/array-sort.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/assertion_failures.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/basic_functions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/bits.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/dependent_functions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/floats/floating_point_plain.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/globals.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/halt.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/helloworld.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/inner/inner_basic_functions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/keywords.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/keywords/qualifiers.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/linked-list.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/linked-list/tree.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/main.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/memory.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/module/libfunc.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/multi_arrays.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/function_pointers.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_parameters.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/pointers/pointer_return.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/static.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/enums.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/simple_unions.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/struct_arrays.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/complex_structs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/packed_structs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/simple_structs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/structures/structs/structs_with_pointers.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/stubs/stubs.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/symbolic_stdin.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_1.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/typedefs_2.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_2.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/types/types_3.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/variadic.c.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/CMakeFiles/lib.dir/void_functions.c.o
rm -f /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so
cd "/home/c-example/tests/lib/linked-list/../../../build" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled && /usr/bin/clang-10 -shared  -O0 -Wl,--allow-multiple-definition -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -Wl,--whole-archive -fuse-ld=gold /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/tests/stubs/main_stub.c.o -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a -Wl,--no-whole-archive
cd "/home/c-example/tests/lib/linked-list/../../../build" && mkdir -p /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list && /usr/bin/clang++-10  -L/home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled /home/c-example/tests/lib/linked-list/../../../build/googletest/gtest_main.cc.o /home/c-example/tests/lib/linked-list/../../../build/googletest/gtest-all.cc.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/test_objects/lib/linked-list/linked-list_test.cpp.o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/libc-example___liblib_a.so /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/liblib.a /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/src/libsrc_stub.a -lpthread -fprofile-instr-generate -fsanitize=alignment,builtin,bounds,enum,float-cast-overflow,float-divide-by-zero,implicit-unsigned-integer-truncation,implicit-signed-integer-truncation,implicit-integer-sign-change,integer-divide-by-zero,nonnull-attribute,null,nullability-arg,nullability-assign,nullability-return,pointer-overflow,return,returns-nonnull-attribute,shift,unreachable,vla-bound -fsanitize=address -O0 -fuse-ld=gold -o /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list
/usr/bin/ld.gold: warning: Cannot export local symbol '__asan_extra_spill_area'
cd "/home/c-example/tests/lib/linked-list/../../../build" && PATH=$PATH: UBSAN_OPTIONS=print_stacktrace=1,report_error_type=1 ASAN_OPTIONS=debug=1,detect_odr_violation=1,detect_stack_use_after_return=1,detect_leaks=0 /home/c-example/tests/lib/linked-list/../../../build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list --gtest_filter=*.sort_list_with_comparator_test_7
Running main() from /gtest/googletest/src/gtest_main.cc
Note: Google Test filter = *.sort_list_with_comparator_test_7
[==========] Running 1 test from 1 test suite.
[----------] Global test environment set-up.
[----------] 1 test from error
[ RUN      ] error.sort_list_with_comparator_test_7
AddressSanitizer:DEADLYSIGNAL
=================================================================
==10745==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000030 (pc 0x7f541894e6f6 bp 0x7ffd2bae7220 sp 0x7ffd2bae71f0 T0)
==10745==The signal is caused by a READ memory access.
==10745==Hint: address points to the zero page.
    #0 0x7f541894e6f6 in len_bound /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/linked-list/../../../../lib/linked-list/linked-list.c:124:22
    #1 0x7f541894f584 in sort_list_with_comparator /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/linked-list/../../../../lib/linked-list/linked-list.c:163:13
    #2 0x7f5418950590 in sort_list_with_comparator_lib_linked_list_linked_list_c /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/linked-list/linked-list_wrapper.c:36:8
    #3 0x52893c in UTBot::sort_list_with_comparator(UTBot::Node*, int (*)(int, int)) /home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/linked-list_test.h:140:8
    #4 0x52cae6 in UTBot::error_sort_list_with_comparator_test_7_Test::TestBody() /home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/linked-list_test.cpp:793:5
    #5 0x5185d3 in void testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test, void>(testing::Test*, void (testing::Test::*)(), char const*) (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x5185d3)
    #6 0x4ff93a in void testing::internal::HandleExceptionsInMethodIfSupported<testing::Test, void>(testing::Test*, void (testing::Test::*)(), char const*) (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4ff93a)
    #7 0x4dff12 in testing::Test::Run() (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4dff12)
    #8 0x4e0c5c in testing::TestInfo::Run() (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4e0c5c)
    #9 0x4e139b in testing::TestSuite::Run() (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4e139b)
    #10 0x4eddce in testing::internal::UnitTestImpl::RunAllTests() (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4eddce)
    #11 0x51bfb3 in bool testing::internal::HandleSehExceptionsInMethodIfSupported<testing::internal::UnitTestImpl, bool>(testing::internal::UnitTestImpl*, bool (testing::internal::UnitTestImpl::*)(), char const*) (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x51bfb3)
    #12 0x50224a in bool testing::internal::HandleExceptionsInMethodIfSupported<testing::internal::UnitTestImpl, bool>(testing::internal::UnitTestImpl*, bool (testing::internal::UnitTestImpl::*)(), char const*) (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x50224a)
    #13 0x4ed925 in testing::UnitTest::Run() (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4ed925)
    #14 0x4d5330 in RUN_ALL_TESTS() (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4d5330)
    #15 0x4d52ff in main (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x4d52ff)
    #16 0x7f541747ec86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
    #17 0x42ab19 in _start (/home/c-example/build/utbot_build/tmp/gWX1133223-FK78/recompiled/lib/linked-list/linked-list+0x42ab19)

AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV /home/c-example/tests/lib/linked-list/../../../tests/wrapper/lib/linked-list/../../../../lib/linked-list/linked-list.c:124:22 in len_bound
==10745==ABORTING
/home/c-example/tests/lib/linked-list/../../../tests/lib/linked-list/__linked-list_shared.mk:240: recipe for target 'run' failed
make[1]: *** [run] Error 1
make[1]: Leaving directory '/home/c-example/tests/lib/linked-list'
/home/c-example/tests/lib/linked-list/linked-list.mk:11: recipe for target 'run' failed
make: *** [run] Error 2

@antipeon
Copy link
Collaborator Author

Reduced dockerfile to:

FROM ubuntu:18.04
# use bash as default shell

SHELL ["/bin/bash", "--login", "-c"]

ENV http_proxy=http://xx.xx.xx.xx:xx
ENV https_proxy=$http_proxy
ENV HTTP_PROXY=$http_proxy
ENV HTTPS_PROXY=$http_proxy
ENV ftp_proxy=$http_proxy
ENV FTP_PROXY=$http_proxy
ENV GLOBAL_AGENT_HTTP_PROXY=$http_proxy


# set user as root for running commands
USER root

RUN apt update && apt install -y build-essential cmake

# install clang
RUN apt update && apt -y install clang-10

# install wget for CMake
# RUN apt update && apt -y install wget


#install git for gtest
RUN apt install -y software-properties-common
RUN apt update
RUN add-apt-repository -y ppa:git-core/ppa
RUN apt update
RUN apt install -y git libcurl4-openssl-dev

ENV INSTALL_DIR=/install
ENV UTBOT_CMAKE_BINARY=cmake

RUN git config --global http.sslVerify "false"

#install gtest

RUN git clone --single-branch -b release-1.10.0 https://github.com/google/googletest.git /gtest
RUN cd /gtest && mkdir build && cd build && \
    $UTBOT_CMAKE_BINARY -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR .. && \
    $UTBOT_CMAKE_BINARY --build . --target install && \
    cd /

@antipeon antipeon force-pushed the portable-tests branch 2 times, most recently from d68d928 to fd07fd3 Compare May 26, 2022 12:28
@antipeon antipeon force-pushed the portable-tests branch 2 times, most recently from a2d887b to b6570d3 Compare June 9, 2022 17:22
@antipeon antipeon marked this pull request as ready for review June 10, 2022 15:34
@antipeon antipeon requested a review from ladisgin June 10, 2022 15:34
@antipeon antipeon requested a review from ladisgin June 23, 2022 15:31
@antipeon antipeon requested a review from alexey-utkin June 30, 2022 14:05
@antipeon antipeon merged commit 0904755 into main Jul 6, 2022
@sava-cska sava-cska deleted the portable-tests branch July 11, 2022 21:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Make running tests portable (switch to relative paths, isolation environment)
3 participants