diff --git a/tests/unit/.gitignore b/tests/unit/.gitignore new file mode 100644 index 0000000..b6fc032 --- /dev/null +++ b/tests/unit/.gitignore @@ -0,0 +1,21 @@ +# Editor Files and Folders + +.idea/ +.vscode/ +.DS_Store +*~ +\#*# + +# Build Files and Binaries + +*.log +*.o +*.so +*.dll +*.dylib +cmake-build-*/ +*build/ + +# Coverage file +coverage.info +coverage \ No newline at end of file diff --git a/tests/unit/CMakeLists.txt b/tests/unit/CMakeLists.txt new file mode 100644 index 0000000..cf5b0d5 --- /dev/null +++ b/tests/unit/CMakeLists.txt @@ -0,0 +1,63 @@ +cmake_minimum_required(VERSION 3.10) + +if(${CMAKE_VERSION} VERSION_LESS 3.10) + cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}) +endif() + +# project information +project(unit_tests + VERSION 0.1 + DESCRIPTION "Unit tests for C project" + LANGUAGES C) + + +# guard against bad build-type strings +if (NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE "Debug") +endif() + +include(CTest) +ENABLE_TESTING() + +# specify C standard +set(CMAKE_C_STANDARD 11) +set(CMAKE_C_STANDARD_REQUIRED True) +set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Wall -pedantic -g -O0 --coverage") + +set(GCC_COVERAGE_LINK_FLAGS "--coverage -lgcov") +set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") +set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_COVERAGE_LINK_FLAGS}") + +# guard against in-source builds +if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) + message(FATAL_ERROR "In-source builds not allowed. Please make a new directory (called a build directory) and run CMake from there. You may need to remove CMakeCache.txt. ") +endif() + +# Fetch cmocka +find_package(cmocka QUIET) +include(FetchContent) +FetchContent_Declare( + cmocka + GIT_REPOSITORY https://git.cryptomilk.org/projects/cmocka.git + GIT_TAG cmocka-1.1.5 + GIT_SHALLOW 1 +) +set(WITH_STATIC_LIB ON CACHE BOOL "CMocka: Build with a static library" FORCE) +set(WITH_CMOCKERY_SUPPORT OFF CACHE BOOL "CMocka: Install a cmockery header" FORCE) +set(WITH_EXAMPLES OFF CACHE BOOL "CMocka: Build examples" FORCE) +set(UNIT_TESTING OFF CACHE BOOL "CMocka: Build with unit testing" FORCE) +set(PICKY_DEVELOPER OFF CACHE BOOL "CMocka: Build with picky developer flags" FORCE) +FetchContent_MakeAvailable(cmocka) + +add_compile_definitions(TEST DEBUG=0 SKIP_FOR_CMOCKA) + +include_directories(../../src/) +include_directories(../../src_common) + +add_executable(test_utils tests/utils.c) + +add_library(utils SHARED ../../src/utils2.c) + +target_link_libraries(test_utils PUBLIC cmocka gcov utils) + +add_test(test_utils test_utils) \ No newline at end of file diff --git a/tests/unit/Makefile b/tests/unit/Makefile new file mode 100644 index 0000000..c7762cb --- /dev/null +++ b/tests/unit/Makefile @@ -0,0 +1,42 @@ +MAKEFLAGS += --no-print-directory + +RM ?= rm -f +ECHO = `which echo` + +ifneq (,$(findstring xterm,${TERM})) +GREEN := $(shell tput -Txterm setaf 2) +RED := $(shell tput -Txterm setaf 1) +CYAN := $(shell tput -Txterm setaf 6) +RESET := $(shell tput -Txterm sgr0) +else +GREEN := "" +RED := "" +RESET := "" +endif + +BUILD_DIRECTORY = $(realpath build/) + +DIRECTORY_BUILD = build + +all: + @cmake -B ${DIRECTORY_BUILD} -H. + @make -C ${DIRECTORY_BUILD} + @CTEST_OUTPUT_ON_FAILURE=1 make -C ${DIRECTORY_BUILD} test + +coverage: all + @lcov --directory . -b "${BUILD_DIRECTORY}" --capture --initial -o coverage.base + @lcov --rc lcov_branch_coverage=1 --directory . -b "${BUILD_DIRECTORY}" --capture -o coverage.capture + @lcov --directory . -b "${BUILD_DIRECTORY}" --add-tracefile coverage.base --add-tracefile coverage.capture -o coverage.info + @lcov --directory . -b "${BUILD_DIRECTORY}" --remove coverage.info '*/unit-tests/*' -o coverage.info --remove coverage.info '*/build/_deps/cmocka-src/src/*' + @$(ECHO) -e "${GREEN}[ OK ]${RESET} Generated 'coverage.info'." + @genhtml coverage.info -o coverage + @if [ -f coverage.base ]; then $(ECHO) -e "${RED}[ RM ]${RESET}" coverage.base && $(RM) -r coverage.base ; fi; + @if [ -f coverage.capture ]; then $(ECHO) -e "${RED}[ RM ]${RESET}" coverage.capture && $(RM) -r coverage.capture ; fi; + @$(ECHO) -e "${CYAN}[ REDIRECT ]${RESET}" `realpath coverage/index.html` && xdg-open `realpath coverage/index.html` + +clean: + @if [ -d ${DIRECTORY_BUILD} ]; then $(ECHO) -e "${RED}[ RM ]${RESET}" ${DIRECTORY_BUILD} && $(RM) -r ${DIRECTORY_BUILD} ; fi; + @if [ -d coverage ]; then $(ECHO) -e "${RED}[ RM ]${RESET}" coverage && $(RM) -r coverage ; fi; + @if [ -f coverage.info ]; then $(ECHO) -e "${RED}[ RM ]${RESET}" coverage.info && $(RM) -r coverage.info ; fi; + +.PHONY: all tests clean \ No newline at end of file diff --git a/tests/unit/README.md b/tests/unit/README.md new file mode 100644 index 0000000..eb89951 --- /dev/null +++ b/tests/unit/README.md @@ -0,0 +1,32 @@ +# Unit tests + +It is important to unit test your functions. +This also allows you to document how your functions work. +We use the library [**cmocka**](https://cmocka.org/#features) + +## Requirement + +- [CMake >= 3.10](https://cmake.org/download/) +- [lcov >= 1.14](http://ltp.sourceforge.net/coverage/lcov.php) + +Don't worry, you don't necessarily need to install the `cmocka library` because the **cmakelist automatically fetches** the library + +## Usage + +### Build + +The `default rules` of makefile will compile the tests and run them. + +```sh +make +``` + +The `coverage rule` will launch the default rules and generate the coverage and you will be **automatically redirected** to the generated .html +```sh +make coverage +``` + +The `clean rule` will delete the folders and files generated +```sh +make clean +``` \ No newline at end of file diff --git a/tests/unit/build/CMakeCache.txt b/tests/unit/build/CMakeCache.txt new file mode 100644 index 0000000..afd28da --- /dev/null +++ b/tests/unit/build/CMakeCache.txt @@ -0,0 +1,873 @@ +# This is the CMakeCache file. +# For build in directory: /home/cseguret/Projects/app-ethereum/tests/unit/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Build the testing tree. +BUILD_TESTING:BOOL=ON + +//Path to a program. +BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//Flags used by the CXX compiler during ADDRESSSANITIZER builds. +CMAKE_CXX_FLAGS_ADDRESSSANITIZER:STRING=-g -O1 -fsanitize=address -fno-omit-frame-pointer + +//Flags used by the CXX compiler during MEMORYSANITIZER builds. +CMAKE_CXX_FLAGS_MEMORYSANITIZER:STRING=-g -O2 -fsanitize=memory -fsanitize-memory-track-origins=2 -fno-omit-frame-pointer + +//Flags used by the CXX compiler during PROFILING builds. +CMAKE_CXX_FLAGS_PROFILING:STRING=-O0 -g -fprofile-arcs -ftest-coverage + +//Flags used by the CXX compiler during UNDEFINEDSANITIZER builds. +CMAKE_CXX_FLAGS_UNDEFINEDSANITIZER:STRING=-g -O1 -fsanitize=undefined -fsanitize=null -fsanitize=alignment -fno-sanitize-recover + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-9 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during ADDRESSSANITIZER builds. +CMAKE_C_FLAGS_ADDRESSSANITIZER:STRING=-g -O1 -fsanitize=address -fno-omit-frame-pointer + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MEMORYSANITIZER builds. +CMAKE_C_FLAGS_MEMORYSANITIZER:STRING=-g -O2 -fsanitize=memory -fsanitize-memory-track-origins=2 -fno-omit-frame-pointer + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during PROFILING builds. +CMAKE_C_FLAGS_PROFILING:STRING=-O0 -g -fprofile-arcs -ftest-coverage + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the C compiler during UNDEFINEDSANITIZER builds. +CMAKE_C_FLAGS_UNDEFINEDSANITIZER:STRING=-g -O1 -fsanitize=undefined -fsanitize=null -fsanitize=alignment -fno-sanitize-recover + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during ADDRESSSANITIZER builds. +CMAKE_EXEC_LINKER_FLAGS_ADDRESSSANITIZER:STRING=-fsanitize=address + +//Flags used by the linker during MEMORYSANITIZER builds. +CMAKE_EXEC_LINKER_FLAGS_MEMORYSANITIZER:STRING=-fsanitize=memory + +//Flags used by the linker during PROFILING builds. +CMAKE_EXEC_LINKER_FLAGS_PROFILING:STRING=-fprofile-arcs -ftest-coverage + +//Flags used by the linker during UNDEFINEDSANITIZER builds. +CMAKE_EXEC_LINKER_FLAGS_UNDEFINEDSANITIZER:STRING=-fsanitize=undefined + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during ADDRESSSANITIZER builds. +CMAKE_MODULE_LINKER_FLAGS_ADDRESSSANITIZER:STRING=-fsanitize=address + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MEMORYSANITIZER builds. +CMAKE_MODULE_LINKER_FLAGS_MEMORYSANITIZER:STRING=-fsanitize=memory + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during PROFILING builds. +CMAKE_MODULE_LINKER_FLAGS_PROFILING:STRING=-fprofile-arcs -ftest-coverage + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Flags used by the linker during the creation of shared libraries +// during UNDEFINEDSANITIZER builds. +CMAKE_MODULE_LINKER_FLAGS_UNDEFINEDSANITIZER:STRING=-fsanitize=undefined + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC=Unit tests for C project + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=unit_tests + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during ADDRESSSANITIZER builds. +CMAKE_SHARED_LINKER_FLAGS_ADDRESSSANITIZER:STRING=-fsanitize=address + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MEMORYSANITIZER builds. +CMAKE_SHARED_LINKER_FLAGS_MEMORYSANITIZER:STRING=-fsanitize=memory + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during PROFILING builds. +CMAKE_SHARED_LINKER_FLAGS_PROFILING:STRING=-fprofile-arcs -ftest-coverage + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Flags used by the linker during the creation of shared libraries +// during UNDEFINEDSANITIZER builds. +CMAKE_SHARED_LINKER_FLAGS_UNDEFINEDSANITIZER:STRING=-fsanitize=undefined + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Path to include directory for cmocka_platform.h +CMOCKA_PLATFORM_INCLUDE:PATH= + +//Path to the coverage program that CTest uses for performing coverage +// inspection +COVERAGE_COMMAND:FILEPATH=/usr/bin/gcov + +//Extra command line flags to pass to the coverage tool +COVERAGE_EXTRA_FLAGS:STRING=-l + +//Enable to build Debian packages +CPACK_BINARY_DEB:BOOL=OFF + +//Enable to build FreeBSD packages +CPACK_BINARY_FREEBSD:BOOL=OFF + +//Enable to build IFW packages +CPACK_BINARY_IFW:BOOL=OFF + +//Enable to build NSIS packages +CPACK_BINARY_NSIS:BOOL=OFF + +//Enable to build RPM packages +CPACK_BINARY_RPM:BOOL=OFF + +//Enable to build STGZ packages +CPACK_BINARY_STGZ:BOOL=ON + +//Enable to build TBZ2 packages +CPACK_BINARY_TBZ2:BOOL=OFF + +//Enable to build TGZ packages +CPACK_BINARY_TGZ:BOOL=ON + +//Enable to build TXZ packages +CPACK_BINARY_TXZ:BOOL=OFF + +//Enable to build TZ packages +CPACK_BINARY_TZ:BOOL=ON + +//How many times to retry timed-out CTest submissions. +CTEST_SUBMIT_RETRY_COUNT:STRING=3 + +//How long to wait between timed-out CTest submissions. +CTEST_SUBMIT_RETRY_DELAY:STRING=5 + +//Path to a program. +CVSCOMMAND:FILEPATH=CVSCOMMAND-NOTFOUND + +//Options passed to the cvs update command. +CVS_UPDATE_OPTIONS:STRING=-d -A -P + +//Maximum time allowed before CTest will kill the test. +DART_TESTING_TIMEOUT:STRING=1500 + +//Dot tool for use with Doxygen +DOXYGEN_DOT_EXECUTABLE:FILEPATH=DOXYGEN_DOT_EXECUTABLE-NOTFOUND + +//Doxygen documentation generation tool (http://www.doxygen.org) +DOXYGEN_EXECUTABLE:FILEPATH=/usr/bin/doxygen + +//Directory under which to collect all populated content +FETCHCONTENT_BASE_DIR:PATH=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps + +//Disables all attempts to download or update content and assumes +// source dirs already exist +FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF + +//Enables QUIET option for all content population +FETCHCONTENT_QUIET:BOOL=ON + +//When not empty, overrides where to find pre-populated content +// for cmocka +FETCHCONTENT_SOURCE_DIR_CMOCKA:PATH= + +//Enables UPDATE_DISCONNECTED behavior for all content population +FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of cmocka +FETCHCONTENT_UPDATES_DISCONNECTED_CMOCKA:BOOL=OFF + +//Path to a program. +GITCOMMAND:FILEPATH=/usr/bin/git + +//Path to a program. +HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND + +//Command to build the project +MAKECOMMAND:STRING=/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}" + +//Path to the memory checking command, used for memory error detection. +MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND + +//File that contains suppressions for the memory checker +MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH= + +//Path to a program. +P4COMMAND:FILEPATH=P4COMMAND-NOTFOUND + +//Build with picky developer flags +PICKY_DEVELOPER:BOOL=OFF + +//Path to a library. +RT_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/librt.so + +//Name of the computer/site where compile is being run +SITE:STRING=LPPS0065 + +//Path to the SLURM sbatch executable +SLURM_SBATCH_COMMAND:FILEPATH=SLURM_SBATCH_COMMAND-NOTFOUND + +//Path to the SLURM srun executable +SLURM_SRUN_COMMAND:FILEPATH=SLURM_SRUN_COMMAND-NOTFOUND + +//Path to a program. +SVNCOMMAND:FILEPATH=SVNCOMMAND-NOTFOUND + +//Build with unit testing +UNIT_TESTING:BOOL=OFF + +//Install a cmockery header +WITH_CMOCKERY_SUPPORT:BOOL=OFF + +//Build examples +WITH_EXAMPLES:BOOL=OFF + +//Build with a static library +WITH_STATIC_LIB:BOOL=ON + +//Value Computed by CMake +cmocka-header_BINARY_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include + +//Value Computed by CMake +cmocka-header_SOURCE_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include + +//Value Computed by CMake +cmocka-library_BINARY_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src + +//Value Computed by CMake +cmocka-library_SOURCE_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src + +//Value Computed by CMake +cmocka_BINARY_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build + +//The directory containing a CMake configuration file for cmocka. +cmocka_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/cmocka + +//Value Computed by CMake +cmocka_SOURCE_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src + +//Value Computed by CMake +unit_tests_BINARY_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build + +//Value Computed by CMake +unit_tests_SOURCE_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: BZRCOMMAND +BZRCOMMAND-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/cseguret/Projects/app-ethereum/tests/unit/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=16 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//ADVANCED property for variable: CMAKE_CTEST_COMMAND +CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1 +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/cseguret/Projects/app-ethereum/tests/unit +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=5 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.16 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//CHECK_TYPE_SIZE: sizeof(unsigned short) +CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=2 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//cmocka link libraries +CMOCKA_LINK_LIBRARIES:INTERNAL= +//ADVANCED property for variable: CMOCKA_PLATFORM_INCLUDE +CMOCKA_PLATFORM_INCLUDE-ADVANCED:INTERNAL=1 +//cmocka shared library +CMOCKA_SHARED_LIBRARY:INTERNAL=cmocka +//cmocka static library +CMOCKA_STATIC_LIBRARY:INTERNAL=cmocka-static +//ADVANCED property for variable: COVERAGE_COMMAND +COVERAGE_COMMAND-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: COVERAGE_EXTRA_FLAGS +COVERAGE_EXTRA_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_DEB +CPACK_BINARY_DEB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_FREEBSD +CPACK_BINARY_FREEBSD-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_IFW +CPACK_BINARY_IFW-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_NSIS +CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_RPM +CPACK_BINARY_RPM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_STGZ +CPACK_BINARY_STGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TBZ2 +CPACK_BINARY_TBZ2-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TGZ +CPACK_BINARY_TGZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TXZ +CPACK_BINARY_TXZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_TZ +CPACK_BINARY_TZ-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CTEST_SUBMIT_RETRY_COUNT +CTEST_SUBMIT_RETRY_COUNT-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CTEST_SUBMIT_RETRY_DELAY +CTEST_SUBMIT_RETRY_DELAY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CVSCOMMAND +CVSCOMMAND-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CVS_UPDATE_OPTIONS +CVS_UPDATE_OPTIONS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: DART_TESTING_TIMEOUT +DART_TESTING_TIMEOUT-ADVANCED:INTERNAL=1 +//Default C Compiler Flags +DEFAULT_C_COMPILE_FLAGS:INTERNAL=-std=gnu99;-Wpedantic;-Wall;-Wshadow;-Wmissing-prototypes;-Wcast-align;-Werror=address;-Wstrict-prototypes;-Werror=strict-prototypes;-Wwrite-strings;-Werror=write-strings;-Werror-implicit-function-declaration;-Wpointer-arith;-Werror=pointer-arith;-Wdeclaration-after-statement;-Werror=declaration-after-statement;-Wreturn-type;-Werror=return-type;-Wuninitialized;-Werror=uninitialized;-Wimplicit-fallthrough;-Werror=strict-overflow;-Wstrict-overflow=2;-Wno-format-zero-length;-Wmissing-field-initializers;-Wformat;-Wformat-security;-Werror=format-security;-fno-common;-fstack-protector-strong;-fstack-clash-protection +//Default C Linker Flags +DEFAULT_LINK_FLAGS:INTERNAL= +//ADVANCED property for variable: DOXYGEN_DOT_EXECUTABLE +DOXYGEN_DOT_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: DOXYGEN_EXECUTABLE +DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1 +//Details about finding Doxygen +FIND_PACKAGE_MESSAGE_DETAILS_Doxygen:INTERNAL=[/usr/bin/doxygen][cfound components: doxygen missing components: dot][v1.8.17()] +//ADVANCED property for variable: GITCOMMAND +GITCOMMAND-ADVANCED:INTERNAL=1 +//Have include assert.h +HAVE_ASSERT_H:INTERNAL=1 +//Have function calloc +HAVE_CALLOC:INTERNAL=1 +//Have function clock_gettime +HAVE_CLOCK_GETTIME:INTERNAL=1 +//Test HAVE_CLOCK_REALTIME +HAVE_CLOCK_REALTIME:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=TRUE +//Have function exit +HAVE_EXIT:INTERNAL=1 +//Have function fprintf +HAVE_FPRINTF:INTERNAL=1 +//Have function free +HAVE_FREE:INTERNAL=1 +//Test HAVE_GCC_THREAD_LOCAL_STORAGE +HAVE_GCC_THREAD_LOCAL_STORAGE:INTERNAL=1 +//Have include inttypes.h +HAVE_INTTYPES_H:INTERNAL=1 +//Have include io.h +HAVE_IO_H:INTERNAL= +//Have function longjmp +HAVE_LONGJMP:INTERNAL=1 +//Have function malloc +HAVE_MALLOC:INTERNAL=1 +//Have include malloc.h +HAVE_MALLOC_H:INTERNAL=1 +//Have function memcpy +HAVE_MEMCPY:INTERNAL=1 +//Have include memory.h +HAVE_MEMORY_H:INTERNAL=1 +//Have function memset +HAVE_MEMSET:INTERNAL=1 +//Have function printf +HAVE_PRINTF:INTERNAL=1 +//Have function setjmp +HAVE_SETJMP:INTERNAL=1 +//Have include setjmp.h +HAVE_SETJMP_H:INTERNAL=1 +//Have function siglongjmp +HAVE_SIGLONGJMP:INTERNAL=1 +//Have function signal +HAVE_SIGNAL:INTERNAL=1 +//Have include signal.h +HAVE_SIGNAL_H:INTERNAL=1 +//Have function sprintf +HAVE_SNPRINTF:INTERNAL=1 +//Have include stdarg.h +HAVE_STDARG_H:INTERNAL=1 +//Have include stddef.h +HAVE_STDDEF_H:INTERNAL=1 +//Have include stdint.h +HAVE_STDINT_H:INTERNAL=1 +//Have include stdio.h +HAVE_STDIO_H:INTERNAL=1 +//Have include stdlib.h +HAVE_STDLIB_H:INTERNAL=1 +//Have function strcmp +HAVE_STRCMP:INTERNAL=1 +//Have include strings.h +HAVE_STRINGS_H:INTERNAL=1 +//Have include string.h +HAVE_STRING_H:INTERNAL=1 +//Have function strsignal +HAVE_STRSIGNAL:INTERNAL=1 +//Test HAVE_STRUCT_TIMESPEC +HAVE_STRUCT_TIMESPEC:INTERNAL=1 +//Have include sys/stat.h +HAVE_SYS_STAT_H:INTERNAL=1 +//Have include sys/types.h +HAVE_SYS_TYPES_H:INTERNAL=1 +//Have include time.h +HAVE_TIME_H:INTERNAL=1 +//Have include unistd.h +HAVE_UNISTD_H:INTERNAL=1 +//Have function vsnprintf +HAVE_VSNPRINTF:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_WORDS_BIGENDIAN:INTERNAL=TRUE +//ADVANCED property for variable: HGCOMMAND +HGCOMMAND-ADVANCED:INTERNAL=1 +INCLUDE_INSTALL_DIR:INTERNAL=include +LIB_INSTALL_DIR:INTERNAL=lib +//ADVANCED property for variable: MAKECOMMAND +MAKECOMMAND-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: MEMORYCHECK_COMMAND +MEMORYCHECK_COMMAND-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: MEMORYCHECK_SUPPRESSIONS_FILE +MEMORYCHECK_SUPPRESSIONS_FILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: P4COMMAND +P4COMMAND-ADVANCED:INTERNAL=1 +//Test REQUIRED_FLAGS_WERROR +REQUIRED_FLAGS_WERROR:INTERNAL=1 +//Test REQUIRED_FLAGS_WFORMAT +REQUIRED_FLAGS_WFORMAT:INTERNAL=1 +//ADVANCED property for variable: SITE +SITE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: SLURM_SBATCH_COMMAND +SLURM_SBATCH_COMMAND-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: SLURM_SRUN_COMMAND +SLURM_SRUN_COMMAND-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: SVNCOMMAND +SVNCOMMAND-ADVANCED:INTERNAL=1 +//Test WITH_FNO_COMMON_FLAG +WITH_FNO_COMMON_FLAG:INTERNAL=1 +//Test WITH_STACK_CLASH_PROTECTION +WITH_STACK_CLASH_PROTECTION:INTERNAL=1 +//Test WITH_STACK_PROTECTOR_STRONG +WITH_STACK_PROTECTOR_STRONG:INTERNAL=1 +//Test WITH_STD_GNU99_FLAG +WITH_STD_GNU99_FLAG:INTERNAL=1 +//Test WITH_VISIBILITY_HIDDEN +WITH_VISIBILITY_HIDDEN:INTERNAL=1 +//Test WITH_WALL_FLAG +WITH_WALL_FLAG:INTERNAL=1 +//Test WITH_WCAST_ALIGN_FLAG +WITH_WCAST_ALIGN_FLAG:INTERNAL=1 +//Test WITH_WDECLARATION_AFTER_STATEMENT_FLAG +WITH_WDECLARATION_AFTER_STATEMENT_FLAG:INTERNAL=1 +//Test WITH_WERROR_ADDRESS_FLAG +WITH_WERROR_ADDRESS_FLAG:INTERNAL=1 +//Test WITH_WERROR_DECLARATION_AFTER_STATEMENT_FLAG +WITH_WERROR_DECLARATION_AFTER_STATEMENT_FLAG:INTERNAL=1 +//Test WITH_WERROR_FORMAT_SECURITY_FLAG +WITH_WERROR_FORMAT_SECURITY_FLAG:INTERNAL=1 +//Test WITH_WERROR_IMPLICIT_FUNCTION_DECLARATION_FLAG +WITH_WERROR_IMPLICIT_FUNCTION_DECLARATION_FLAG:INTERNAL=1 +//Test WITH_WERROR_POINTER_ARITH_FLAG +WITH_WERROR_POINTER_ARITH_FLAG:INTERNAL=1 +//Test WITH_WERROR_RETURN_TYPE_FLAG +WITH_WERROR_RETURN_TYPE_FLAG:INTERNAL=1 +//Test WITH_WERROR_STRICT_OVERFLOW_FLAG +WITH_WERROR_STRICT_OVERFLOW_FLAG:INTERNAL=1 +//Test WITH_WERROR_STRICT_PROTOTYPES_FLAG +WITH_WERROR_STRICT_PROTOTYPES_FLAG:INTERNAL=1 +//Test WITH_WERROR_UNINITIALIZED_FLAG +WITH_WERROR_UNINITIALIZED_FLAG:INTERNAL=1 +//Test WITH_WERROR_WRITE_STRINGS_FLAG +WITH_WERROR_WRITE_STRINGS_FLAG:INTERNAL=1 +//Test WITH_WFORMAT_SECURITY_FLAG +WITH_WFORMAT_SECURITY_FLAG:INTERNAL=1 +//Test WITH_WIMPLICIT_FALLTHROUGH_FLAG +WITH_WIMPLICIT_FALLTHROUGH_FLAG:INTERNAL=1 +//Test WITH_WMISSING_FIELD_INITIALIZERS_FLAG +WITH_WMISSING_FIELD_INITIALIZERS_FLAG:INTERNAL=1 +//Test WITH_WMISSING_PROTOTYPES_FLAG +WITH_WMISSING_PROTOTYPES_FLAG:INTERNAL=1 +//Test WITH_WNO_FORMAT_ZERO_LENGTH_FLAG +WITH_WNO_FORMAT_ZERO_LENGTH_FLAG:INTERNAL=1 +//Test WITH_WPEDANTIC_FLAG +WITH_WPEDANTIC_FLAG:INTERNAL=1 +//Test WITH_WPOINTER_ARITH_FLAG +WITH_WPOINTER_ARITH_FLAG:INTERNAL=1 +//Test WITH_WRETURN_TYPE_FLAG +WITH_WRETURN_TYPE_FLAG:INTERNAL=1 +//Test WITH_WSHADOW_FLAG +WITH_WSHADOW_FLAG:INTERNAL=1 +//Test WITH_WSTRICT_OVERFLOW_2_FLAG +WITH_WSTRICT_OVERFLOW_2_FLAG:INTERNAL=1 +//Test WITH_WSTRICT_PROTOTYPES_FLAG +WITH_WSTRICT_PROTOTYPES_FLAG:INTERNAL=1 +//Test WITH_WUNINITIALIZED_FLAG +WITH_WUNINITIALIZED_FLAG:INTERNAL=1 +//Test WITH_WWRITE_STRINGS_FLAG +WITH_WWRITE_STRINGS_FLAG:INTERNAL=1 +//Result of TEST_BIG_ENDIAN +WORDS_BIGENDIAN:INTERNAL=0 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local + diff --git a/tests/unit/build/CMakeDoxyfile.in b/tests/unit/build/CMakeDoxyfile.in new file mode 100644 index 0000000..848a3c8 --- /dev/null +++ b/tests/unit/build/CMakeDoxyfile.in @@ -0,0 +1,280 @@ +# +# DO NOT EDIT! THIS FILE WAS GENERATED BY CMAKE! +# + +DOXYFILE_ENCODING = @DOXYGEN_DOXYFILE_ENCODING@ +PROJECT_NAME = @DOXYGEN_PROJECT_NAME@ +PROJECT_NUMBER = @DOXYGEN_PROJECT_NUMBER@ +PROJECT_BRIEF = @DOXYGEN_PROJECT_BRIEF@ +PROJECT_LOGO = @DOXYGEN_PROJECT_LOGO@ +OUTPUT_DIRECTORY = @DOXYGEN_OUTPUT_DIRECTORY@ +CREATE_SUBDIRS = @DOXYGEN_CREATE_SUBDIRS@ +ALLOW_UNICODE_NAMES = @DOXYGEN_ALLOW_UNICODE_NAMES@ +OUTPUT_LANGUAGE = @DOXYGEN_OUTPUT_LANGUAGE@ +OUTPUT_TEXT_DIRECTION = @DOXYGEN_OUTPUT_TEXT_DIRECTION@ +BRIEF_MEMBER_DESC = @DOXYGEN_BRIEF_MEMBER_DESC@ +REPEAT_BRIEF = @DOXYGEN_REPEAT_BRIEF@ +ABBREVIATE_BRIEF = @DOXYGEN_ABBREVIATE_BRIEF@ +ALWAYS_DETAILED_SEC = @DOXYGEN_ALWAYS_DETAILED_SEC@ +INLINE_INHERITED_MEMB = @DOXYGEN_INLINE_INHERITED_MEMB@ +FULL_PATH_NAMES = @DOXYGEN_FULL_PATH_NAMES@ +STRIP_FROM_PATH = @DOXYGEN_STRIP_FROM_PATH@ +STRIP_FROM_INC_PATH = @DOXYGEN_STRIP_FROM_INC_PATH@ +SHORT_NAMES = @DOXYGEN_SHORT_NAMES@ +JAVADOC_AUTOBRIEF = @DOXYGEN_JAVADOC_AUTOBRIEF@ +JAVADOC_BANNER = @DOXYGEN_JAVADOC_BANNER@ +QT_AUTOBRIEF = @DOXYGEN_QT_AUTOBRIEF@ +MULTILINE_CPP_IS_BRIEF = @DOXYGEN_MULTILINE_CPP_IS_BRIEF@ +INHERIT_DOCS = @DOXYGEN_INHERIT_DOCS@ +SEPARATE_MEMBER_PAGES = @DOXYGEN_SEPARATE_MEMBER_PAGES@ +TAB_SIZE = @DOXYGEN_TAB_SIZE@ +ALIASES = @DOXYGEN_ALIASES@ +TCL_SUBST = @DOXYGEN_TCL_SUBST@ +OPTIMIZE_OUTPUT_FOR_C = @DOXYGEN_OPTIMIZE_OUTPUT_FOR_C@ +OPTIMIZE_OUTPUT_JAVA = @DOXYGEN_OPTIMIZE_OUTPUT_JAVA@ +OPTIMIZE_FOR_FORTRAN = @DOXYGEN_OPTIMIZE_FOR_FORTRAN@ +OPTIMIZE_OUTPUT_VHDL = @DOXYGEN_OPTIMIZE_OUTPUT_VHDL@ +OPTIMIZE_OUTPUT_SLICE = @DOXYGEN_OPTIMIZE_OUTPUT_SLICE@ +EXTENSION_MAPPING = @DOXYGEN_EXTENSION_MAPPING@ +MARKDOWN_SUPPORT = @DOXYGEN_MARKDOWN_SUPPORT@ +TOC_INCLUDE_HEADINGS = @DOXYGEN_TOC_INCLUDE_HEADINGS@ +AUTOLINK_SUPPORT = @DOXYGEN_AUTOLINK_SUPPORT@ +BUILTIN_STL_SUPPORT = @DOXYGEN_BUILTIN_STL_SUPPORT@ +CPP_CLI_SUPPORT = @DOXYGEN_CPP_CLI_SUPPORT@ +SIP_SUPPORT = @DOXYGEN_SIP_SUPPORT@ +IDL_PROPERTY_SUPPORT = @DOXYGEN_IDL_PROPERTY_SUPPORT@ +DISTRIBUTE_GROUP_DOC = @DOXYGEN_DISTRIBUTE_GROUP_DOC@ +GROUP_NESTED_COMPOUNDS = @DOXYGEN_GROUP_NESTED_COMPOUNDS@ +SUBGROUPING = @DOXYGEN_SUBGROUPING@ +INLINE_GROUPED_CLASSES = @DOXYGEN_INLINE_GROUPED_CLASSES@ +INLINE_SIMPLE_STRUCTS = @DOXYGEN_INLINE_SIMPLE_STRUCTS@ +TYPEDEF_HIDES_STRUCT = @DOXYGEN_TYPEDEF_HIDES_STRUCT@ +LOOKUP_CACHE_SIZE = @DOXYGEN_LOOKUP_CACHE_SIZE@ +EXTRACT_ALL = @DOXYGEN_EXTRACT_ALL@ +EXTRACT_PRIVATE = @DOXYGEN_EXTRACT_PRIVATE@ +EXTRACT_PRIV_VIRTUAL = @DOXYGEN_EXTRACT_PRIV_VIRTUAL@ +EXTRACT_PACKAGE = @DOXYGEN_EXTRACT_PACKAGE@ +EXTRACT_STATIC = @DOXYGEN_EXTRACT_STATIC@ +EXTRACT_LOCAL_CLASSES = @DOXYGEN_EXTRACT_LOCAL_CLASSES@ +EXTRACT_LOCAL_METHODS = @DOXYGEN_EXTRACT_LOCAL_METHODS@ +EXTRACT_ANON_NSPACES = @DOXYGEN_EXTRACT_ANON_NSPACES@ +HIDE_UNDOC_MEMBERS = @DOXYGEN_HIDE_UNDOC_MEMBERS@ +HIDE_UNDOC_CLASSES = @DOXYGEN_HIDE_UNDOC_CLASSES@ +HIDE_FRIEND_COMPOUNDS = @DOXYGEN_HIDE_FRIEND_COMPOUNDS@ +HIDE_IN_BODY_DOCS = @DOXYGEN_HIDE_IN_BODY_DOCS@ +INTERNAL_DOCS = @DOXYGEN_INTERNAL_DOCS@ +CASE_SENSE_NAMES = @DOXYGEN_CASE_SENSE_NAMES@ +HIDE_SCOPE_NAMES = @DOXYGEN_HIDE_SCOPE_NAMES@ +HIDE_COMPOUND_REFERENCE= @DOXYGEN_HIDE_COMPOUND_REFERENCE@ +SHOW_INCLUDE_FILES = @DOXYGEN_SHOW_INCLUDE_FILES@ +SHOW_GROUPED_MEMB_INC = @DOXYGEN_SHOW_GROUPED_MEMB_INC@ +FORCE_LOCAL_INCLUDES = @DOXYGEN_FORCE_LOCAL_INCLUDES@ +INLINE_INFO = @DOXYGEN_INLINE_INFO@ +SORT_MEMBER_DOCS = @DOXYGEN_SORT_MEMBER_DOCS@ +SORT_BRIEF_DOCS = @DOXYGEN_SORT_BRIEF_DOCS@ +SORT_MEMBERS_CTORS_1ST = @DOXYGEN_SORT_MEMBERS_CTORS_1ST@ +SORT_GROUP_NAMES = @DOXYGEN_SORT_GROUP_NAMES@ +SORT_BY_SCOPE_NAME = @DOXYGEN_SORT_BY_SCOPE_NAME@ +STRICT_PROTO_MATCHING = @DOXYGEN_STRICT_PROTO_MATCHING@ +GENERATE_TODOLIST = @DOXYGEN_GENERATE_TODOLIST@ +GENERATE_TESTLIST = @DOXYGEN_GENERATE_TESTLIST@ +GENERATE_BUGLIST = @DOXYGEN_GENERATE_BUGLIST@ +GENERATE_DEPRECATEDLIST= @DOXYGEN_GENERATE_DEPRECATEDLIST@ +ENABLED_SECTIONS = @DOXYGEN_ENABLED_SECTIONS@ +MAX_INITIALIZER_LINES = @DOXYGEN_MAX_INITIALIZER_LINES@ +SHOW_USED_FILES = @DOXYGEN_SHOW_USED_FILES@ +SHOW_FILES = @DOXYGEN_SHOW_FILES@ +SHOW_NAMESPACES = @DOXYGEN_SHOW_NAMESPACES@ +FILE_VERSION_FILTER = @DOXYGEN_FILE_VERSION_FILTER@ +LAYOUT_FILE = @DOXYGEN_LAYOUT_FILE@ +CITE_BIB_FILES = @DOXYGEN_CITE_BIB_FILES@ +QUIET = @DOXYGEN_QUIET@ +WARNINGS = @DOXYGEN_WARNINGS@ +WARN_IF_UNDOCUMENTED = @DOXYGEN_WARN_IF_UNDOCUMENTED@ +WARN_IF_DOC_ERROR = @DOXYGEN_WARN_IF_DOC_ERROR@ +WARN_NO_PARAMDOC = @DOXYGEN_WARN_NO_PARAMDOC@ +WARN_AS_ERROR = @DOXYGEN_WARN_AS_ERROR@ +WARN_FORMAT = @DOXYGEN_WARN_FORMAT@ +WARN_LOGFILE = @DOXYGEN_WARN_LOGFILE@ +INPUT = @DOXYGEN_INPUT@ +INPUT_ENCODING = @DOXYGEN_INPUT_ENCODING@ +FILE_PATTERNS = @DOXYGEN_FILE_PATTERNS@ +RECURSIVE = @DOXYGEN_RECURSIVE@ +EXCLUDE = @DOXYGEN_EXCLUDE@ +EXCLUDE_SYMLINKS = @DOXYGEN_EXCLUDE_SYMLINKS@ +EXCLUDE_PATTERNS = @DOXYGEN_EXCLUDE_PATTERNS@ +EXCLUDE_SYMBOLS = @DOXYGEN_EXCLUDE_SYMBOLS@ +EXAMPLE_PATH = @DOXYGEN_EXAMPLE_PATH@ +EXAMPLE_PATTERNS = @DOXYGEN_EXAMPLE_PATTERNS@ +EXAMPLE_RECURSIVE = @DOXYGEN_EXAMPLE_RECURSIVE@ +IMAGE_PATH = @DOXYGEN_IMAGE_PATH@ +INPUT_FILTER = @DOXYGEN_INPUT_FILTER@ +FILTER_PATTERNS = @DOXYGEN_FILTER_PATTERNS@ +FILTER_SOURCE_FILES = @DOXYGEN_FILTER_SOURCE_FILES@ +FILTER_SOURCE_PATTERNS = @DOXYGEN_FILTER_SOURCE_PATTERNS@ +USE_MDFILE_AS_MAINPAGE = @DOXYGEN_USE_MDFILE_AS_MAINPAGE@ +SOURCE_BROWSER = @DOXYGEN_SOURCE_BROWSER@ +INLINE_SOURCES = @DOXYGEN_INLINE_SOURCES@ +STRIP_CODE_COMMENTS = @DOXYGEN_STRIP_CODE_COMMENTS@ +REFERENCED_BY_RELATION = @DOXYGEN_REFERENCED_BY_RELATION@ +REFERENCES_RELATION = @DOXYGEN_REFERENCES_RELATION@ +REFERENCES_LINK_SOURCE = @DOXYGEN_REFERENCES_LINK_SOURCE@ +SOURCE_TOOLTIPS = @DOXYGEN_SOURCE_TOOLTIPS@ +USE_HTAGS = @DOXYGEN_USE_HTAGS@ +VERBATIM_HEADERS = @DOXYGEN_VERBATIM_HEADERS@ +CLANG_ASSISTED_PARSING = @DOXYGEN_CLANG_ASSISTED_PARSING@ +CLANG_OPTIONS = @DOXYGEN_CLANG_OPTIONS@ +CLANG_DATABASE_PATH = @DOXYGEN_CLANG_DATABASE_PATH@ +ALPHABETICAL_INDEX = @DOXYGEN_ALPHABETICAL_INDEX@ +COLS_IN_ALPHA_INDEX = @DOXYGEN_COLS_IN_ALPHA_INDEX@ +IGNORE_PREFIX = @DOXYGEN_IGNORE_PREFIX@ +GENERATE_HTML = @DOXYGEN_GENERATE_HTML@ +HTML_OUTPUT = @DOXYGEN_HTML_OUTPUT@ +HTML_FILE_EXTENSION = @DOXYGEN_HTML_FILE_EXTENSION@ +HTML_HEADER = @DOXYGEN_HTML_HEADER@ +HTML_FOOTER = @DOXYGEN_HTML_FOOTER@ +HTML_STYLESHEET = @DOXYGEN_HTML_STYLESHEET@ +HTML_EXTRA_STYLESHEET = @DOXYGEN_HTML_EXTRA_STYLESHEET@ +HTML_EXTRA_FILES = @DOXYGEN_HTML_EXTRA_FILES@ +HTML_COLORSTYLE_HUE = @DOXYGEN_HTML_COLORSTYLE_HUE@ +HTML_COLORSTYLE_SAT = @DOXYGEN_HTML_COLORSTYLE_SAT@ +HTML_COLORSTYLE_GAMMA = @DOXYGEN_HTML_COLORSTYLE_GAMMA@ +HTML_TIMESTAMP = @DOXYGEN_HTML_TIMESTAMP@ +HTML_DYNAMIC_MENUS = @DOXYGEN_HTML_DYNAMIC_MENUS@ +HTML_DYNAMIC_SECTIONS = @DOXYGEN_HTML_DYNAMIC_SECTIONS@ +HTML_INDEX_NUM_ENTRIES = @DOXYGEN_HTML_INDEX_NUM_ENTRIES@ +GENERATE_DOCSET = @DOXYGEN_GENERATE_DOCSET@ +DOCSET_FEEDNAME = @DOXYGEN_DOCSET_FEEDNAME@ +DOCSET_BUNDLE_ID = @DOXYGEN_DOCSET_BUNDLE_ID@ +DOCSET_PUBLISHER_ID = @DOXYGEN_DOCSET_PUBLISHER_ID@ +DOCSET_PUBLISHER_NAME = @DOXYGEN_DOCSET_PUBLISHER_NAME@ +GENERATE_HTMLHELP = @DOXYGEN_GENERATE_HTMLHELP@ +CHM_FILE = @DOXYGEN_CHM_FILE@ +HHC_LOCATION = @DOXYGEN_HHC_LOCATION@ +GENERATE_CHI = @DOXYGEN_GENERATE_CHI@ +CHM_INDEX_ENCODING = @DOXYGEN_CHM_INDEX_ENCODING@ +BINARY_TOC = @DOXYGEN_BINARY_TOC@ +TOC_EXPAND = @DOXYGEN_TOC_EXPAND@ +GENERATE_QHP = @DOXYGEN_GENERATE_QHP@ +QCH_FILE = @DOXYGEN_QCH_FILE@ +QHP_NAMESPACE = @DOXYGEN_QHP_NAMESPACE@ +QHP_VIRTUAL_FOLDER = @DOXYGEN_QHP_VIRTUAL_FOLDER@ +QHP_CUST_FILTER_NAME = @DOXYGEN_QHP_CUST_FILTER_NAME@ +QHP_CUST_FILTER_ATTRS = @DOXYGEN_QHP_CUST_FILTER_ATTRS@ +QHP_SECT_FILTER_ATTRS = @DOXYGEN_QHP_SECT_FILTER_ATTRS@ +QHG_LOCATION = @DOXYGEN_QHG_LOCATION@ +GENERATE_ECLIPSEHELP = @DOXYGEN_GENERATE_ECLIPSEHELP@ +ECLIPSE_DOC_ID = @DOXYGEN_ECLIPSE_DOC_ID@ +DISABLE_INDEX = @DOXYGEN_DISABLE_INDEX@ +GENERATE_TREEVIEW = @DOXYGEN_GENERATE_TREEVIEW@ +ENUM_VALUES_PER_LINE = @DOXYGEN_ENUM_VALUES_PER_LINE@ +TREEVIEW_WIDTH = @DOXYGEN_TREEVIEW_WIDTH@ +EXT_LINKS_IN_WINDOW = @DOXYGEN_EXT_LINKS_IN_WINDOW@ +FORMULA_FONTSIZE = @DOXYGEN_FORMULA_FONTSIZE@ +FORMULA_TRANSPARENT = @DOXYGEN_FORMULA_TRANSPARENT@ +FORMULA_MACROFILE = @DOXYGEN_FORMULA_MACROFILE@ +USE_MATHJAX = @DOXYGEN_USE_MATHJAX@ +MATHJAX_FORMAT = @DOXYGEN_MATHJAX_FORMAT@ +MATHJAX_RELPATH = @DOXYGEN_MATHJAX_RELPATH@ +MATHJAX_EXTENSIONS = @DOXYGEN_MATHJAX_EXTENSIONS@ +MATHJAX_CODEFILE = @DOXYGEN_MATHJAX_CODEFILE@ +SEARCHENGINE = @DOXYGEN_SEARCHENGINE@ +SERVER_BASED_SEARCH = @DOXYGEN_SERVER_BASED_SEARCH@ +EXTERNAL_SEARCH = @DOXYGEN_EXTERNAL_SEARCH@ +SEARCHENGINE_URL = @DOXYGEN_SEARCHENGINE_URL@ +SEARCHDATA_FILE = @DOXYGEN_SEARCHDATA_FILE@ +EXTERNAL_SEARCH_ID = @DOXYGEN_EXTERNAL_SEARCH_ID@ +EXTRA_SEARCH_MAPPINGS = @DOXYGEN_EXTRA_SEARCH_MAPPINGS@ +GENERATE_LATEX = @DOXYGEN_GENERATE_LATEX@ +LATEX_OUTPUT = @DOXYGEN_LATEX_OUTPUT@ +LATEX_CMD_NAME = @DOXYGEN_LATEX_CMD_NAME@ +MAKEINDEX_CMD_NAME = @DOXYGEN_MAKEINDEX_CMD_NAME@ +LATEX_MAKEINDEX_CMD = @DOXYGEN_LATEX_MAKEINDEX_CMD@ +COMPACT_LATEX = @DOXYGEN_COMPACT_LATEX@ +PAPER_TYPE = @DOXYGEN_PAPER_TYPE@ +EXTRA_PACKAGES = @DOXYGEN_EXTRA_PACKAGES@ +LATEX_HEADER = @DOXYGEN_LATEX_HEADER@ +LATEX_FOOTER = @DOXYGEN_LATEX_FOOTER@ +LATEX_EXTRA_STYLESHEET = @DOXYGEN_LATEX_EXTRA_STYLESHEET@ +LATEX_EXTRA_FILES = @DOXYGEN_LATEX_EXTRA_FILES@ +PDF_HYPERLINKS = @DOXYGEN_PDF_HYPERLINKS@ +USE_PDFLATEX = @DOXYGEN_USE_PDFLATEX@ +LATEX_BATCHMODE = @DOXYGEN_LATEX_BATCHMODE@ +LATEX_HIDE_INDICES = @DOXYGEN_LATEX_HIDE_INDICES@ +LATEX_SOURCE_CODE = @DOXYGEN_LATEX_SOURCE_CODE@ +LATEX_BIB_STYLE = @DOXYGEN_LATEX_BIB_STYLE@ +LATEX_TIMESTAMP = @DOXYGEN_LATEX_TIMESTAMP@ +LATEX_EMOJI_DIRECTORY = @DOXYGEN_LATEX_EMOJI_DIRECTORY@ +GENERATE_RTF = @DOXYGEN_GENERATE_RTF@ +RTF_OUTPUT = @DOXYGEN_RTF_OUTPUT@ +COMPACT_RTF = @DOXYGEN_COMPACT_RTF@ +RTF_HYPERLINKS = @DOXYGEN_RTF_HYPERLINKS@ +RTF_STYLESHEET_FILE = @DOXYGEN_RTF_STYLESHEET_FILE@ +RTF_EXTENSIONS_FILE = @DOXYGEN_RTF_EXTENSIONS_FILE@ +RTF_SOURCE_CODE = @DOXYGEN_RTF_SOURCE_CODE@ +GENERATE_MAN = @DOXYGEN_GENERATE_MAN@ +MAN_OUTPUT = @DOXYGEN_MAN_OUTPUT@ +MAN_EXTENSION = @DOXYGEN_MAN_EXTENSION@ +MAN_SUBDIR = @DOXYGEN_MAN_SUBDIR@ +MAN_LINKS = @DOXYGEN_MAN_LINKS@ +GENERATE_XML = @DOXYGEN_GENERATE_XML@ +XML_OUTPUT = @DOXYGEN_XML_OUTPUT@ +XML_PROGRAMLISTING = @DOXYGEN_XML_PROGRAMLISTING@ +XML_NS_MEMB_FILE_SCOPE = @DOXYGEN_XML_NS_MEMB_FILE_SCOPE@ +GENERATE_DOCBOOK = @DOXYGEN_GENERATE_DOCBOOK@ +DOCBOOK_OUTPUT = @DOXYGEN_DOCBOOK_OUTPUT@ +DOCBOOK_PROGRAMLISTING = @DOXYGEN_DOCBOOK_PROGRAMLISTING@ +GENERATE_AUTOGEN_DEF = @DOXYGEN_GENERATE_AUTOGEN_DEF@ +GENERATE_PERLMOD = @DOXYGEN_GENERATE_PERLMOD@ +PERLMOD_LATEX = @DOXYGEN_PERLMOD_LATEX@ +PERLMOD_PRETTY = @DOXYGEN_PERLMOD_PRETTY@ +PERLMOD_MAKEVAR_PREFIX = @DOXYGEN_PERLMOD_MAKEVAR_PREFIX@ +ENABLE_PREPROCESSING = @DOXYGEN_ENABLE_PREPROCESSING@ +MACRO_EXPANSION = @DOXYGEN_MACRO_EXPANSION@ +EXPAND_ONLY_PREDEF = @DOXYGEN_EXPAND_ONLY_PREDEF@ +SEARCH_INCLUDES = @DOXYGEN_SEARCH_INCLUDES@ +INCLUDE_PATH = @DOXYGEN_INCLUDE_PATH@ +INCLUDE_FILE_PATTERNS = @DOXYGEN_INCLUDE_FILE_PATTERNS@ +PREDEFINED = @DOXYGEN_PREDEFINED@ +EXPAND_AS_DEFINED = @DOXYGEN_EXPAND_AS_DEFINED@ +SKIP_FUNCTION_MACROS = @DOXYGEN_SKIP_FUNCTION_MACROS@ +TAGFILES = @DOXYGEN_TAGFILES@ +GENERATE_TAGFILE = @DOXYGEN_GENERATE_TAGFILE@ +ALLEXTERNALS = @DOXYGEN_ALLEXTERNALS@ +EXTERNAL_GROUPS = @DOXYGEN_EXTERNAL_GROUPS@ +EXTERNAL_PAGES = @DOXYGEN_EXTERNAL_PAGES@ +CLASS_DIAGRAMS = @DOXYGEN_CLASS_DIAGRAMS@ +DIA_PATH = @DOXYGEN_DIA_PATH@ +HIDE_UNDOC_RELATIONS = @DOXYGEN_HIDE_UNDOC_RELATIONS@ +HAVE_DOT = @DOXYGEN_HAVE_DOT@ +DOT_NUM_THREADS = @DOXYGEN_DOT_NUM_THREADS@ +DOT_FONTNAME = @DOXYGEN_DOT_FONTNAME@ +DOT_FONTSIZE = @DOXYGEN_DOT_FONTSIZE@ +DOT_FONTPATH = @DOXYGEN_DOT_FONTPATH@ +CLASS_GRAPH = @DOXYGEN_CLASS_GRAPH@ +COLLABORATION_GRAPH = @DOXYGEN_COLLABORATION_GRAPH@ +GROUP_GRAPHS = @DOXYGEN_GROUP_GRAPHS@ +UML_LOOK = @DOXYGEN_UML_LOOK@ +UML_LIMIT_NUM_FIELDS = @DOXYGEN_UML_LIMIT_NUM_FIELDS@ +TEMPLATE_RELATIONS = @DOXYGEN_TEMPLATE_RELATIONS@ +INCLUDE_GRAPH = @DOXYGEN_INCLUDE_GRAPH@ +INCLUDED_BY_GRAPH = @DOXYGEN_INCLUDED_BY_GRAPH@ +CALL_GRAPH = @DOXYGEN_CALL_GRAPH@ +CALLER_GRAPH = @DOXYGEN_CALLER_GRAPH@ +GRAPHICAL_HIERARCHY = @DOXYGEN_GRAPHICAL_HIERARCHY@ +DIRECTORY_GRAPH = @DOXYGEN_DIRECTORY_GRAPH@ +DOT_IMAGE_FORMAT = @DOXYGEN_DOT_IMAGE_FORMAT@ +INTERACTIVE_SVG = @DOXYGEN_INTERACTIVE_SVG@ +DOT_PATH = @DOXYGEN_DOT_PATH@ +DOTFILE_DIRS = @DOXYGEN_DOTFILE_DIRS@ +MSCFILE_DIRS = @DOXYGEN_MSCFILE_DIRS@ +DIAFILE_DIRS = @DOXYGEN_DIAFILE_DIRS@ +PLANTUML_JAR_PATH = @DOXYGEN_PLANTUML_JAR_PATH@ +PLANTUML_CFG_FILE = @DOXYGEN_PLANTUML_CFG_FILE@ +PLANTUML_INCLUDE_PATH = @DOXYGEN_PLANTUML_INCLUDE_PATH@ +DOT_GRAPH_MAX_NODES = @DOXYGEN_DOT_GRAPH_MAX_NODES@ +MAX_DOT_GRAPH_DEPTH = @DOXYGEN_MAX_DOT_GRAPH_DEPTH@ +DOT_TRANSPARENT = @DOXYGEN_DOT_TRANSPARENT@ +DOT_MULTI_TARGETS = @DOXYGEN_DOT_MULTI_TARGETS@ +GENERATE_LEGEND = @DOXYGEN_GENERATE_LEGEND@ +DOT_CLEANUP = @DOXYGEN_DOT_CLEANUP@ diff --git a/tests/unit/build/CMakeDoxygenDefaults.cmake b/tests/unit/build/CMakeDoxygenDefaults.cmake new file mode 100644 index 0000000..db28798 --- /dev/null +++ b/tests/unit/build/CMakeDoxygenDefaults.cmake @@ -0,0 +1,672 @@ +# +# DO NOT EDIT! THIS FILE WAS GENERATED BY CMAKE! +# + +if(NOT DEFINED DOXYGEN_DOXYFILE_ENCODING) + set(DOXYGEN_DOXYFILE_ENCODING UTF-8) +endif() +if(NOT DEFINED DOXYGEN_PROJECT_NAME) + set(DOXYGEN_PROJECT_NAME "My Project") +endif() +if(NOT DEFINED DOXYGEN_CREATE_SUBDIRS) + set(DOXYGEN_CREATE_SUBDIRS NO) +endif() +if(NOT DEFINED DOXYGEN_ALLOW_UNICODE_NAMES) + set(DOXYGEN_ALLOW_UNICODE_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_OUTPUT_LANGUAGE) + set(DOXYGEN_OUTPUT_LANGUAGE English) +endif() +if(NOT DEFINED DOXYGEN_OUTPUT_TEXT_DIRECTION) + set(DOXYGEN_OUTPUT_TEXT_DIRECTION None) +endif() +if(NOT DEFINED DOXYGEN_BRIEF_MEMBER_DESC) + set(DOXYGEN_BRIEF_MEMBER_DESC YES) +endif() +if(NOT DEFINED DOXYGEN_REPEAT_BRIEF) + set(DOXYGEN_REPEAT_BRIEF YES) +endif() +if(NOT DEFINED DOXYGEN_ABBREVIATE_BRIEF) + set(DOXYGEN_ABBREVIATE_BRIEF "The $name class" + "The $name widget" + "The $name file" + is + provides + specifies + contains + represents + a + an + the) +endif() +if(NOT DEFINED DOXYGEN_ALWAYS_DETAILED_SEC) + set(DOXYGEN_ALWAYS_DETAILED_SEC NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_INHERITED_MEMB) + set(DOXYGEN_INLINE_INHERITED_MEMB NO) +endif() +if(NOT DEFINED DOXYGEN_FULL_PATH_NAMES) + set(DOXYGEN_FULL_PATH_NAMES YES) +endif() +if(NOT DEFINED DOXYGEN_SHORT_NAMES) + set(DOXYGEN_SHORT_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_JAVADOC_AUTOBRIEF) + set(DOXYGEN_JAVADOC_AUTOBRIEF NO) +endif() +if(NOT DEFINED DOXYGEN_JAVADOC_BANNER) + set(DOXYGEN_JAVADOC_BANNER NO) +endif() +if(NOT DEFINED DOXYGEN_QT_AUTOBRIEF) + set(DOXYGEN_QT_AUTOBRIEF NO) +endif() +if(NOT DEFINED DOXYGEN_MULTILINE_CPP_IS_BRIEF) + set(DOXYGEN_MULTILINE_CPP_IS_BRIEF NO) +endif() +if(NOT DEFINED DOXYGEN_INHERIT_DOCS) + set(DOXYGEN_INHERIT_DOCS YES) +endif() +if(NOT DEFINED DOXYGEN_SEPARATE_MEMBER_PAGES) + set(DOXYGEN_SEPARATE_MEMBER_PAGES NO) +endif() +if(NOT DEFINED DOXYGEN_TAB_SIZE) + set(DOXYGEN_TAB_SIZE 4) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_FOR_C) + set(DOXYGEN_OPTIMIZE_OUTPUT_FOR_C NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_JAVA) + set(DOXYGEN_OPTIMIZE_OUTPUT_JAVA NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_FOR_FORTRAN) + set(DOXYGEN_OPTIMIZE_FOR_FORTRAN NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_VHDL) + set(DOXYGEN_OPTIMIZE_OUTPUT_VHDL NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_SLICE) + set(DOXYGEN_OPTIMIZE_OUTPUT_SLICE NO) +endif() +if(NOT DEFINED DOXYGEN_MARKDOWN_SUPPORT) + set(DOXYGEN_MARKDOWN_SUPPORT YES) +endif() +if(NOT DEFINED DOXYGEN_TOC_INCLUDE_HEADINGS) + set(DOXYGEN_TOC_INCLUDE_HEADINGS 5) +endif() +if(NOT DEFINED DOXYGEN_AUTOLINK_SUPPORT) + set(DOXYGEN_AUTOLINK_SUPPORT YES) +endif() +if(NOT DEFINED DOXYGEN_BUILTIN_STL_SUPPORT) + set(DOXYGEN_BUILTIN_STL_SUPPORT NO) +endif() +if(NOT DEFINED DOXYGEN_CPP_CLI_SUPPORT) + set(DOXYGEN_CPP_CLI_SUPPORT NO) +endif() +if(NOT DEFINED DOXYGEN_SIP_SUPPORT) + set(DOXYGEN_SIP_SUPPORT NO) +endif() +if(NOT DEFINED DOXYGEN_IDL_PROPERTY_SUPPORT) + set(DOXYGEN_IDL_PROPERTY_SUPPORT YES) +endif() +if(NOT DEFINED DOXYGEN_DISTRIBUTE_GROUP_DOC) + set(DOXYGEN_DISTRIBUTE_GROUP_DOC NO) +endif() +if(NOT DEFINED DOXYGEN_GROUP_NESTED_COMPOUNDS) + set(DOXYGEN_GROUP_NESTED_COMPOUNDS NO) +endif() +if(NOT DEFINED DOXYGEN_SUBGROUPING) + set(DOXYGEN_SUBGROUPING YES) +endif() +if(NOT DEFINED DOXYGEN_INLINE_GROUPED_CLASSES) + set(DOXYGEN_INLINE_GROUPED_CLASSES NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_SIMPLE_STRUCTS) + set(DOXYGEN_INLINE_SIMPLE_STRUCTS NO) +endif() +if(NOT DEFINED DOXYGEN_TYPEDEF_HIDES_STRUCT) + set(DOXYGEN_TYPEDEF_HIDES_STRUCT NO) +endif() +if(NOT DEFINED DOXYGEN_LOOKUP_CACHE_SIZE) + set(DOXYGEN_LOOKUP_CACHE_SIZE 0) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_ALL) + set(DOXYGEN_EXTRACT_ALL NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_PRIVATE) + set(DOXYGEN_EXTRACT_PRIVATE NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_PRIV_VIRTUAL) + set(DOXYGEN_EXTRACT_PRIV_VIRTUAL NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_PACKAGE) + set(DOXYGEN_EXTRACT_PACKAGE NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_STATIC) + set(DOXYGEN_EXTRACT_STATIC NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_LOCAL_CLASSES) + set(DOXYGEN_EXTRACT_LOCAL_CLASSES YES) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_LOCAL_METHODS) + set(DOXYGEN_EXTRACT_LOCAL_METHODS NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_ANON_NSPACES) + set(DOXYGEN_EXTRACT_ANON_NSPACES NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_UNDOC_MEMBERS) + set(DOXYGEN_HIDE_UNDOC_MEMBERS NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_UNDOC_CLASSES) + set(DOXYGEN_HIDE_UNDOC_CLASSES NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_FRIEND_COMPOUNDS) + set(DOXYGEN_HIDE_FRIEND_COMPOUNDS NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_IN_BODY_DOCS) + set(DOXYGEN_HIDE_IN_BODY_DOCS NO) +endif() +if(NOT DEFINED DOXYGEN_INTERNAL_DOCS) + set(DOXYGEN_INTERNAL_DOCS NO) +endif() +if(NOT DEFINED DOXYGEN_CASE_SENSE_NAMES) + set(DOXYGEN_CASE_SENSE_NAMES YES) +endif() +if(NOT DEFINED DOXYGEN_HIDE_SCOPE_NAMES) + set(DOXYGEN_HIDE_SCOPE_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_COMPOUND_REFERENCE) + set(DOXYGEN_HIDE_COMPOUND_REFERENCE NO) +endif() +if(NOT DEFINED DOXYGEN_SHOW_INCLUDE_FILES) + set(DOXYGEN_SHOW_INCLUDE_FILES YES) +endif() +if(NOT DEFINED DOXYGEN_SHOW_GROUPED_MEMB_INC) + set(DOXYGEN_SHOW_GROUPED_MEMB_INC NO) +endif() +if(NOT DEFINED DOXYGEN_FORCE_LOCAL_INCLUDES) + set(DOXYGEN_FORCE_LOCAL_INCLUDES NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_INFO) + set(DOXYGEN_INLINE_INFO YES) +endif() +if(NOT DEFINED DOXYGEN_SORT_MEMBER_DOCS) + set(DOXYGEN_SORT_MEMBER_DOCS YES) +endif() +if(NOT DEFINED DOXYGEN_SORT_BRIEF_DOCS) + set(DOXYGEN_SORT_BRIEF_DOCS NO) +endif() +if(NOT DEFINED DOXYGEN_SORT_MEMBERS_CTORS_1ST) + set(DOXYGEN_SORT_MEMBERS_CTORS_1ST NO) +endif() +if(NOT DEFINED DOXYGEN_SORT_GROUP_NAMES) + set(DOXYGEN_SORT_GROUP_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_SORT_BY_SCOPE_NAME) + set(DOXYGEN_SORT_BY_SCOPE_NAME NO) +endif() +if(NOT DEFINED DOXYGEN_STRICT_PROTO_MATCHING) + set(DOXYGEN_STRICT_PROTO_MATCHING NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_TODOLIST) + set(DOXYGEN_GENERATE_TODOLIST YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_TESTLIST) + set(DOXYGEN_GENERATE_TESTLIST YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_BUGLIST) + set(DOXYGEN_GENERATE_BUGLIST YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_DEPRECATEDLIST) + set(DOXYGEN_GENERATE_DEPRECATEDLIST YES) +endif() +if(NOT DEFINED DOXYGEN_MAX_INITIALIZER_LINES) + set(DOXYGEN_MAX_INITIALIZER_LINES 30) +endif() +if(NOT DEFINED DOXYGEN_SHOW_USED_FILES) + set(DOXYGEN_SHOW_USED_FILES YES) +endif() +if(NOT DEFINED DOXYGEN_SHOW_FILES) + set(DOXYGEN_SHOW_FILES YES) +endif() +if(NOT DEFINED DOXYGEN_SHOW_NAMESPACES) + set(DOXYGEN_SHOW_NAMESPACES YES) +endif() +if(NOT DEFINED DOXYGEN_QUIET) + set(DOXYGEN_QUIET NO) +endif() +if(NOT DEFINED DOXYGEN_WARNINGS) + set(DOXYGEN_WARNINGS YES) +endif() +if(NOT DEFINED DOXYGEN_WARN_IF_UNDOCUMENTED) + set(DOXYGEN_WARN_IF_UNDOCUMENTED YES) +endif() +if(NOT DEFINED DOXYGEN_WARN_IF_DOC_ERROR) + set(DOXYGEN_WARN_IF_DOC_ERROR YES) +endif() +if(NOT DEFINED DOXYGEN_WARN_NO_PARAMDOC) + set(DOXYGEN_WARN_NO_PARAMDOC NO) +endif() +if(NOT DEFINED DOXYGEN_WARN_AS_ERROR) + set(DOXYGEN_WARN_AS_ERROR NO) +endif() +if(NOT DEFINED DOXYGEN_WARN_FORMAT) + set(DOXYGEN_WARN_FORMAT "$file:$line: $text") +endif() +if(NOT DEFINED DOXYGEN_INPUT_ENCODING) + set(DOXYGEN_INPUT_ENCODING UTF-8) +endif() +if(NOT DEFINED DOXYGEN_FILE_PATTERNS) + set(DOXYGEN_FILE_PATTERNS *.c + *.cc + *.cxx + *.cpp + *.c++ + *.java + *.ii + *.ixx + *.ipp + *.i++ + *.inl + *.idl + *.ddl + *.odl + *.h + *.hh + *.hxx + *.hpp + *.h++ + *.cs + *.d + *.php + *.php4 + *.php5 + *.phtml + *.inc + *.m + *.markdown + *.md + *.mm + *.dox + *.doc + *.txt + *.py + *.pyw + *.f90 + *.f95 + *.f03 + *.f08 + *.f + *.for + *.tcl + *.vhd + *.vhdl + *.ucf + *.qsf + *.ice) +endif() +if(NOT DEFINED DOXYGEN_RECURSIVE) + set(DOXYGEN_RECURSIVE NO) +endif() +if(NOT DEFINED DOXYGEN_EXCLUDE_SYMLINKS) + set(DOXYGEN_EXCLUDE_SYMLINKS NO) +endif() +if(NOT DEFINED DOXYGEN_EXAMPLE_PATTERNS) + set(DOXYGEN_EXAMPLE_PATTERNS *) +endif() +if(NOT DEFINED DOXYGEN_EXAMPLE_RECURSIVE) + set(DOXYGEN_EXAMPLE_RECURSIVE NO) +endif() +if(NOT DEFINED DOXYGEN_FILTER_SOURCE_FILES) + set(DOXYGEN_FILTER_SOURCE_FILES NO) +endif() +if(NOT DEFINED DOXYGEN_SOURCE_BROWSER) + set(DOXYGEN_SOURCE_BROWSER NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_SOURCES) + set(DOXYGEN_INLINE_SOURCES NO) +endif() +if(NOT DEFINED DOXYGEN_STRIP_CODE_COMMENTS) + set(DOXYGEN_STRIP_CODE_COMMENTS YES) +endif() +if(NOT DEFINED DOXYGEN_REFERENCED_BY_RELATION) + set(DOXYGEN_REFERENCED_BY_RELATION NO) +endif() +if(NOT DEFINED DOXYGEN_REFERENCES_RELATION) + set(DOXYGEN_REFERENCES_RELATION NO) +endif() +if(NOT DEFINED DOXYGEN_REFERENCES_LINK_SOURCE) + set(DOXYGEN_REFERENCES_LINK_SOURCE YES) +endif() +if(NOT DEFINED DOXYGEN_SOURCE_TOOLTIPS) + set(DOXYGEN_SOURCE_TOOLTIPS YES) +endif() +if(NOT DEFINED DOXYGEN_USE_HTAGS) + set(DOXYGEN_USE_HTAGS NO) +endif() +if(NOT DEFINED DOXYGEN_VERBATIM_HEADERS) + set(DOXYGEN_VERBATIM_HEADERS YES) +endif() +if(NOT DEFINED DOXYGEN_CLANG_ASSISTED_PARSING) + set(DOXYGEN_CLANG_ASSISTED_PARSING NO) +endif() +if(NOT DEFINED DOXYGEN_ALPHABETICAL_INDEX) + set(DOXYGEN_ALPHABETICAL_INDEX YES) +endif() +if(NOT DEFINED DOXYGEN_COLS_IN_ALPHA_INDEX) + set(DOXYGEN_COLS_IN_ALPHA_INDEX 5) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_HTML) + set(DOXYGEN_GENERATE_HTML YES) +endif() +if(NOT DEFINED DOXYGEN_HTML_OUTPUT) + set(DOXYGEN_HTML_OUTPUT html) +endif() +if(NOT DEFINED DOXYGEN_HTML_FILE_EXTENSION) + set(DOXYGEN_HTML_FILE_EXTENSION .html) +endif() +if(NOT DEFINED DOXYGEN_HTML_COLORSTYLE_HUE) + set(DOXYGEN_HTML_COLORSTYLE_HUE 220) +endif() +if(NOT DEFINED DOXYGEN_HTML_COLORSTYLE_SAT) + set(DOXYGEN_HTML_COLORSTYLE_SAT 100) +endif() +if(NOT DEFINED DOXYGEN_HTML_COLORSTYLE_GAMMA) + set(DOXYGEN_HTML_COLORSTYLE_GAMMA 80) +endif() +if(NOT DEFINED DOXYGEN_HTML_TIMESTAMP) + set(DOXYGEN_HTML_TIMESTAMP NO) +endif() +if(NOT DEFINED DOXYGEN_HTML_DYNAMIC_MENUS) + set(DOXYGEN_HTML_DYNAMIC_MENUS YES) +endif() +if(NOT DEFINED DOXYGEN_HTML_DYNAMIC_SECTIONS) + set(DOXYGEN_HTML_DYNAMIC_SECTIONS NO) +endif() +if(NOT DEFINED DOXYGEN_HTML_INDEX_NUM_ENTRIES) + set(DOXYGEN_HTML_INDEX_NUM_ENTRIES 100) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_DOCSET) + set(DOXYGEN_GENERATE_DOCSET NO) +endif() +if(NOT DEFINED DOXYGEN_DOCSET_FEEDNAME) + set(DOXYGEN_DOCSET_FEEDNAME "Doxygen generated docs") +endif() +if(NOT DEFINED DOXYGEN_DOCSET_BUNDLE_ID) + set(DOXYGEN_DOCSET_BUNDLE_ID org.doxygen.Project) +endif() +if(NOT DEFINED DOXYGEN_DOCSET_PUBLISHER_ID) + set(DOXYGEN_DOCSET_PUBLISHER_ID org.doxygen.Publisher) +endif() +if(NOT DEFINED DOXYGEN_DOCSET_PUBLISHER_NAME) + set(DOXYGEN_DOCSET_PUBLISHER_NAME Publisher) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_HTMLHELP) + set(DOXYGEN_GENERATE_HTMLHELP NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_CHI) + set(DOXYGEN_GENERATE_CHI NO) +endif() +if(NOT DEFINED DOXYGEN_BINARY_TOC) + set(DOXYGEN_BINARY_TOC NO) +endif() +if(NOT DEFINED DOXYGEN_TOC_EXPAND) + set(DOXYGEN_TOC_EXPAND NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_QHP) + set(DOXYGEN_GENERATE_QHP NO) +endif() +if(NOT DEFINED DOXYGEN_QHP_NAMESPACE) + set(DOXYGEN_QHP_NAMESPACE org.doxygen.Project) +endif() +if(NOT DEFINED DOXYGEN_QHP_VIRTUAL_FOLDER) + set(DOXYGEN_QHP_VIRTUAL_FOLDER doc) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_ECLIPSEHELP) + set(DOXYGEN_GENERATE_ECLIPSEHELP NO) +endif() +if(NOT DEFINED DOXYGEN_ECLIPSE_DOC_ID) + set(DOXYGEN_ECLIPSE_DOC_ID org.doxygen.Project) +endif() +if(NOT DEFINED DOXYGEN_DISABLE_INDEX) + set(DOXYGEN_DISABLE_INDEX NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_TREEVIEW) + set(DOXYGEN_GENERATE_TREEVIEW NO) +endif() +if(NOT DEFINED DOXYGEN_ENUM_VALUES_PER_LINE) + set(DOXYGEN_ENUM_VALUES_PER_LINE 4) +endif() +if(NOT DEFINED DOXYGEN_TREEVIEW_WIDTH) + set(DOXYGEN_TREEVIEW_WIDTH 250) +endif() +if(NOT DEFINED DOXYGEN_EXT_LINKS_IN_WINDOW) + set(DOXYGEN_EXT_LINKS_IN_WINDOW NO) +endif() +if(NOT DEFINED DOXYGEN_FORMULA_FONTSIZE) + set(DOXYGEN_FORMULA_FONTSIZE 10) +endif() +if(NOT DEFINED DOXYGEN_FORMULA_TRANSPARENT) + set(DOXYGEN_FORMULA_TRANSPARENT YES) +endif() +if(NOT DEFINED DOXYGEN_USE_MATHJAX) + set(DOXYGEN_USE_MATHJAX NO) +endif() +if(NOT DEFINED DOXYGEN_MATHJAX_FORMAT) + set(DOXYGEN_MATHJAX_FORMAT HTML-CSS) +endif() +if(NOT DEFINED DOXYGEN_MATHJAX_RELPATH) + set(DOXYGEN_MATHJAX_RELPATH https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/) +endif() +if(NOT DEFINED DOXYGEN_SEARCHENGINE) + set(DOXYGEN_SEARCHENGINE YES) +endif() +if(NOT DEFINED DOXYGEN_SERVER_BASED_SEARCH) + set(DOXYGEN_SERVER_BASED_SEARCH NO) +endif() +if(NOT DEFINED DOXYGEN_EXTERNAL_SEARCH) + set(DOXYGEN_EXTERNAL_SEARCH NO) +endif() +if(NOT DEFINED DOXYGEN_SEARCHDATA_FILE) + set(DOXYGEN_SEARCHDATA_FILE searchdata.xml) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_LATEX) + set(DOXYGEN_GENERATE_LATEX YES) +endif() +if(NOT DEFINED DOXYGEN_LATEX_OUTPUT) + set(DOXYGEN_LATEX_OUTPUT latex) +endif() +if(NOT DEFINED DOXYGEN_MAKEINDEX_CMD_NAME) + set(DOXYGEN_MAKEINDEX_CMD_NAME makeindex) +endif() +if(NOT DEFINED DOXYGEN_LATEX_MAKEINDEX_CMD) + set(DOXYGEN_LATEX_MAKEINDEX_CMD makeindex) +endif() +if(NOT DEFINED DOXYGEN_COMPACT_LATEX) + set(DOXYGEN_COMPACT_LATEX NO) +endif() +if(NOT DEFINED DOXYGEN_PAPER_TYPE) + set(DOXYGEN_PAPER_TYPE a4) +endif() +if(NOT DEFINED DOXYGEN_PDF_HYPERLINKS) + set(DOXYGEN_PDF_HYPERLINKS YES) +endif() +if(NOT DEFINED DOXYGEN_USE_PDFLATEX) + set(DOXYGEN_USE_PDFLATEX YES) +endif() +if(NOT DEFINED DOXYGEN_LATEX_BATCHMODE) + set(DOXYGEN_LATEX_BATCHMODE NO) +endif() +if(NOT DEFINED DOXYGEN_LATEX_HIDE_INDICES) + set(DOXYGEN_LATEX_HIDE_INDICES NO) +endif() +if(NOT DEFINED DOXYGEN_LATEX_SOURCE_CODE) + set(DOXYGEN_LATEX_SOURCE_CODE NO) +endif() +if(NOT DEFINED DOXYGEN_LATEX_BIB_STYLE) + set(DOXYGEN_LATEX_BIB_STYLE plain) +endif() +if(NOT DEFINED DOXYGEN_LATEX_TIMESTAMP) + set(DOXYGEN_LATEX_TIMESTAMP NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_RTF) + set(DOXYGEN_GENERATE_RTF NO) +endif() +if(NOT DEFINED DOXYGEN_RTF_OUTPUT) + set(DOXYGEN_RTF_OUTPUT rtf) +endif() +if(NOT DEFINED DOXYGEN_COMPACT_RTF) + set(DOXYGEN_COMPACT_RTF NO) +endif() +if(NOT DEFINED DOXYGEN_RTF_HYPERLINKS) + set(DOXYGEN_RTF_HYPERLINKS NO) +endif() +if(NOT DEFINED DOXYGEN_RTF_SOURCE_CODE) + set(DOXYGEN_RTF_SOURCE_CODE NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_MAN) + set(DOXYGEN_GENERATE_MAN NO) +endif() +if(NOT DEFINED DOXYGEN_MAN_OUTPUT) + set(DOXYGEN_MAN_OUTPUT man) +endif() +if(NOT DEFINED DOXYGEN_MAN_EXTENSION) + set(DOXYGEN_MAN_EXTENSION .3) +endif() +if(NOT DEFINED DOXYGEN_MAN_LINKS) + set(DOXYGEN_MAN_LINKS NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_XML) + set(DOXYGEN_GENERATE_XML NO) +endif() +if(NOT DEFINED DOXYGEN_XML_OUTPUT) + set(DOXYGEN_XML_OUTPUT xml) +endif() +if(NOT DEFINED DOXYGEN_XML_PROGRAMLISTING) + set(DOXYGEN_XML_PROGRAMLISTING YES) +endif() +if(NOT DEFINED DOXYGEN_XML_NS_MEMB_FILE_SCOPE) + set(DOXYGEN_XML_NS_MEMB_FILE_SCOPE NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_DOCBOOK) + set(DOXYGEN_GENERATE_DOCBOOK NO) +endif() +if(NOT DEFINED DOXYGEN_DOCBOOK_OUTPUT) + set(DOXYGEN_DOCBOOK_OUTPUT docbook) +endif() +if(NOT DEFINED DOXYGEN_DOCBOOK_PROGRAMLISTING) + set(DOXYGEN_DOCBOOK_PROGRAMLISTING NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_AUTOGEN_DEF) + set(DOXYGEN_GENERATE_AUTOGEN_DEF NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_PERLMOD) + set(DOXYGEN_GENERATE_PERLMOD NO) +endif() +if(NOT DEFINED DOXYGEN_PERLMOD_LATEX) + set(DOXYGEN_PERLMOD_LATEX NO) +endif() +if(NOT DEFINED DOXYGEN_PERLMOD_PRETTY) + set(DOXYGEN_PERLMOD_PRETTY YES) +endif() +if(NOT DEFINED DOXYGEN_ENABLE_PREPROCESSING) + set(DOXYGEN_ENABLE_PREPROCESSING YES) +endif() +if(NOT DEFINED DOXYGEN_MACRO_EXPANSION) + set(DOXYGEN_MACRO_EXPANSION NO) +endif() +if(NOT DEFINED DOXYGEN_EXPAND_ONLY_PREDEF) + set(DOXYGEN_EXPAND_ONLY_PREDEF NO) +endif() +if(NOT DEFINED DOXYGEN_SEARCH_INCLUDES) + set(DOXYGEN_SEARCH_INCLUDES YES) +endif() +if(NOT DEFINED DOXYGEN_SKIP_FUNCTION_MACROS) + set(DOXYGEN_SKIP_FUNCTION_MACROS YES) +endif() +if(NOT DEFINED DOXYGEN_ALLEXTERNALS) + set(DOXYGEN_ALLEXTERNALS NO) +endif() +if(NOT DEFINED DOXYGEN_EXTERNAL_GROUPS) + set(DOXYGEN_EXTERNAL_GROUPS YES) +endif() +if(NOT DEFINED DOXYGEN_EXTERNAL_PAGES) + set(DOXYGEN_EXTERNAL_PAGES YES) +endif() +if(NOT DEFINED DOXYGEN_CLASS_DIAGRAMS) + set(DOXYGEN_CLASS_DIAGRAMS YES) +endif() +if(NOT DEFINED DOXYGEN_HIDE_UNDOC_RELATIONS) + set(DOXYGEN_HIDE_UNDOC_RELATIONS YES) +endif() +if(NOT DEFINED DOXYGEN_HAVE_DOT) + set(DOXYGEN_HAVE_DOT YES) +endif() +if(NOT DEFINED DOXYGEN_DOT_NUM_THREADS) + set(DOXYGEN_DOT_NUM_THREADS 0) +endif() +if(NOT DEFINED DOXYGEN_DOT_FONTNAME) + set(DOXYGEN_DOT_FONTNAME Helvetica) +endif() +if(NOT DEFINED DOXYGEN_DOT_FONTSIZE) + set(DOXYGEN_DOT_FONTSIZE 10) +endif() +if(NOT DEFINED DOXYGEN_CLASS_GRAPH) + set(DOXYGEN_CLASS_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_COLLABORATION_GRAPH) + set(DOXYGEN_COLLABORATION_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_GROUP_GRAPHS) + set(DOXYGEN_GROUP_GRAPHS YES) +endif() +if(NOT DEFINED DOXYGEN_UML_LOOK) + set(DOXYGEN_UML_LOOK NO) +endif() +if(NOT DEFINED DOXYGEN_UML_LIMIT_NUM_FIELDS) + set(DOXYGEN_UML_LIMIT_NUM_FIELDS 10) +endif() +if(NOT DEFINED DOXYGEN_TEMPLATE_RELATIONS) + set(DOXYGEN_TEMPLATE_RELATIONS NO) +endif() +if(NOT DEFINED DOXYGEN_INCLUDE_GRAPH) + set(DOXYGEN_INCLUDE_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_INCLUDED_BY_GRAPH) + set(DOXYGEN_INCLUDED_BY_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_CALL_GRAPH) + set(DOXYGEN_CALL_GRAPH NO) +endif() +if(NOT DEFINED DOXYGEN_CALLER_GRAPH) + set(DOXYGEN_CALLER_GRAPH NO) +endif() +if(NOT DEFINED DOXYGEN_GRAPHICAL_HIERARCHY) + set(DOXYGEN_GRAPHICAL_HIERARCHY YES) +endif() +if(NOT DEFINED DOXYGEN_DIRECTORY_GRAPH) + set(DOXYGEN_DIRECTORY_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_DOT_IMAGE_FORMAT) + set(DOXYGEN_DOT_IMAGE_FORMAT png) +endif() +if(NOT DEFINED DOXYGEN_INTERACTIVE_SVG) + set(DOXYGEN_INTERACTIVE_SVG NO) +endif() +if(NOT DEFINED DOXYGEN_DOT_GRAPH_MAX_NODES) + set(DOXYGEN_DOT_GRAPH_MAX_NODES 50) +endif() +if(NOT DEFINED DOXYGEN_MAX_DOT_GRAPH_DEPTH) + set(DOXYGEN_MAX_DOT_GRAPH_DEPTH 0) +endif() +if(NOT DEFINED DOXYGEN_DOT_TRANSPARENT) + set(DOXYGEN_DOT_TRANSPARENT NO) +endif() +if(NOT DEFINED DOXYGEN_DOT_MULTI_TARGETS) + set(DOXYGEN_DOT_MULTI_TARGETS NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_LEGEND) + set(DOXYGEN_GENERATE_LEGEND YES) +endif() +if(NOT DEFINED DOXYGEN_DOT_CLEANUP) + set(DOXYGEN_DOT_CLEANUP YES) +endif() diff --git a/tests/unit/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake b/tests/unit/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..2692f73 --- /dev/null +++ b/tests/unit/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake @@ -0,0 +1,76 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "9.3.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-9") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/tests/unit/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin b/tests/unit/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..a3225b1 Binary files /dev/null and b/tests/unit/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/tests/unit/build/CMakeFiles/3.16.3/CMakeSystem.cmake b/tests/unit/build/CMakeFiles/3.16.3/CMakeSystem.cmake new file mode 100644 index 0000000..70736df --- /dev/null +++ b/tests/unit/build/CMakeFiles/3.16.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.13.0-30-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.13.0-30-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.13.0-30-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.13.0-30-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/tests/unit/build/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c b/tests/unit/build/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..d884b50 --- /dev/null +++ b/tests/unit/build/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,671 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if (defined(_MSC_VER) && !defined(__clang__)) \ + || (defined(__ibmxl__) || defined(__IBMC__)) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/tests/unit/build/CMakeFiles/3.16.3/CompilerIdC/a.out b/tests/unit/build/CMakeFiles/3.16.3/CompilerIdC/a.out new file mode 100755 index 0000000..46f1233 Binary files /dev/null and b/tests/unit/build/CMakeFiles/3.16.3/CompilerIdC/a.out differ diff --git a/tests/unit/build/CMakeFiles/CMakeDirectoryInformation.cmake b/tests/unit/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..f5ce8d9 --- /dev/null +++ b/tests/unit/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/cseguret/Projects/app-ethereum/tests/unit") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/cseguret/Projects/app-ethereum/tests/unit/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/tests/unit/build/CMakeFiles/CMakeError.log b/tests/unit/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000..1fabe28 --- /dev/null +++ b/tests/unit/build/CMakeFiles/CMakeError.log @@ -0,0 +1,19 @@ +Determining if the include file io.h exists failed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_0b6ae/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_0b6ae.dir/build.make CMakeFiles/cmTC_0b6ae.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_0b6ae.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_0b6ae.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: io.h: No such file or directory + 1 | #include + | ^~~~~~ +compilation terminated. +make[2]: *** [CMakeFiles/cmTC_0b6ae.dir/build.make:66: CMakeFiles/cmTC_0b6ae.dir/CheckIncludeFile.c.o] Error 1 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: *** [Makefile:121: cmTC_0b6ae/fast] Error 2 +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + diff --git a/tests/unit/build/CMakeFiles/CMakeOutput.log b/tests/unit/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..9c67af9 --- /dev/null +++ b/tests/unit/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,1543 @@ +The system is: Linux - 5.13.0-30-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/3.16.3/CompilerIdC/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_6bfc2/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_6bfc2.dir/build.make CMakeFiles/cmTC_6bfc2.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_6bfc2.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_6bfc2.dir/testCCompiler.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_6bfc2 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6bfc2.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_6bfc2.dir/testCCompiler.c.o -o cmTC_6bfc2 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_aa8d6/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_aa8d6.dir/build.make CMakeFiles/cmTC_aa8d6.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccV9ecHq.s +GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/9/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: bbf13931d8de1abe14040c9909cb6969 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o /tmp/ccV9ecHq.s +GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' +Linking C executable cmTC_aa8d6 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aa8d6.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -o cmTC_aa8d6 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_aa8d6' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cctdlJPU.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_aa8d6 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_aa8d6' '-mtune=generic' '-march=x86-64' +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/9/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_aa8d6/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_aa8d6.dir/build.make CMakeFiles/cmTC_aa8d6.dir/build] + ignore line: [make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccV9ecHq.s] + ignore line: [GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: bbf13931d8de1abe14040c9909cb6969] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o /tmp/ccV9ecHq.s] + ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking C executable cmTC_aa8d6] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aa8d6.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -o cmTC_aa8d6 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_aa8d6' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cctdlJPU.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_aa8d6 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cctdlJPU.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_aa8d6] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] + arg [CMakeFiles/cmTC_aa8d6.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Performing C SOURCE FILE Test REQUIRED_FLAGS_WERROR succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_614fc/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_614fc.dir/build.make CMakeFiles/cmTC_614fc.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_614fc.dir/src.c.o +/usr/bin/cc -DREQUIRED_FLAGS_WERROR -fPIE -Werror -o CMakeFiles/cmTC_614fc.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_614fc +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_614fc.dir/link.txt --verbose=1 +/usr/bin/cc -DREQUIRED_FLAGS_WERROR --coverage -lgcov CMakeFiles/cmTC_614fc.dir/src.c.o -o cmTC_614fc +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_STD_GNU99_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_4c077/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_4c077.dir/build.make CMakeFiles/cmTC_4c077.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_4c077.dir/src.c.o +/usr/bin/cc -DWITH_STD_GNU99_FLAG -Werror -fPIE -std=gnu99 -o CMakeFiles/cmTC_4c077.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_4c077 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4c077.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_STD_GNU99_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_4c077.dir/src.c.o -o cmTC_4c077 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WPEDANTIC_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_24634/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_24634.dir/build.make CMakeFiles/cmTC_24634.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_24634.dir/src.c.o +/usr/bin/cc -DWITH_WPEDANTIC_FLAG -Werror -fPIE -Wpedantic -o CMakeFiles/cmTC_24634.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_24634 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_24634.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WPEDANTIC_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_24634.dir/src.c.o -o cmTC_24634 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WALL_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_5a86d/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_5a86d.dir/build.make CMakeFiles/cmTC_5a86d.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_5a86d.dir/src.c.o +/usr/bin/cc -DWITH_WALL_FLAG -Werror -fPIE -Wall -o CMakeFiles/cmTC_5a86d.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_5a86d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5a86d.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WALL_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_5a86d.dir/src.c.o -o cmTC_5a86d +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WSHADOW_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_4eabd/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_4eabd.dir/build.make CMakeFiles/cmTC_4eabd.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_4eabd.dir/src.c.o +/usr/bin/cc -DWITH_WSHADOW_FLAG -Werror -fPIE -Wshadow -o CMakeFiles/cmTC_4eabd.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_4eabd +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4eabd.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WSHADOW_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_4eabd.dir/src.c.o -o cmTC_4eabd +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WMISSING_PROTOTYPES_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_ba167/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_ba167.dir/build.make CMakeFiles/cmTC_ba167.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_ba167.dir/src.c.o +/usr/bin/cc -DWITH_WMISSING_PROTOTYPES_FLAG -Werror -fPIE -Wmissing-prototypes -o CMakeFiles/cmTC_ba167.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_ba167 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ba167.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WMISSING_PROTOTYPES_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_ba167.dir/src.c.o -o cmTC_ba167 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WCAST_ALIGN_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_291ef/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_291ef.dir/build.make CMakeFiles/cmTC_291ef.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_291ef.dir/src.c.o +/usr/bin/cc -DWITH_WCAST_ALIGN_FLAG -Werror -fPIE -Wcast-align -o CMakeFiles/cmTC_291ef.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_291ef +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_291ef.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WCAST_ALIGN_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_291ef.dir/src.c.o -o cmTC_291ef +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_ADDRESS_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_7971e/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_7971e.dir/build.make CMakeFiles/cmTC_7971e.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_7971e.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_ADDRESS_FLAG -Werror -fPIE -Werror=address -o CMakeFiles/cmTC_7971e.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_7971e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7971e.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_ADDRESS_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_7971e.dir/src.c.o -o cmTC_7971e +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WSTRICT_PROTOTYPES_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_529b0/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_529b0.dir/build.make CMakeFiles/cmTC_529b0.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_529b0.dir/src.c.o +/usr/bin/cc -DWITH_WSTRICT_PROTOTYPES_FLAG -Werror -fPIE -Wstrict-prototypes -o CMakeFiles/cmTC_529b0.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_529b0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_529b0.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WSTRICT_PROTOTYPES_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_529b0.dir/src.c.o -o cmTC_529b0 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_STRICT_PROTOTYPES_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_52be7/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_52be7.dir/build.make CMakeFiles/cmTC_52be7.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_52be7.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_STRICT_PROTOTYPES_FLAG -Werror -fPIE -Werror=strict-prototypes -o CMakeFiles/cmTC_52be7.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_52be7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52be7.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_STRICT_PROTOTYPES_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_52be7.dir/src.c.o -o cmTC_52be7 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WWRITE_STRINGS_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_e4117/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_e4117.dir/build.make CMakeFiles/cmTC_e4117.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_e4117.dir/src.c.o +/usr/bin/cc -DWITH_WWRITE_STRINGS_FLAG -Werror -fPIE -Wwrite-strings -o CMakeFiles/cmTC_e4117.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_e4117 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e4117.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WWRITE_STRINGS_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_e4117.dir/src.c.o -o cmTC_e4117 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_WRITE_STRINGS_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_f6acb/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_f6acb.dir/build.make CMakeFiles/cmTC_f6acb.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_f6acb.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_WRITE_STRINGS_FLAG -Werror -fPIE -Werror=write-strings -o CMakeFiles/cmTC_f6acb.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_f6acb +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f6acb.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_WRITE_STRINGS_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_f6acb.dir/src.c.o -o cmTC_f6acb +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_IMPLICIT_FUNCTION_DECLARATION_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_9878d/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_9878d.dir/build.make CMakeFiles/cmTC_9878d.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_9878d.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_IMPLICIT_FUNCTION_DECLARATION_FLAG -Werror -fPIE -Werror-implicit-function-declaration -o CMakeFiles/cmTC_9878d.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_9878d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9878d.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_IMPLICIT_FUNCTION_DECLARATION_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_9878d.dir/src.c.o -o cmTC_9878d +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WPOINTER_ARITH_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_6bebb/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_6bebb.dir/build.make CMakeFiles/cmTC_6bebb.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_6bebb.dir/src.c.o +/usr/bin/cc -DWITH_WPOINTER_ARITH_FLAG -Werror -fPIE -Wpointer-arith -o CMakeFiles/cmTC_6bebb.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_6bebb +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6bebb.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WPOINTER_ARITH_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_6bebb.dir/src.c.o -o cmTC_6bebb +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_POINTER_ARITH_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_365f8/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_365f8.dir/build.make CMakeFiles/cmTC_365f8.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_365f8.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_POINTER_ARITH_FLAG -Werror -fPIE -Werror=pointer-arith -o CMakeFiles/cmTC_365f8.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_365f8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_365f8.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_POINTER_ARITH_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_365f8.dir/src.c.o -o cmTC_365f8 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WDECLARATION_AFTER_STATEMENT_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_d8b75/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_d8b75.dir/build.make CMakeFiles/cmTC_d8b75.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_d8b75.dir/src.c.o +/usr/bin/cc -DWITH_WDECLARATION_AFTER_STATEMENT_FLAG -Werror -fPIE -Wdeclaration-after-statement -o CMakeFiles/cmTC_d8b75.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_d8b75 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d8b75.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WDECLARATION_AFTER_STATEMENT_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_d8b75.dir/src.c.o -o cmTC_d8b75 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_DECLARATION_AFTER_STATEMENT_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_7eac4/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_7eac4.dir/build.make CMakeFiles/cmTC_7eac4.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_7eac4.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_DECLARATION_AFTER_STATEMENT_FLAG -Werror -fPIE -Werror=declaration-after-statement -o CMakeFiles/cmTC_7eac4.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_7eac4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7eac4.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_DECLARATION_AFTER_STATEMENT_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_7eac4.dir/src.c.o -o cmTC_7eac4 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WRETURN_TYPE_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_d10de/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_d10de.dir/build.make CMakeFiles/cmTC_d10de.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_d10de.dir/src.c.o +/usr/bin/cc -DWITH_WRETURN_TYPE_FLAG -Werror -fPIE -Wreturn-type -o CMakeFiles/cmTC_d10de.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_d10de +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d10de.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WRETURN_TYPE_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_d10de.dir/src.c.o -o cmTC_d10de +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_RETURN_TYPE_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_8b9f7/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_8b9f7.dir/build.make CMakeFiles/cmTC_8b9f7.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_8b9f7.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_RETURN_TYPE_FLAG -Werror -fPIE -Werror=return-type -o CMakeFiles/cmTC_8b9f7.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_8b9f7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8b9f7.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_RETURN_TYPE_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_8b9f7.dir/src.c.o -o cmTC_8b9f7 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WUNINITIALIZED_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_7e8f0/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_7e8f0.dir/build.make CMakeFiles/cmTC_7e8f0.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_7e8f0.dir/src.c.o +/usr/bin/cc -DWITH_WUNINITIALIZED_FLAG -Werror -fPIE -Wuninitialized -o CMakeFiles/cmTC_7e8f0.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_7e8f0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e8f0.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WUNINITIALIZED_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_7e8f0.dir/src.c.o -o cmTC_7e8f0 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_UNINITIALIZED_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_fb3a7/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_fb3a7.dir/build.make CMakeFiles/cmTC_fb3a7.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_fb3a7.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_UNINITIALIZED_FLAG -Werror -fPIE -Werror=uninitialized -o CMakeFiles/cmTC_fb3a7.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_fb3a7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fb3a7.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_UNINITIALIZED_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_fb3a7.dir/src.c.o -o cmTC_fb3a7 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WIMPLICIT_FALLTHROUGH_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_3a716/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_3a716.dir/build.make CMakeFiles/cmTC_3a716.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_3a716.dir/src.c.o +/usr/bin/cc -DWITH_WIMPLICIT_FALLTHROUGH_FLAG -Werror -fPIE -Wimplicit-fallthrough -o CMakeFiles/cmTC_3a716.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_3a716 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3a716.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WIMPLICIT_FALLTHROUGH_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_3a716.dir/src.c.o -o cmTC_3a716 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_STRICT_OVERFLOW_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_79fc6/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_79fc6.dir/build.make CMakeFiles/cmTC_79fc6.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_79fc6.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_STRICT_OVERFLOW_FLAG -Werror -fPIE -Werror=strict-overflow -o CMakeFiles/cmTC_79fc6.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_79fc6 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_79fc6.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_STRICT_OVERFLOW_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_79fc6.dir/src.c.o -o cmTC_79fc6 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WSTRICT_OVERFLOW_2_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_01048/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_01048.dir/build.make CMakeFiles/cmTC_01048.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_01048.dir/src.c.o +/usr/bin/cc -DWITH_WSTRICT_OVERFLOW_2_FLAG -Werror -fPIE -Wstrict-overflow=2 -o CMakeFiles/cmTC_01048.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_01048 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01048.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WSTRICT_OVERFLOW_2_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_01048.dir/src.c.o -o cmTC_01048 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WNO_FORMAT_ZERO_LENGTH_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_7516e/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_7516e.dir/build.make CMakeFiles/cmTC_7516e.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_7516e.dir/src.c.o +/usr/bin/cc -DWITH_WNO_FORMAT_ZERO_LENGTH_FLAG -Werror -fPIE -Wno-format-zero-length -o CMakeFiles/cmTC_7516e.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_7516e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7516e.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WNO_FORMAT_ZERO_LENGTH_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_7516e.dir/src.c.o -o cmTC_7516e +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WMISSING_FIELD_INITIALIZERS_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_60d70/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_60d70.dir/build.make CMakeFiles/cmTC_60d70.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_60d70.dir/src.c.o +/usr/bin/cc -DWITH_WMISSING_FIELD_INITIALIZERS_FLAG -Werror -fPIE -Wmissing-field-initializers -o CMakeFiles/cmTC_60d70.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_60d70 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_60d70.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WMISSING_FIELD_INITIALIZERS_FLAG -Werror --coverage -lgcov CMakeFiles/cmTC_60d70.dir/src.c.o -o cmTC_60d70 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test REQUIRED_FLAGS_WFORMAT succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_86d09/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_86d09.dir/build.make CMakeFiles/cmTC_86d09.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_86d09.dir/src.c.o +/usr/bin/cc -DREQUIRED_FLAGS_WFORMAT -Werror -fPIE -Wformat -o CMakeFiles/cmTC_86d09.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_86d09 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86d09.dir/link.txt --verbose=1 +/usr/bin/cc -DREQUIRED_FLAGS_WFORMAT -Werror --coverage -lgcov CMakeFiles/cmTC_86d09.dir/src.c.o -o cmTC_86d09 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WFORMAT_SECURITY_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_9d156/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_9d156.dir/build.make CMakeFiles/cmTC_9d156.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_9d156.dir/src.c.o +/usr/bin/cc -DWITH_WFORMAT_SECURITY_FLAG -Werror -Wformat -fPIE -Wformat-security -o CMakeFiles/cmTC_9d156.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_9d156 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9d156.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WFORMAT_SECURITY_FLAG -Werror -Wformat --coverage -lgcov CMakeFiles/cmTC_9d156.dir/src.c.o -o cmTC_9d156 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_WERROR_FORMAT_SECURITY_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_f4a17/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_f4a17.dir/build.make CMakeFiles/cmTC_f4a17.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_f4a17.dir/src.c.o +/usr/bin/cc -DWITH_WERROR_FORMAT_SECURITY_FLAG -Werror -Wformat -fPIE -Werror=format-security -o CMakeFiles/cmTC_f4a17.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_f4a17 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f4a17.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_WERROR_FORMAT_SECURITY_FLAG -Werror -Wformat --coverage -lgcov CMakeFiles/cmTC_f4a17.dir/src.c.o -o cmTC_f4a17 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_FNO_COMMON_FLAG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_215ca/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_215ca.dir/build.make CMakeFiles/cmTC_215ca.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_215ca.dir/src.c.o +/usr/bin/cc -DWITH_FNO_COMMON_FLAG -Werror -Wformat -fPIE -fno-common -o CMakeFiles/cmTC_215ca.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_215ca +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_215ca.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_FNO_COMMON_FLAG -Werror -Wformat --coverage -lgcov CMakeFiles/cmTC_215ca.dir/src.c.o -o cmTC_215ca +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Performing C SOURCE FILE Test WITH_STACK_PROTECTOR_STRONG succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_0daa2/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_0daa2.dir/build.make CMakeFiles/cmTC_0daa2.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_0daa2.dir/src.c.o +/usr/bin/cc -DWITH_STACK_PROTECTOR_STRONG -fstack-protector-strong -fPIE -o CMakeFiles/cmTC_0daa2.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_0daa2 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0daa2.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_STACK_PROTECTOR_STRONG -fstack-protector-strong --coverage -lgcov CMakeFiles/cmTC_0daa2.dir/src.c.o -o cmTC_0daa2 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(int argc, char **argv) { char buffer[256]; return buffer[argc]=0;} +Performing C SOURCE FILE Test WITH_STACK_CLASH_PROTECTION succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_32b5a/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_32b5a.dir/build.make CMakeFiles/cmTC_32b5a.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_32b5a.dir/src.c.o +/usr/bin/cc -DWITH_STACK_CLASH_PROTECTION -fstack-clash-protection -fPIE -o CMakeFiles/cmTC_32b5a.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_32b5a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_32b5a.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_STACK_CLASH_PROTECTION -fstack-clash-protection --coverage -lgcov CMakeFiles/cmTC_32b5a.dir/src.c.o -o cmTC_32b5a +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(int argc, char **argv) { char buffer[256]; return buffer[argc]=0;} +Performing C SOURCE FILE Test WITH_VISIBILITY_HIDDEN succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_77989/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_77989.dir/build.make CMakeFiles/cmTC_77989.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_77989.dir/src.c.o +/usr/bin/cc -DWITH_VISIBILITY_HIDDEN -fPIE -fvisibility=hidden -o CMakeFiles/cmTC_77989.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_77989 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_77989.dir/link.txt --verbose=1 +/usr/bin/cc -DWITH_VISIBILITY_HIDDEN --coverage -lgcov CMakeFiles/cmTC_77989.dir/src.c.o -o cmTC_77989 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: +int main(void) { return 0; } +Determining if the include file assert.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_e2f40/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_e2f40.dir/build.make CMakeFiles/cmTC_e2f40.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_e2f40.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_e2f40.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_e2f40 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e2f40.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_e2f40.dir/CheckIncludeFile.c.o -o cmTC_e2f40 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file inttypes.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_ac44e/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_ac44e.dir/build.make CMakeFiles/cmTC_ac44e.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_ac44e.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_ac44e.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_ac44e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ac44e.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_ac44e.dir/CheckIncludeFile.c.o -o cmTC_ac44e +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file malloc.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_807f0/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_807f0.dir/build.make CMakeFiles/cmTC_807f0.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_807f0.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_807f0.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_807f0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_807f0.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_807f0.dir/CheckIncludeFile.c.o -o cmTC_807f0 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file memory.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_e5bae/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_e5bae.dir/build.make CMakeFiles/cmTC_e5bae.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_e5bae.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_e5bae.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_e5bae +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e5bae.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_e5bae.dir/CheckIncludeFile.c.o -o cmTC_e5bae +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file setjmp.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_26449/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_26449.dir/build.make CMakeFiles/cmTC_26449.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_26449.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_26449.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_26449 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26449.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_26449.dir/CheckIncludeFile.c.o -o cmTC_26449 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file signal.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_008d1/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_008d1.dir/build.make CMakeFiles/cmTC_008d1.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_008d1.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_008d1.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_008d1 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_008d1.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_008d1.dir/CheckIncludeFile.c.o -o cmTC_008d1 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file stdarg.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_8c51c/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_8c51c.dir/build.make CMakeFiles/cmTC_8c51c.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_8c51c.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_8c51c.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_8c51c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8c51c.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_8c51c.dir/CheckIncludeFile.c.o -o cmTC_8c51c +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file stddef.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_101da/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_101da.dir/build.make CMakeFiles/cmTC_101da.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_101da.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_101da.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_101da +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_101da.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_101da.dir/CheckIncludeFile.c.o -o cmTC_101da +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file stdint.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_f6b2b/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_f6b2b.dir/build.make CMakeFiles/cmTC_f6b2b.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_f6b2b.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_f6b2b.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_f6b2b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f6b2b.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_f6b2b.dir/CheckIncludeFile.c.o -o cmTC_f6b2b +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file stdio.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_dde0d/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_dde0d.dir/build.make CMakeFiles/cmTC_dde0d.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_dde0d.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_dde0d.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_dde0d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dde0d.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_dde0d.dir/CheckIncludeFile.c.o -o cmTC_dde0d +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file stdlib.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_64fe4/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_64fe4.dir/build.make CMakeFiles/cmTC_64fe4.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_64fe4.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_64fe4.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_64fe4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64fe4.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_64fe4.dir/CheckIncludeFile.c.o -o cmTC_64fe4 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file string.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_6930c/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_6930c.dir/build.make CMakeFiles/cmTC_6930c.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_6930c.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_6930c.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_6930c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6930c.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_6930c.dir/CheckIncludeFile.c.o -o cmTC_6930c +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file strings.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_fd1a6/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_fd1a6.dir/build.make CMakeFiles/cmTC_fd1a6.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_fd1a6.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_fd1a6.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_fd1a6 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd1a6.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_fd1a6.dir/CheckIncludeFile.c.o -o cmTC_fd1a6 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file sys/stat.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_847f8/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_847f8.dir/build.make CMakeFiles/cmTC_847f8.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_847f8.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_847f8.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_847f8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_847f8.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_847f8.dir/CheckIncludeFile.c.o -o cmTC_847f8 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file sys/types.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_28435/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_28435.dir/build.make CMakeFiles/cmTC_28435.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_28435.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_28435.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_28435 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_28435.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_28435.dir/CheckIncludeFile.c.o -o cmTC_28435 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file time.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_eb782/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_eb782.dir/build.make CMakeFiles/cmTC_eb782.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_eb782.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_eb782.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_eb782 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eb782.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_eb782.dir/CheckIncludeFile.c.o -o cmTC_eb782 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the include file unistd.h exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_76c9e/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_76c9e.dir/build.make CMakeFiles/cmTC_76c9e.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_76c9e.dir/CheckIncludeFile.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_76c9e.dir/CheckIncludeFile.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_76c9e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_76c9e.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_76c9e.dir/CheckIncludeFile.c.o -o cmTC_76c9e +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Performing C SOURCE FILE Test HAVE_STRUCT_TIMESPEC succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_80293/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_80293.dir/build.make CMakeFiles/cmTC_80293.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_80293.dir/src.c.o +/usr/bin/cc -DHAVE_STRUCT_TIMESPEC -fPIE -o CMakeFiles/cmTC_80293.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_80293 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_80293.dir/link.txt --verbose=1 +/usr/bin/cc -DHAVE_STRUCT_TIMESPEC --coverage -lgcov CMakeFiles/cmTC_80293.dir/src.c.o -o cmTC_80293 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: + +#include + +int main() +{ + (void)sizeof(((struct timespec *)0)->tv_sec); + return 0; +} + +Determining if the function calloc exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_87fd1/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_87fd1.dir/build.make CMakeFiles/cmTC_87fd1.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_87fd1.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=calloc -fPIE -o CMakeFiles/cmTC_87fd1.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘calloc’; expected ‘void *(long unsigned int, long unsigned int)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘calloc’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_87fd1 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_87fd1.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=calloc --coverage -lgcov CMakeFiles/cmTC_87fd1.dir/CheckFunctionExists.c.o -o cmTC_87fd1 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function exit exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_48b3f/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_48b3f.dir/build.make CMakeFiles/cmTC_48b3f.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_48b3f.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=exit -fPIE -o CMakeFiles/cmTC_48b3f.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘exit’; expected ‘void(int)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘exit’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_48b3f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_48b3f.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=exit --coverage -lgcov CMakeFiles/cmTC_48b3f.dir/CheckFunctionExists.c.o -o cmTC_48b3f +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function fprintf exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_9059a/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_9059a.dir/build.make CMakeFiles/cmTC_9059a.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_9059a.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=fprintf -fPIE -o CMakeFiles/cmTC_9059a.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘fprintf’; expected ‘int(void *, const char *, ...)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘fprintf’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_9059a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9059a.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=fprintf --coverage -lgcov CMakeFiles/cmTC_9059a.dir/CheckFunctionExists.c.o -o cmTC_9059a +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function free exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_8adde/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_8adde.dir/build.make CMakeFiles/cmTC_8adde.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_8adde.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=free -fPIE -o CMakeFiles/cmTC_8adde.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘free’; expected ‘void(void *)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘free’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_8adde +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8adde.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=free --coverage -lgcov CMakeFiles/cmTC_8adde.dir/CheckFunctionExists.c.o -o cmTC_8adde +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function longjmp exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_a4042/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_a4042.dir/build.make CMakeFiles/cmTC_a4042.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_a4042.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=longjmp -fPIE -o CMakeFiles/cmTC_a4042.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_a4042 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a4042.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=longjmp --coverage -lgcov CMakeFiles/cmTC_a4042.dir/CheckFunctionExists.c.o -o cmTC_a4042 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function siglongjmp exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_786b6/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_786b6.dir/build.make CMakeFiles/cmTC_786b6.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_786b6.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=siglongjmp -fPIE -o CMakeFiles/cmTC_786b6.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_786b6 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_786b6.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=siglongjmp --coverage -lgcov CMakeFiles/cmTC_786b6.dir/CheckFunctionExists.c.o -o cmTC_786b6 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function malloc exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_bf2e7/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_bf2e7.dir/build.make CMakeFiles/cmTC_bf2e7.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_bf2e7.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=malloc -fPIE -o CMakeFiles/cmTC_bf2e7.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘malloc’; expected ‘void *(long unsigned int)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘malloc’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_bf2e7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf2e7.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=malloc --coverage -lgcov CMakeFiles/cmTC_bf2e7.dir/CheckFunctionExists.c.o -o cmTC_bf2e7 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function memcpy exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_b7f45/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_b7f45.dir/build.make CMakeFiles/cmTC_b7f45.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_b7f45.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=memcpy -fPIE -o CMakeFiles/cmTC_b7f45.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘memcpy’; expected ‘void *(void *, const void *, long unsigned int)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘memcpy’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_b7f45 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7f45.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=memcpy --coverage -lgcov CMakeFiles/cmTC_b7f45.dir/CheckFunctionExists.c.o -o cmTC_b7f45 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function memset exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_a9169/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_a9169.dir/build.make CMakeFiles/cmTC_a9169.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_a9169.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=memset -fPIE -o CMakeFiles/cmTC_a9169.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘memset’; expected ‘void *(void *, int, long unsigned int)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘memset’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_a9169 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a9169.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=memset --coverage -lgcov CMakeFiles/cmTC_a9169.dir/CheckFunctionExists.c.o -o cmTC_a9169 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function printf exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_13388/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_13388.dir/build.make CMakeFiles/cmTC_13388.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_13388.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=printf -fPIE -o CMakeFiles/cmTC_13388.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘printf’; expected ‘int(const char *, ...)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘printf’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_13388 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_13388.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=printf --coverage -lgcov CMakeFiles/cmTC_13388.dir/CheckFunctionExists.c.o -o cmTC_13388 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function setjmp exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_d8718/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_d8718.dir/build.make CMakeFiles/cmTC_d8718.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_d8718.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=setjmp -fPIE -o CMakeFiles/cmTC_d8718.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_d8718 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d8718.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=setjmp --coverage -lgcov CMakeFiles/cmTC_d8718.dir/CheckFunctionExists.c.o -o cmTC_d8718 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function signal exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_9e76c/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_9e76c.dir/build.make CMakeFiles/cmTC_9e76c.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_9e76c.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=signal -fPIE -o CMakeFiles/cmTC_9e76c.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_9e76c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9e76c.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=signal --coverage -lgcov CMakeFiles/cmTC_9e76c.dir/CheckFunctionExists.c.o -o cmTC_9e76c +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function strsignal exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_8ca94/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_8ca94.dir/build.make CMakeFiles/cmTC_8ca94.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_8ca94.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=strsignal -fPIE -o CMakeFiles/cmTC_8ca94.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_8ca94 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8ca94.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=strsignal --coverage -lgcov CMakeFiles/cmTC_8ca94.dir/CheckFunctionExists.c.o -o cmTC_8ca94 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function strcmp exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_f38ea/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_f38ea.dir/build.make CMakeFiles/cmTC_f38ea.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_f38ea.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=strcmp -fPIE -o CMakeFiles/cmTC_f38ea.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘strcmp’; expected ‘int(const char *, const char *)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘strcmp’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_f38ea +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f38ea.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=strcmp --coverage -lgcov CMakeFiles/cmTC_f38ea.dir/CheckFunctionExists.c.o -o cmTC_f38ea +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function clock_gettime exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_8d98e/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_8d98e.dir/build.make CMakeFiles/cmTC_8d98e.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_8d98e.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=clock_gettime -fPIE -o CMakeFiles/cmTC_8d98e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_8d98e +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8d98e.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=clock_gettime --coverage -lgcov CMakeFiles/cmTC_8d98e.dir/CheckFunctionExists.c.o -o cmTC_8d98e +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function sprintf exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_5a24b/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_5a24b.dir/build.make CMakeFiles/cmTC_5a24b.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_5a24b.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=sprintf -fPIE -o CMakeFiles/cmTC_5a24b.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘sprintf’; expected ‘int(char *, const char *, ...)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘sprintf’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_5a24b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5a24b.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=sprintf --coverage -lgcov CMakeFiles/cmTC_5a24b.dir/CheckFunctionExists.c.o -o cmTC_5a24b +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the function vsnprintf exists passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_b21d4/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_b21d4.dir/build.make CMakeFiles/cmTC_b21d4.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_b21d4.dir/CheckFunctionExists.c.o +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=vsnprintf -fPIE -o CMakeFiles/cmTC_b21d4.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +: warning: conflicting types for built-in function ‘vsnprintf’; expected ‘int(char *, long unsigned int, const char *, __va_list_tag *)’ [-Wbuiltin-declaration-mismatch] +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ +/usr/share/cmake-3.16/Modules/CheckFunctionExists.c:1:1: note: ‘vsnprintf’ is declared in header ‘’ + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS +Linking C executable cmTC_b21d4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b21d4.dir/link.txt --verbose=1 +/usr/bin/cc -DCHECK_FUNCTION_EXISTS=vsnprintf --coverage -lgcov CMakeFiles/cmTC_b21d4.dir/CheckFunctionExists.c.o -o cmTC_b21d4 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Performing C SOURCE FILE Test HAVE_GCC_THREAD_LOCAL_STORAGE succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_a88ab/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_a88ab.dir/build.make CMakeFiles/cmTC_a88ab.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_a88ab.dir/src.c.o +/usr/bin/cc -DHAVE_GCC_THREAD_LOCAL_STORAGE -fPIE -o CMakeFiles/cmTC_a88ab.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_a88ab +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a88ab.dir/link.txt --verbose=1 +/usr/bin/cc -DHAVE_GCC_THREAD_LOCAL_STORAGE --coverage -lgcov CMakeFiles/cmTC_a88ab.dir/src.c.o -o cmTC_a88ab +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: + +__thread int tls; + +int main(void) { + return 0; +} +Performing C SOURCE FILE Test HAVE_CLOCK_REALTIME succeeded with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_adb72/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_adb72.dir/build.make CMakeFiles/cmTC_adb72.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_adb72.dir/src.c.o +/usr/bin/cc -DHAVE_CLOCK_REALTIME -fPIE -o CMakeFiles/cmTC_adb72.dir/src.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_adb72 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_adb72.dir/link.txt --verbose=1 +/usr/bin/cc -DHAVE_CLOCK_REALTIME --coverage -lgcov CMakeFiles/cmTC_adb72.dir/src.c.o -o cmTC_adb72 /usr/lib/x86_64-linux-gnu/librt.so +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +Source file was: + +#include + +int main(void) { + struct timespec ts; + + clock_gettime(CLOCK_REALTIME, &ts); + + return 0; +} +Determining size of unsigned short passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_287c7/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_287c7.dir/build.make CMakeFiles/cmTC_287c7.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_287c7.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_287c7.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c +Linking C executable cmTC_287c7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_287c7.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_287c7.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o -o cmTC_287c7 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + + +Determining if the system is big endian passed with the following output: +Change Dir: /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_9cd40/fast && make[1]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +/usr/bin/make -f CMakeFiles/cmTC_9cd40.dir/build.make CMakeFiles/cmTC_9cd40.dir/build +make[2]: Entering directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_9cd40.dir/TestEndianess.c.o +/usr/bin/cc -fPIE -o CMakeFiles/cmTC_9cd40.dir/TestEndianess.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp/TestEndianess.c +Linking C executable cmTC_9cd40 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9cd40.dir/link.txt --verbose=1 +/usr/bin/cc --coverage -lgcov CMakeFiles/cmTC_9cd40.dir/TestEndianess.c.o -o cmTC_9cd40 +make[2]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' +make[1]: Leaving directory '/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/CMakeTmp' + + +TestEndianess.c: +/* A 16 bit integer is required. */ +typedef unsigned short cmakeint16; + +/* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN." + On a big endian machine the characters will be exchanged pairwise. */ +const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000}; + +/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN." + On a little endian machine the characters will be exchanged pairwise. */ +const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000}; + +#ifdef __CLASSIC_C__ +int main(argc, argv) int argc; char *argv[]; +#else +int main(int argc, char *argv[]) +#endif +{ + int require = 0; + require += info_little[argc]; + require += info_big[argc]; + (void)argv; + return require; +} + + diff --git a/tests/unit/build/CMakeFiles/CMakeRuleHashes.txt b/tests/unit/build/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..fa5007e --- /dev/null +++ b/tests/unit/build/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,31 @@ +# Hashes of file build rules. +4755c15275b3465ff7f54cc86d8e699b CMakeFiles/Continuous +234804855383f58c207089e852c4df6f CMakeFiles/ContinuousBuild +5f61f8a3c1c3f131fed14798447c34e0 CMakeFiles/ContinuousConfigure +68c4240ed8067e7a58d9ec96606d40d7 CMakeFiles/ContinuousCoverage +11a13af4e40ac9b4e6bc8fc71003029e CMakeFiles/ContinuousMemCheck +7011ee1f8fd4873541102c8cde62a383 CMakeFiles/ContinuousStart +1d916a57aebea1faa9583dcb5f8b6626 CMakeFiles/ContinuousSubmit +305cd16040b748eff2554107964c004b CMakeFiles/ContinuousTest +d8f1b00d7e9e698aee7aedc62a941a41 CMakeFiles/ContinuousUpdate +8ae9788e639a65a9bafa0c79397fc3d7 CMakeFiles/Experimental +4f666eaf6b8ccdb501c71f18358d76d3 CMakeFiles/ExperimentalBuild +be64ce5828fe24fea5e75db267d43767 CMakeFiles/ExperimentalConfigure +c00ddbf1a5064e99bd1c004bb1eaa81e CMakeFiles/ExperimentalCoverage +ddef60be4a5c35da9f26717b85bbb9c4 CMakeFiles/ExperimentalMemCheck +598520994eb706ccee9f48bd43ac8ff4 CMakeFiles/ExperimentalStart +aab53f774ee6ab34b74907542976de04 CMakeFiles/ExperimentalSubmit +eec188f43554a725b58a81d329c4deb4 CMakeFiles/ExperimentalTest +f1a75d2148d64ab991129d1b31b54dff CMakeFiles/ExperimentalUpdate +58d421fc55b33a898022f7bb4b72018a CMakeFiles/Nightly +ec771c3a9720917bc38e8cff130c8690 CMakeFiles/NightlyBuild +1084bf2d6e443225665114796005d5f9 CMakeFiles/NightlyConfigure +84aa68f3489e0f45df17b9cde8292d80 CMakeFiles/NightlyCoverage +e5bd6a17cfe4cd35db1c155eaaf29bea CMakeFiles/NightlyMemCheck +06771389174f8e32fe7875107a8896af CMakeFiles/NightlyMemoryCheck +bba06aaae0904b4c667f48814a35177a CMakeFiles/NightlyStart +88038e1d0c5fc8d973f51f7217fd0b15 CMakeFiles/NightlySubmit +4426f7cd8f1ee0f9b2649e98916a2eaf CMakeFiles/NightlyTest +9d2cd5f76be6898497f6cecb641d8537 CMakeFiles/NightlyUpdate +c431900d656c8296c618d0bf85e30906 _deps/cmocka-build/CMakeFiles/dist +9a50455849641a4d852d19512cca575d _deps/cmocka-build/doc/CMakeFiles/docs diff --git a/tests/unit/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.bin b/tests/unit/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.bin new file mode 100755 index 0000000..df4ac84 Binary files /dev/null and b/tests/unit/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.bin differ diff --git a/tests/unit/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c b/tests/unit/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c new file mode 100644 index 0000000..9554bbc --- /dev/null +++ b/tests/unit/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c @@ -0,0 +1,46 @@ +#include +#include +#include + + +#undef KEY +#if defined(__i386) +# define KEY '_','_','i','3','8','6' +#elif defined(__x86_64) +# define KEY '_','_','x','8','6','_','6','4' +#elif defined(__ppc__) +# define KEY '_','_','p','p','c','_','_' +#elif defined(__ppc64__) +# define KEY '_','_','p','p','c','6','4','_','_' +#elif defined(__aarch64__) +# define KEY '_','_','a','a','r','c','h','6','4','_','_' +#elif defined(__ARM_ARCH_7A__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' +#elif defined(__ARM_ARCH_7S__) +# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' +#endif + +#define SIZE (sizeof(unsigned short)) +static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', + ('0' + ((SIZE / 10000)%10)), + ('0' + ((SIZE / 1000)%10)), + ('0' + ((SIZE / 100)%10)), + ('0' + ((SIZE / 10)%10)), + ('0' + (SIZE % 10)), + ']', +#ifdef KEY + ' ','k','e','y','[', KEY, ']', +#endif + '\0'}; + +#ifdef __CLASSIC_C__ +int main(argc, argv) int argc; char *argv[]; +#else +int main(int argc, char *argv[]) +#endif +{ + int require = 0; + require += info_size[argc]; + (void)argv; + return require; +} diff --git a/tests/unit/build/CMakeFiles/Continuous.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/Continuous.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Continuous.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/Continuous.dir/build.make b/tests/unit/build/CMakeFiles/Continuous.dir/build.make new file mode 100644 index 0000000..2e80bad --- /dev/null +++ b/tests/unit/build/CMakeFiles/Continuous.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for Continuous. + +# Include the progress variables for this target. +include CMakeFiles/Continuous.dir/progress.make + +CMakeFiles/Continuous: + /usr/bin/ctest -D Continuous + +Continuous: CMakeFiles/Continuous +Continuous: CMakeFiles/Continuous.dir/build.make + +.PHONY : Continuous + +# Rule to build all files generated by this target. +CMakeFiles/Continuous.dir/build: Continuous + +.PHONY : CMakeFiles/Continuous.dir/build + +CMakeFiles/Continuous.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Continuous.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Continuous.dir/clean + +CMakeFiles/Continuous.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/Continuous.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/Continuous.dir/depend + diff --git a/tests/unit/build/CMakeFiles/Continuous.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/Continuous.dir/cmake_clean.cmake new file mode 100644 index 0000000..7e1791c --- /dev/null +++ b/tests/unit/build/CMakeFiles/Continuous.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Continuous" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Continuous.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/Continuous.dir/progress.make b/tests/unit/build/CMakeFiles/Continuous.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Continuous.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousBuild.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/build.make new file mode 100644 index 0000000..7d7de85 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousBuild. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousBuild.dir/progress.make + +CMakeFiles/ContinuousBuild: + /usr/bin/ctest -D ContinuousBuild + +ContinuousBuild: CMakeFiles/ContinuousBuild +ContinuousBuild: CMakeFiles/ContinuousBuild.dir/build.make + +.PHONY : ContinuousBuild + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousBuild.dir/build: ContinuousBuild + +.PHONY : CMakeFiles/ContinuousBuild.dir/build + +CMakeFiles/ContinuousBuild.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousBuild.dir/clean + +CMakeFiles/ContinuousBuild.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousBuild.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake new file mode 100644 index 0000000..afccd13 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousBuild" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousBuild.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousBuild.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousBuild.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/build.make new file mode 100644 index 0000000..ff6beeb --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousConfigure. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousConfigure.dir/progress.make + +CMakeFiles/ContinuousConfigure: + /usr/bin/ctest -D ContinuousConfigure + +ContinuousConfigure: CMakeFiles/ContinuousConfigure +ContinuousConfigure: CMakeFiles/ContinuousConfigure.dir/build.make + +.PHONY : ContinuousConfigure + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousConfigure.dir/build: ContinuousConfigure + +.PHONY : CMakeFiles/ContinuousConfigure.dir/build + +CMakeFiles/ContinuousConfigure.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousConfigure.dir/clean + +CMakeFiles/ContinuousConfigure.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousConfigure.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake new file mode 100644 index 0000000..eb51e20 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousConfigure" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousConfigure.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousConfigure.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/build.make new file mode 100644 index 0000000..0f152f0 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousCoverage. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousCoverage.dir/progress.make + +CMakeFiles/ContinuousCoverage: + /usr/bin/ctest -D ContinuousCoverage + +ContinuousCoverage: CMakeFiles/ContinuousCoverage +ContinuousCoverage: CMakeFiles/ContinuousCoverage.dir/build.make + +.PHONY : ContinuousCoverage + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousCoverage.dir/build: ContinuousCoverage + +.PHONY : CMakeFiles/ContinuousCoverage.dir/build + +CMakeFiles/ContinuousCoverage.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousCoverage.dir/clean + +CMakeFiles/ContinuousCoverage.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousCoverage.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake new file mode 100644 index 0000000..6115f89 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousCoverage" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousCoverage.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousCoverage.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/build.make new file mode 100644 index 0000000..db80c5c --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousMemCheck. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousMemCheck.dir/progress.make + +CMakeFiles/ContinuousMemCheck: + /usr/bin/ctest -D ContinuousMemCheck + +ContinuousMemCheck: CMakeFiles/ContinuousMemCheck +ContinuousMemCheck: CMakeFiles/ContinuousMemCheck.dir/build.make + +.PHONY : ContinuousMemCheck + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousMemCheck.dir/build: ContinuousMemCheck + +.PHONY : CMakeFiles/ContinuousMemCheck.dir/build + +CMakeFiles/ContinuousMemCheck.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousMemCheck.dir/clean + +CMakeFiles/ContinuousMemCheck.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousMemCheck.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake new file mode 100644 index 0000000..ad69e7f --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousMemCheck" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousMemCheck.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousStart.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousStart.dir/build.make new file mode 100644 index 0000000..0c7f966 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousStart.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousStart. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousStart.dir/progress.make + +CMakeFiles/ContinuousStart: + /usr/bin/ctest -D ContinuousStart + +ContinuousStart: CMakeFiles/ContinuousStart +ContinuousStart: CMakeFiles/ContinuousStart.dir/build.make + +.PHONY : ContinuousStart + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousStart.dir/build: ContinuousStart + +.PHONY : CMakeFiles/ContinuousStart.dir/build + +CMakeFiles/ContinuousStart.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousStart.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousStart.dir/clean + +CMakeFiles/ContinuousStart.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousStart.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake new file mode 100644 index 0000000..13d5b2b --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousStart" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousStart.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousStart.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousStart.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousStart.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/build.make new file mode 100644 index 0000000..1966621 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousSubmit. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousSubmit.dir/progress.make + +CMakeFiles/ContinuousSubmit: + /usr/bin/ctest -D ContinuousSubmit + +ContinuousSubmit: CMakeFiles/ContinuousSubmit +ContinuousSubmit: CMakeFiles/ContinuousSubmit.dir/build.make + +.PHONY : ContinuousSubmit + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousSubmit.dir/build: ContinuousSubmit + +.PHONY : CMakeFiles/ContinuousSubmit.dir/build + +CMakeFiles/ContinuousSubmit.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousSubmit.dir/clean + +CMakeFiles/ContinuousSubmit.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousSubmit.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake new file mode 100644 index 0000000..cc66ba3 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousSubmit" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousSubmit.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousSubmit.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousTest.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousTest.dir/build.make new file mode 100644 index 0000000..a455fbf --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousTest.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousTest. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousTest.dir/progress.make + +CMakeFiles/ContinuousTest: + /usr/bin/ctest -D ContinuousTest + +ContinuousTest: CMakeFiles/ContinuousTest +ContinuousTest: CMakeFiles/ContinuousTest.dir/build.make + +.PHONY : ContinuousTest + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousTest.dir/build: ContinuousTest + +.PHONY : CMakeFiles/ContinuousTest.dir/build + +CMakeFiles/ContinuousTest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousTest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousTest.dir/clean + +CMakeFiles/ContinuousTest.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousTest.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake new file mode 100644 index 0000000..ff11d48 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousTest" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousTest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousTest.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousTest.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousTest.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/build.make b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/build.make new file mode 100644 index 0000000..753a1d9 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ContinuousUpdate. + +# Include the progress variables for this target. +include CMakeFiles/ContinuousUpdate.dir/progress.make + +CMakeFiles/ContinuousUpdate: + /usr/bin/ctest -D ContinuousUpdate + +ContinuousUpdate: CMakeFiles/ContinuousUpdate +ContinuousUpdate: CMakeFiles/ContinuousUpdate.dir/build.make + +.PHONY : ContinuousUpdate + +# Rule to build all files generated by this target. +CMakeFiles/ContinuousUpdate.dir/build: ContinuousUpdate + +.PHONY : CMakeFiles/ContinuousUpdate.dir/build + +CMakeFiles/ContinuousUpdate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ContinuousUpdate.dir/clean + +CMakeFiles/ContinuousUpdate.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ContinuousUpdate.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake new file mode 100644 index 0000000..7a77a24 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ContinuousUpdate" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ContinuousUpdate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/progress.make b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ContinuousUpdate.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/Experimental.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/Experimental.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Experimental.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/Experimental.dir/build.make b/tests/unit/build/CMakeFiles/Experimental.dir/build.make new file mode 100644 index 0000000..39f5fd6 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Experimental.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for Experimental. + +# Include the progress variables for this target. +include CMakeFiles/Experimental.dir/progress.make + +CMakeFiles/Experimental: + /usr/bin/ctest -D Experimental + +Experimental: CMakeFiles/Experimental +Experimental: CMakeFiles/Experimental.dir/build.make + +.PHONY : Experimental + +# Rule to build all files generated by this target. +CMakeFiles/Experimental.dir/build: Experimental + +.PHONY : CMakeFiles/Experimental.dir/build + +CMakeFiles/Experimental.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Experimental.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Experimental.dir/clean + +CMakeFiles/Experimental.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/Experimental.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/Experimental.dir/depend + diff --git a/tests/unit/build/CMakeFiles/Experimental.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/Experimental.dir/cmake_clean.cmake new file mode 100644 index 0000000..799e708 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Experimental.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Experimental" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Experimental.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/Experimental.dir/progress.make b/tests/unit/build/CMakeFiles/Experimental.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Experimental.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/build.make new file mode 100644 index 0000000..f155026 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalBuild. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalBuild.dir/progress.make + +CMakeFiles/ExperimentalBuild: + /usr/bin/ctest -D ExperimentalBuild + +ExperimentalBuild: CMakeFiles/ExperimentalBuild +ExperimentalBuild: CMakeFiles/ExperimentalBuild.dir/build.make + +.PHONY : ExperimentalBuild + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalBuild.dir/build: ExperimentalBuild + +.PHONY : CMakeFiles/ExperimentalBuild.dir/build + +CMakeFiles/ExperimentalBuild.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalBuild.dir/clean + +CMakeFiles/ExperimentalBuild.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalBuild.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake new file mode 100644 index 0000000..3354e3f --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalBuild" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalBuild.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalBuild.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/build.make new file mode 100644 index 0000000..1478e1a --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalConfigure. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalConfigure.dir/progress.make + +CMakeFiles/ExperimentalConfigure: + /usr/bin/ctest -D ExperimentalConfigure + +ExperimentalConfigure: CMakeFiles/ExperimentalConfigure +ExperimentalConfigure: CMakeFiles/ExperimentalConfigure.dir/build.make + +.PHONY : ExperimentalConfigure + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalConfigure.dir/build: ExperimentalConfigure + +.PHONY : CMakeFiles/ExperimentalConfigure.dir/build + +CMakeFiles/ExperimentalConfigure.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalConfigure.dir/clean + +CMakeFiles/ExperimentalConfigure.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalConfigure.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake new file mode 100644 index 0000000..69e4a71 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalConfigure" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalConfigure.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/build.make new file mode 100644 index 0000000..dd6d226 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalCoverage. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalCoverage.dir/progress.make + +CMakeFiles/ExperimentalCoverage: + /usr/bin/ctest -D ExperimentalCoverage + +ExperimentalCoverage: CMakeFiles/ExperimentalCoverage +ExperimentalCoverage: CMakeFiles/ExperimentalCoverage.dir/build.make + +.PHONY : ExperimentalCoverage + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalCoverage.dir/build: ExperimentalCoverage + +.PHONY : CMakeFiles/ExperimentalCoverage.dir/build + +CMakeFiles/ExperimentalCoverage.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalCoverage.dir/clean + +CMakeFiles/ExperimentalCoverage.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalCoverage.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake new file mode 100644 index 0000000..b8d6597 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalCoverage" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalCoverage.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/build.make new file mode 100644 index 0000000..095e686 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalMemCheck. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalMemCheck.dir/progress.make + +CMakeFiles/ExperimentalMemCheck: + /usr/bin/ctest -D ExperimentalMemCheck + +ExperimentalMemCheck: CMakeFiles/ExperimentalMemCheck +ExperimentalMemCheck: CMakeFiles/ExperimentalMemCheck.dir/build.make + +.PHONY : ExperimentalMemCheck + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalMemCheck.dir/build: ExperimentalMemCheck + +.PHONY : CMakeFiles/ExperimentalMemCheck.dir/build + +CMakeFiles/ExperimentalMemCheck.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalMemCheck.dir/clean + +CMakeFiles/ExperimentalMemCheck.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalMemCheck.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake new file mode 100644 index 0000000..ed3f7bc --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalMemCheck" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalMemCheck.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalStart.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/build.make new file mode 100644 index 0000000..b997ad4 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalStart. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalStart.dir/progress.make + +CMakeFiles/ExperimentalStart: + /usr/bin/ctest -D ExperimentalStart + +ExperimentalStart: CMakeFiles/ExperimentalStart +ExperimentalStart: CMakeFiles/ExperimentalStart.dir/build.make + +.PHONY : ExperimentalStart + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalStart.dir/build: ExperimentalStart + +.PHONY : CMakeFiles/ExperimentalStart.dir/build + +CMakeFiles/ExperimentalStart.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalStart.dir/clean + +CMakeFiles/ExperimentalStart.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalStart.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake new file mode 100644 index 0000000..4e2736b --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalStart" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalStart.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalStart.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalStart.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/build.make new file mode 100644 index 0000000..409b234 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalSubmit. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalSubmit.dir/progress.make + +CMakeFiles/ExperimentalSubmit: + /usr/bin/ctest -D ExperimentalSubmit + +ExperimentalSubmit: CMakeFiles/ExperimentalSubmit +ExperimentalSubmit: CMakeFiles/ExperimentalSubmit.dir/build.make + +.PHONY : ExperimentalSubmit + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalSubmit.dir/build: ExperimentalSubmit + +.PHONY : CMakeFiles/ExperimentalSubmit.dir/build + +CMakeFiles/ExperimentalSubmit.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalSubmit.dir/clean + +CMakeFiles/ExperimentalSubmit.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalSubmit.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake new file mode 100644 index 0000000..d130e45 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalSubmit" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalSubmit.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalTest.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/build.make new file mode 100644 index 0000000..7bc13bf --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalTest. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalTest.dir/progress.make + +CMakeFiles/ExperimentalTest: + /usr/bin/ctest -D ExperimentalTest + +ExperimentalTest: CMakeFiles/ExperimentalTest +ExperimentalTest: CMakeFiles/ExperimentalTest.dir/build.make + +.PHONY : ExperimentalTest + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalTest.dir/build: ExperimentalTest + +.PHONY : CMakeFiles/ExperimentalTest.dir/build + +CMakeFiles/ExperimentalTest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalTest.dir/clean + +CMakeFiles/ExperimentalTest.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalTest.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake new file mode 100644 index 0000000..4348aa3 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalTest" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalTest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalTest.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalTest.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/build.make b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/build.make new file mode 100644 index 0000000..3ba8ffd --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for ExperimentalUpdate. + +# Include the progress variables for this target. +include CMakeFiles/ExperimentalUpdate.dir/progress.make + +CMakeFiles/ExperimentalUpdate: + /usr/bin/ctest -D ExperimentalUpdate + +ExperimentalUpdate: CMakeFiles/ExperimentalUpdate +ExperimentalUpdate: CMakeFiles/ExperimentalUpdate.dir/build.make + +.PHONY : ExperimentalUpdate + +# Rule to build all files generated by this target. +CMakeFiles/ExperimentalUpdate.dir/build: ExperimentalUpdate + +.PHONY : CMakeFiles/ExperimentalUpdate.dir/build + +CMakeFiles/ExperimentalUpdate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/ExperimentalUpdate.dir/clean + +CMakeFiles/ExperimentalUpdate.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/ExperimentalUpdate.dir/depend + diff --git a/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake new file mode 100644 index 0000000..2319049 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/ExperimentalUpdate" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/ExperimentalUpdate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/progress.make b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/Makefile.cmake b/tests/unit/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..fc49e97 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,134 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeDoxyfile.in" + "CMakeDoxygenDefaults.cmake" + "CMakeFiles/3.16.3/CMakeCCompiler.cmake" + "CMakeFiles/3.16.3/CMakeSystem.cmake" + "_deps/cmocka-src/CMakeLists.txt" + "_deps/cmocka-src/CPackConfig.cmake" + "_deps/cmocka-src/CTestConfig.cmake" + "_deps/cmocka-src/CompilerChecks.cmake" + "_deps/cmocka-src/ConfigureChecks.cmake" + "_deps/cmocka-src/DefineOptions.cmake" + "_deps/cmocka-src/cmake/Modules/AddCCompilerFlag.cmake" + "_deps/cmocka-src/cmake/Modules/AddCMockaTest.cmake" + "_deps/cmocka-src/cmake/Modules/CheckCCompilerFlagSSP.cmake" + "_deps/cmocka-src/cmake/Modules/DefineCMakeDefaults.cmake" + "_deps/cmocka-src/cmake/Modules/DefineCompilerFlags.cmake" + "_deps/cmocka-src/cmake/Modules/DefinePlatformDefaults.cmake" + "_deps/cmocka-src/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake" + "_deps/cmocka-src/cmocka-config.cmake.in" + "_deps/cmocka-src/cmocka.pc.cmake" + "_deps/cmocka-src/config.h.cmake" + "_deps/cmocka-src/doc/CMakeLists.txt" + "_deps/cmocka-src/include/CMakeLists.txt" + "_deps/cmocka-src/src/CMakeLists.txt" + "/usr/lib/x86_64-linux-gnu/cmake/cmocka/cmocka-config-version.cmake" + "/usr/lib/x86_64-linux-gnu/cmake/cmocka/cmocka-config.cmake" + "/usr/share/cmake-3.16/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in" + "/usr/share/cmake-3.16/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake-3.16/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.16/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakePackageConfigHelpers.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.16/Modules/CPack.cmake" + "/usr/share/cmake-3.16/Modules/CPackComponent.cmake" + "/usr/share/cmake-3.16/Modules/CTest.cmake" + "/usr/share/cmake-3.16/Modules/CTestTargets.cmake" + "/usr/share/cmake-3.16/Modules/CTestUseLaunchers.cmake" + "/usr/share/cmake-3.16/Modules/CheckCCompilerFlag.cmake" + "/usr/share/cmake-3.16/Modules/CheckCSourceCompiles.cmake" + "/usr/share/cmake-3.16/Modules/CheckCXXSourceCompiles.cmake" + "/usr/share/cmake-3.16/Modules/CheckFunctionExists.cmake" + "/usr/share/cmake-3.16/Modules/CheckIncludeFile.cmake" + "/usr/share/cmake-3.16/Modules/CheckIncludeFileCXX.cmake" + "/usr/share/cmake-3.16/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.16/Modules/CheckStructHasMember.cmake" + "/usr/share/cmake-3.16/Modules/CheckSymbolExists.cmake" + "/usr/share/cmake-3.16/Modules/CheckTypeSize.cmake" + "/usr/share/cmake-3.16/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.16/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.16/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.16/Modules/DartConfiguration.tcl.in" + "/usr/share/cmake-3.16/Modules/FetchContent.cmake" + "/usr/share/cmake-3.16/Modules/FetchContent/CMakeLists.cmake.in" + "/usr/share/cmake-3.16/Modules/FindDoxygen.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.16/Modules/GNUInstallDirs.cmake" + "/usr/share/cmake-3.16/Modules/Internal/CMakeCheckCompilerFlag.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.16/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-3.16/Modules/TestBigEndian.cmake" + "/usr/share/cmake-3.16/Modules/WriteBasicConfigVersionFile.cmake" + "/usr/share/cmake-3.16/Templates/CPackConfig.cmake.in" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "DartConfiguration.tcl" + "_deps/cmocka-subbuild/CMakeLists.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/cmocka-build/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/cmocka-build/include/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/cmocka-build/src/CMakeFiles/CMakeDirectoryInformation.cmake" + "_deps/cmocka-build/doc/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake" + "CMakeFiles/NightlyTest.dir/DependInfo.cmake" + "CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake" + "CMakeFiles/ContinuousBuild.dir/DependInfo.cmake" + "CMakeFiles/NightlyConfigure.dir/DependInfo.cmake" + "CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalTest.dir/DependInfo.cmake" + "CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake" + "CMakeFiles/NightlyUpdate.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake" + "CMakeFiles/Experimental.dir/DependInfo.cmake" + "CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake" + "CMakeFiles/Continuous.dir/DependInfo.cmake" + "CMakeFiles/test_utils.dir/DependInfo.cmake" + "CMakeFiles/utils.dir/DependInfo.cmake" + "CMakeFiles/Nightly.dir/DependInfo.cmake" + "CMakeFiles/NightlySubmit.dir/DependInfo.cmake" + "CMakeFiles/NightlyStart.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake" + "CMakeFiles/NightlyCoverage.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalStart.dir/DependInfo.cmake" + "CMakeFiles/NightlyBuild.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake" + "CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake" + "CMakeFiles/ContinuousStart.dir/DependInfo.cmake" + "CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake" + "CMakeFiles/ContinuousTest.dir/DependInfo.cmake" + "CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake" + "_deps/cmocka-build/CMakeFiles/dist.dir/DependInfo.cmake" + "_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/DependInfo.cmake" + "_deps/cmocka-build/src/CMakeFiles/cmocka.dir/DependInfo.cmake" + "_deps/cmocka-build/doc/CMakeFiles/docs.dir/DependInfo.cmake" + ) diff --git a/tests/unit/build/CMakeFiles/Makefile2 b/tests/unit/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..b65ccbd --- /dev/null +++ b/tests/unit/build/CMakeFiles/Makefile2 @@ -0,0 +1,1111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/test_utils.dir/all +all: CMakeFiles/utils.dir/all +all: _deps/cmocka-build/all + +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: _deps/cmocka-build/preinstall + +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/NightlyMemCheck.dir/clean +clean: CMakeFiles/NightlyTest.dir/clean +clean: CMakeFiles/ContinuousConfigure.dir/clean +clean: CMakeFiles/ContinuousBuild.dir/clean +clean: CMakeFiles/NightlyConfigure.dir/clean +clean: CMakeFiles/NightlyMemoryCheck.dir/clean +clean: CMakeFiles/ExperimentalTest.dir/clean +clean: CMakeFiles/ContinuousUpdate.dir/clean +clean: CMakeFiles/NightlyUpdate.dir/clean +clean: CMakeFiles/ExperimentalMemCheck.dir/clean +clean: CMakeFiles/ExperimentalSubmit.dir/clean +clean: CMakeFiles/Experimental.dir/clean +clean: CMakeFiles/ContinuousCoverage.dir/clean +clean: CMakeFiles/ExperimentalConfigure.dir/clean +clean: CMakeFiles/Continuous.dir/clean +clean: CMakeFiles/test_utils.dir/clean +clean: CMakeFiles/utils.dir/clean +clean: CMakeFiles/Nightly.dir/clean +clean: CMakeFiles/NightlySubmit.dir/clean +clean: CMakeFiles/NightlyStart.dir/clean +clean: CMakeFiles/ExperimentalCoverage.dir/clean +clean: CMakeFiles/NightlyCoverage.dir/clean +clean: CMakeFiles/ExperimentalStart.dir/clean +clean: CMakeFiles/NightlyBuild.dir/clean +clean: CMakeFiles/ExperimentalBuild.dir/clean +clean: CMakeFiles/ExperimentalUpdate.dir/clean +clean: CMakeFiles/ContinuousStart.dir/clean +clean: CMakeFiles/ContinuousMemCheck.dir/clean +clean: CMakeFiles/ContinuousTest.dir/clean +clean: CMakeFiles/ContinuousSubmit.dir/clean +clean: _deps/cmocka-build/clean + +.PHONY : clean + +#============================================================================= +# Directory level rules for directory _deps/cmocka-build + +# Recursive "all" directory target. +_deps/cmocka-build/all: _deps/cmocka-build/include/all +_deps/cmocka-build/all: _deps/cmocka-build/src/all +_deps/cmocka-build/all: _deps/cmocka-build/doc/all + +.PHONY : _deps/cmocka-build/all + +# Recursive "preinstall" directory target. +_deps/cmocka-build/preinstall: _deps/cmocka-build/include/preinstall +_deps/cmocka-build/preinstall: _deps/cmocka-build/src/preinstall +_deps/cmocka-build/preinstall: _deps/cmocka-build/doc/preinstall + +.PHONY : _deps/cmocka-build/preinstall + +# Recursive "clean" directory target. +_deps/cmocka-build/clean: _deps/cmocka-build/CMakeFiles/dist.dir/clean +_deps/cmocka-build/clean: _deps/cmocka-build/include/clean +_deps/cmocka-build/clean: _deps/cmocka-build/src/clean +_deps/cmocka-build/clean: _deps/cmocka-build/doc/clean + +.PHONY : _deps/cmocka-build/clean + +#============================================================================= +# Directory level rules for directory _deps/cmocka-build/doc + +# Recursive "all" directory target. +_deps/cmocka-build/doc/all: + +.PHONY : _deps/cmocka-build/doc/all + +# Recursive "preinstall" directory target. +_deps/cmocka-build/doc/preinstall: + +.PHONY : _deps/cmocka-build/doc/preinstall + +# Recursive "clean" directory target. +_deps/cmocka-build/doc/clean: _deps/cmocka-build/doc/CMakeFiles/docs.dir/clean + $(CMAKE_COMMAND) -P _deps/cmocka-build/doc/CMakeFiles/cmake_directory_clean.cmake +.PHONY : _deps/cmocka-build/doc/clean + +#============================================================================= +# Directory level rules for directory _deps/cmocka-build/include + +# Recursive "all" directory target. +_deps/cmocka-build/include/all: + +.PHONY : _deps/cmocka-build/include/all + +# Recursive "preinstall" directory target. +_deps/cmocka-build/include/preinstall: + +.PHONY : _deps/cmocka-build/include/preinstall + +# Recursive "clean" directory target. +_deps/cmocka-build/include/clean: + +.PHONY : _deps/cmocka-build/include/clean + +#============================================================================= +# Directory level rules for directory _deps/cmocka-build/src + +# Recursive "all" directory target. +_deps/cmocka-build/src/all: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/all +_deps/cmocka-build/src/all: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/all + +.PHONY : _deps/cmocka-build/src/all + +# Recursive "preinstall" directory target. +_deps/cmocka-build/src/preinstall: + +.PHONY : _deps/cmocka-build/src/preinstall + +# Recursive "clean" directory target. +_deps/cmocka-build/src/clean: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/clean +_deps/cmocka-build/src/clean: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/clean + +.PHONY : _deps/cmocka-build/src/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyMemCheck.dir + +# All Build rule for target. +CMakeFiles/NightlyMemCheck.dir/all: + $(MAKE) -f CMakeFiles/NightlyMemCheck.dir/build.make CMakeFiles/NightlyMemCheck.dir/depend + $(MAKE) -f CMakeFiles/NightlyMemCheck.dir/build.make CMakeFiles/NightlyMemCheck.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyMemCheck" +.PHONY : CMakeFiles/NightlyMemCheck.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyMemCheck.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyMemCheck.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyMemCheck.dir/rule + +# Convenience name for target. +NightlyMemCheck: CMakeFiles/NightlyMemCheck.dir/rule + +.PHONY : NightlyMemCheck + +# clean rule for target. +CMakeFiles/NightlyMemCheck.dir/clean: + $(MAKE) -f CMakeFiles/NightlyMemCheck.dir/build.make CMakeFiles/NightlyMemCheck.dir/clean +.PHONY : CMakeFiles/NightlyMemCheck.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyTest.dir + +# All Build rule for target. +CMakeFiles/NightlyTest.dir/all: + $(MAKE) -f CMakeFiles/NightlyTest.dir/build.make CMakeFiles/NightlyTest.dir/depend + $(MAKE) -f CMakeFiles/NightlyTest.dir/build.make CMakeFiles/NightlyTest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyTest" +.PHONY : CMakeFiles/NightlyTest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyTest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyTest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyTest.dir/rule + +# Convenience name for target. +NightlyTest: CMakeFiles/NightlyTest.dir/rule + +.PHONY : NightlyTest + +# clean rule for target. +CMakeFiles/NightlyTest.dir/clean: + $(MAKE) -f CMakeFiles/NightlyTest.dir/build.make CMakeFiles/NightlyTest.dir/clean +.PHONY : CMakeFiles/NightlyTest.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousConfigure.dir + +# All Build rule for target. +CMakeFiles/ContinuousConfigure.dir/all: + $(MAKE) -f CMakeFiles/ContinuousConfigure.dir/build.make CMakeFiles/ContinuousConfigure.dir/depend + $(MAKE) -f CMakeFiles/ContinuousConfigure.dir/build.make CMakeFiles/ContinuousConfigure.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousConfigure" +.PHONY : CMakeFiles/ContinuousConfigure.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousConfigure.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousConfigure.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousConfigure.dir/rule + +# Convenience name for target. +ContinuousConfigure: CMakeFiles/ContinuousConfigure.dir/rule + +.PHONY : ContinuousConfigure + +# clean rule for target. +CMakeFiles/ContinuousConfigure.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousConfigure.dir/build.make CMakeFiles/ContinuousConfigure.dir/clean +.PHONY : CMakeFiles/ContinuousConfigure.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousBuild.dir + +# All Build rule for target. +CMakeFiles/ContinuousBuild.dir/all: + $(MAKE) -f CMakeFiles/ContinuousBuild.dir/build.make CMakeFiles/ContinuousBuild.dir/depend + $(MAKE) -f CMakeFiles/ContinuousBuild.dir/build.make CMakeFiles/ContinuousBuild.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousBuild" +.PHONY : CMakeFiles/ContinuousBuild.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousBuild.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousBuild.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousBuild.dir/rule + +# Convenience name for target. +ContinuousBuild: CMakeFiles/ContinuousBuild.dir/rule + +.PHONY : ContinuousBuild + +# clean rule for target. +CMakeFiles/ContinuousBuild.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousBuild.dir/build.make CMakeFiles/ContinuousBuild.dir/clean +.PHONY : CMakeFiles/ContinuousBuild.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyConfigure.dir + +# All Build rule for target. +CMakeFiles/NightlyConfigure.dir/all: + $(MAKE) -f CMakeFiles/NightlyConfigure.dir/build.make CMakeFiles/NightlyConfigure.dir/depend + $(MAKE) -f CMakeFiles/NightlyConfigure.dir/build.make CMakeFiles/NightlyConfigure.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyConfigure" +.PHONY : CMakeFiles/NightlyConfigure.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyConfigure.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyConfigure.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyConfigure.dir/rule + +# Convenience name for target. +NightlyConfigure: CMakeFiles/NightlyConfigure.dir/rule + +.PHONY : NightlyConfigure + +# clean rule for target. +CMakeFiles/NightlyConfigure.dir/clean: + $(MAKE) -f CMakeFiles/NightlyConfigure.dir/build.make CMakeFiles/NightlyConfigure.dir/clean +.PHONY : CMakeFiles/NightlyConfigure.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyMemoryCheck.dir + +# All Build rule for target. +CMakeFiles/NightlyMemoryCheck.dir/all: + $(MAKE) -f CMakeFiles/NightlyMemoryCheck.dir/build.make CMakeFiles/NightlyMemoryCheck.dir/depend + $(MAKE) -f CMakeFiles/NightlyMemoryCheck.dir/build.make CMakeFiles/NightlyMemoryCheck.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyMemoryCheck" +.PHONY : CMakeFiles/NightlyMemoryCheck.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyMemoryCheck.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyMemoryCheck.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyMemoryCheck.dir/rule + +# Convenience name for target. +NightlyMemoryCheck: CMakeFiles/NightlyMemoryCheck.dir/rule + +.PHONY : NightlyMemoryCheck + +# clean rule for target. +CMakeFiles/NightlyMemoryCheck.dir/clean: + $(MAKE) -f CMakeFiles/NightlyMemoryCheck.dir/build.make CMakeFiles/NightlyMemoryCheck.dir/clean +.PHONY : CMakeFiles/NightlyMemoryCheck.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalTest.dir + +# All Build rule for target. +CMakeFiles/ExperimentalTest.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalTest.dir/build.make CMakeFiles/ExperimentalTest.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalTest.dir/build.make CMakeFiles/ExperimentalTest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalTest" +.PHONY : CMakeFiles/ExperimentalTest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalTest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalTest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalTest.dir/rule + +# Convenience name for target. +ExperimentalTest: CMakeFiles/ExperimentalTest.dir/rule + +.PHONY : ExperimentalTest + +# clean rule for target. +CMakeFiles/ExperimentalTest.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalTest.dir/build.make CMakeFiles/ExperimentalTest.dir/clean +.PHONY : CMakeFiles/ExperimentalTest.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousUpdate.dir + +# All Build rule for target. +CMakeFiles/ContinuousUpdate.dir/all: + $(MAKE) -f CMakeFiles/ContinuousUpdate.dir/build.make CMakeFiles/ContinuousUpdate.dir/depend + $(MAKE) -f CMakeFiles/ContinuousUpdate.dir/build.make CMakeFiles/ContinuousUpdate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousUpdate" +.PHONY : CMakeFiles/ContinuousUpdate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousUpdate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousUpdate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousUpdate.dir/rule + +# Convenience name for target. +ContinuousUpdate: CMakeFiles/ContinuousUpdate.dir/rule + +.PHONY : ContinuousUpdate + +# clean rule for target. +CMakeFiles/ContinuousUpdate.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousUpdate.dir/build.make CMakeFiles/ContinuousUpdate.dir/clean +.PHONY : CMakeFiles/ContinuousUpdate.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyUpdate.dir + +# All Build rule for target. +CMakeFiles/NightlyUpdate.dir/all: + $(MAKE) -f CMakeFiles/NightlyUpdate.dir/build.make CMakeFiles/NightlyUpdate.dir/depend + $(MAKE) -f CMakeFiles/NightlyUpdate.dir/build.make CMakeFiles/NightlyUpdate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyUpdate" +.PHONY : CMakeFiles/NightlyUpdate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyUpdate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyUpdate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyUpdate.dir/rule + +# Convenience name for target. +NightlyUpdate: CMakeFiles/NightlyUpdate.dir/rule + +.PHONY : NightlyUpdate + +# clean rule for target. +CMakeFiles/NightlyUpdate.dir/clean: + $(MAKE) -f CMakeFiles/NightlyUpdate.dir/build.make CMakeFiles/NightlyUpdate.dir/clean +.PHONY : CMakeFiles/NightlyUpdate.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalMemCheck.dir + +# All Build rule for target. +CMakeFiles/ExperimentalMemCheck.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalMemCheck.dir/build.make CMakeFiles/ExperimentalMemCheck.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalMemCheck.dir/build.make CMakeFiles/ExperimentalMemCheck.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalMemCheck" +.PHONY : CMakeFiles/ExperimentalMemCheck.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalMemCheck.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalMemCheck.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalMemCheck.dir/rule + +# Convenience name for target. +ExperimentalMemCheck: CMakeFiles/ExperimentalMemCheck.dir/rule + +.PHONY : ExperimentalMemCheck + +# clean rule for target. +CMakeFiles/ExperimentalMemCheck.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalMemCheck.dir/build.make CMakeFiles/ExperimentalMemCheck.dir/clean +.PHONY : CMakeFiles/ExperimentalMemCheck.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalSubmit.dir + +# All Build rule for target. +CMakeFiles/ExperimentalSubmit.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalSubmit.dir/build.make CMakeFiles/ExperimentalSubmit.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalSubmit.dir/build.make CMakeFiles/ExperimentalSubmit.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalSubmit" +.PHONY : CMakeFiles/ExperimentalSubmit.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalSubmit.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalSubmit.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalSubmit.dir/rule + +# Convenience name for target. +ExperimentalSubmit: CMakeFiles/ExperimentalSubmit.dir/rule + +.PHONY : ExperimentalSubmit + +# clean rule for target. +CMakeFiles/ExperimentalSubmit.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalSubmit.dir/build.make CMakeFiles/ExperimentalSubmit.dir/clean +.PHONY : CMakeFiles/ExperimentalSubmit.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Experimental.dir + +# All Build rule for target. +CMakeFiles/Experimental.dir/all: + $(MAKE) -f CMakeFiles/Experimental.dir/build.make CMakeFiles/Experimental.dir/depend + $(MAKE) -f CMakeFiles/Experimental.dir/build.make CMakeFiles/Experimental.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target Experimental" +.PHONY : CMakeFiles/Experimental.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Experimental.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/Experimental.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/Experimental.dir/rule + +# Convenience name for target. +Experimental: CMakeFiles/Experimental.dir/rule + +.PHONY : Experimental + +# clean rule for target. +CMakeFiles/Experimental.dir/clean: + $(MAKE) -f CMakeFiles/Experimental.dir/build.make CMakeFiles/Experimental.dir/clean +.PHONY : CMakeFiles/Experimental.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousCoverage.dir + +# All Build rule for target. +CMakeFiles/ContinuousCoverage.dir/all: + $(MAKE) -f CMakeFiles/ContinuousCoverage.dir/build.make CMakeFiles/ContinuousCoverage.dir/depend + $(MAKE) -f CMakeFiles/ContinuousCoverage.dir/build.make CMakeFiles/ContinuousCoverage.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousCoverage" +.PHONY : CMakeFiles/ContinuousCoverage.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousCoverage.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousCoverage.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousCoverage.dir/rule + +# Convenience name for target. +ContinuousCoverage: CMakeFiles/ContinuousCoverage.dir/rule + +.PHONY : ContinuousCoverage + +# clean rule for target. +CMakeFiles/ContinuousCoverage.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousCoverage.dir/build.make CMakeFiles/ContinuousCoverage.dir/clean +.PHONY : CMakeFiles/ContinuousCoverage.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalConfigure.dir + +# All Build rule for target. +CMakeFiles/ExperimentalConfigure.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalConfigure.dir/build.make CMakeFiles/ExperimentalConfigure.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalConfigure.dir/build.make CMakeFiles/ExperimentalConfigure.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalConfigure" +.PHONY : CMakeFiles/ExperimentalConfigure.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalConfigure.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalConfigure.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalConfigure.dir/rule + +# Convenience name for target. +ExperimentalConfigure: CMakeFiles/ExperimentalConfigure.dir/rule + +.PHONY : ExperimentalConfigure + +# clean rule for target. +CMakeFiles/ExperimentalConfigure.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalConfigure.dir/build.make CMakeFiles/ExperimentalConfigure.dir/clean +.PHONY : CMakeFiles/ExperimentalConfigure.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Continuous.dir + +# All Build rule for target. +CMakeFiles/Continuous.dir/all: + $(MAKE) -f CMakeFiles/Continuous.dir/build.make CMakeFiles/Continuous.dir/depend + $(MAKE) -f CMakeFiles/Continuous.dir/build.make CMakeFiles/Continuous.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target Continuous" +.PHONY : CMakeFiles/Continuous.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Continuous.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/Continuous.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/Continuous.dir/rule + +# Convenience name for target. +Continuous: CMakeFiles/Continuous.dir/rule + +.PHONY : Continuous + +# clean rule for target. +CMakeFiles/Continuous.dir/clean: + $(MAKE) -f CMakeFiles/Continuous.dir/build.make CMakeFiles/Continuous.dir/clean +.PHONY : CMakeFiles/Continuous.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/test_utils.dir + +# All Build rule for target. +CMakeFiles/test_utils.dir/all: CMakeFiles/utils.dir/all +CMakeFiles/test_utils.dir/all: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/all + $(MAKE) -f CMakeFiles/test_utils.dir/build.make CMakeFiles/test_utils.dir/depend + $(MAKE) -f CMakeFiles/test_utils.dir/build.make CMakeFiles/test_utils.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=6,7 "Built target test_utils" +.PHONY : CMakeFiles/test_utils.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/test_utils.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 6 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/test_utils.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/test_utils.dir/rule + +# Convenience name for target. +test_utils: CMakeFiles/test_utils.dir/rule + +.PHONY : test_utils + +# clean rule for target. +CMakeFiles/test_utils.dir/clean: + $(MAKE) -f CMakeFiles/test_utils.dir/build.make CMakeFiles/test_utils.dir/clean +.PHONY : CMakeFiles/test_utils.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/utils.dir + +# All Build rule for target. +CMakeFiles/utils.dir/all: + $(MAKE) -f CMakeFiles/utils.dir/build.make CMakeFiles/utils.dir/depend + $(MAKE) -f CMakeFiles/utils.dir/build.make CMakeFiles/utils.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=8,9 "Built target utils" +.PHONY : CMakeFiles/utils.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/utils.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/utils.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/utils.dir/rule + +# Convenience name for target. +utils: CMakeFiles/utils.dir/rule + +.PHONY : utils + +# clean rule for target. +CMakeFiles/utils.dir/clean: + $(MAKE) -f CMakeFiles/utils.dir/build.make CMakeFiles/utils.dir/clean +.PHONY : CMakeFiles/utils.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/Nightly.dir + +# All Build rule for target. +CMakeFiles/Nightly.dir/all: + $(MAKE) -f CMakeFiles/Nightly.dir/build.make CMakeFiles/Nightly.dir/depend + $(MAKE) -f CMakeFiles/Nightly.dir/build.make CMakeFiles/Nightly.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target Nightly" +.PHONY : CMakeFiles/Nightly.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Nightly.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/Nightly.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/Nightly.dir/rule + +# Convenience name for target. +Nightly: CMakeFiles/Nightly.dir/rule + +.PHONY : Nightly + +# clean rule for target. +CMakeFiles/Nightly.dir/clean: + $(MAKE) -f CMakeFiles/Nightly.dir/build.make CMakeFiles/Nightly.dir/clean +.PHONY : CMakeFiles/Nightly.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlySubmit.dir + +# All Build rule for target. +CMakeFiles/NightlySubmit.dir/all: + $(MAKE) -f CMakeFiles/NightlySubmit.dir/build.make CMakeFiles/NightlySubmit.dir/depend + $(MAKE) -f CMakeFiles/NightlySubmit.dir/build.make CMakeFiles/NightlySubmit.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlySubmit" +.PHONY : CMakeFiles/NightlySubmit.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlySubmit.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlySubmit.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlySubmit.dir/rule + +# Convenience name for target. +NightlySubmit: CMakeFiles/NightlySubmit.dir/rule + +.PHONY : NightlySubmit + +# clean rule for target. +CMakeFiles/NightlySubmit.dir/clean: + $(MAKE) -f CMakeFiles/NightlySubmit.dir/build.make CMakeFiles/NightlySubmit.dir/clean +.PHONY : CMakeFiles/NightlySubmit.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyStart.dir + +# All Build rule for target. +CMakeFiles/NightlyStart.dir/all: + $(MAKE) -f CMakeFiles/NightlyStart.dir/build.make CMakeFiles/NightlyStart.dir/depend + $(MAKE) -f CMakeFiles/NightlyStart.dir/build.make CMakeFiles/NightlyStart.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyStart" +.PHONY : CMakeFiles/NightlyStart.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyStart.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyStart.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyStart.dir/rule + +# Convenience name for target. +NightlyStart: CMakeFiles/NightlyStart.dir/rule + +.PHONY : NightlyStart + +# clean rule for target. +CMakeFiles/NightlyStart.dir/clean: + $(MAKE) -f CMakeFiles/NightlyStart.dir/build.make CMakeFiles/NightlyStart.dir/clean +.PHONY : CMakeFiles/NightlyStart.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalCoverage.dir + +# All Build rule for target. +CMakeFiles/ExperimentalCoverage.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalCoverage.dir/build.make CMakeFiles/ExperimentalCoverage.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalCoverage.dir/build.make CMakeFiles/ExperimentalCoverage.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalCoverage" +.PHONY : CMakeFiles/ExperimentalCoverage.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalCoverage.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalCoverage.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalCoverage.dir/rule + +# Convenience name for target. +ExperimentalCoverage: CMakeFiles/ExperimentalCoverage.dir/rule + +.PHONY : ExperimentalCoverage + +# clean rule for target. +CMakeFiles/ExperimentalCoverage.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalCoverage.dir/build.make CMakeFiles/ExperimentalCoverage.dir/clean +.PHONY : CMakeFiles/ExperimentalCoverage.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyCoverage.dir + +# All Build rule for target. +CMakeFiles/NightlyCoverage.dir/all: + $(MAKE) -f CMakeFiles/NightlyCoverage.dir/build.make CMakeFiles/NightlyCoverage.dir/depend + $(MAKE) -f CMakeFiles/NightlyCoverage.dir/build.make CMakeFiles/NightlyCoverage.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyCoverage" +.PHONY : CMakeFiles/NightlyCoverage.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyCoverage.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyCoverage.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyCoverage.dir/rule + +# Convenience name for target. +NightlyCoverage: CMakeFiles/NightlyCoverage.dir/rule + +.PHONY : NightlyCoverage + +# clean rule for target. +CMakeFiles/NightlyCoverage.dir/clean: + $(MAKE) -f CMakeFiles/NightlyCoverage.dir/build.make CMakeFiles/NightlyCoverage.dir/clean +.PHONY : CMakeFiles/NightlyCoverage.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalStart.dir + +# All Build rule for target. +CMakeFiles/ExperimentalStart.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalStart.dir/build.make CMakeFiles/ExperimentalStart.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalStart.dir/build.make CMakeFiles/ExperimentalStart.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalStart" +.PHONY : CMakeFiles/ExperimentalStart.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalStart.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalStart.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalStart.dir/rule + +# Convenience name for target. +ExperimentalStart: CMakeFiles/ExperimentalStart.dir/rule + +.PHONY : ExperimentalStart + +# clean rule for target. +CMakeFiles/ExperimentalStart.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalStart.dir/build.make CMakeFiles/ExperimentalStart.dir/clean +.PHONY : CMakeFiles/ExperimentalStart.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/NightlyBuild.dir + +# All Build rule for target. +CMakeFiles/NightlyBuild.dir/all: + $(MAKE) -f CMakeFiles/NightlyBuild.dir/build.make CMakeFiles/NightlyBuild.dir/depend + $(MAKE) -f CMakeFiles/NightlyBuild.dir/build.make CMakeFiles/NightlyBuild.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target NightlyBuild" +.PHONY : CMakeFiles/NightlyBuild.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/NightlyBuild.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/NightlyBuild.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/NightlyBuild.dir/rule + +# Convenience name for target. +NightlyBuild: CMakeFiles/NightlyBuild.dir/rule + +.PHONY : NightlyBuild + +# clean rule for target. +CMakeFiles/NightlyBuild.dir/clean: + $(MAKE) -f CMakeFiles/NightlyBuild.dir/build.make CMakeFiles/NightlyBuild.dir/clean +.PHONY : CMakeFiles/NightlyBuild.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalBuild.dir + +# All Build rule for target. +CMakeFiles/ExperimentalBuild.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalBuild.dir/build.make CMakeFiles/ExperimentalBuild.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalBuild.dir/build.make CMakeFiles/ExperimentalBuild.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalBuild" +.PHONY : CMakeFiles/ExperimentalBuild.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalBuild.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalBuild.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalBuild.dir/rule + +# Convenience name for target. +ExperimentalBuild: CMakeFiles/ExperimentalBuild.dir/rule + +.PHONY : ExperimentalBuild + +# clean rule for target. +CMakeFiles/ExperimentalBuild.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalBuild.dir/build.make CMakeFiles/ExperimentalBuild.dir/clean +.PHONY : CMakeFiles/ExperimentalBuild.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ExperimentalUpdate.dir + +# All Build rule for target. +CMakeFiles/ExperimentalUpdate.dir/all: + $(MAKE) -f CMakeFiles/ExperimentalUpdate.dir/build.make CMakeFiles/ExperimentalUpdate.dir/depend + $(MAKE) -f CMakeFiles/ExperimentalUpdate.dir/build.make CMakeFiles/ExperimentalUpdate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ExperimentalUpdate" +.PHONY : CMakeFiles/ExperimentalUpdate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ExperimentalUpdate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ExperimentalUpdate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ExperimentalUpdate.dir/rule + +# Convenience name for target. +ExperimentalUpdate: CMakeFiles/ExperimentalUpdate.dir/rule + +.PHONY : ExperimentalUpdate + +# clean rule for target. +CMakeFiles/ExperimentalUpdate.dir/clean: + $(MAKE) -f CMakeFiles/ExperimentalUpdate.dir/build.make CMakeFiles/ExperimentalUpdate.dir/clean +.PHONY : CMakeFiles/ExperimentalUpdate.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousStart.dir + +# All Build rule for target. +CMakeFiles/ContinuousStart.dir/all: + $(MAKE) -f CMakeFiles/ContinuousStart.dir/build.make CMakeFiles/ContinuousStart.dir/depend + $(MAKE) -f CMakeFiles/ContinuousStart.dir/build.make CMakeFiles/ContinuousStart.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousStart" +.PHONY : CMakeFiles/ContinuousStart.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousStart.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousStart.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousStart.dir/rule + +# Convenience name for target. +ContinuousStart: CMakeFiles/ContinuousStart.dir/rule + +.PHONY : ContinuousStart + +# clean rule for target. +CMakeFiles/ContinuousStart.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousStart.dir/build.make CMakeFiles/ContinuousStart.dir/clean +.PHONY : CMakeFiles/ContinuousStart.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousMemCheck.dir + +# All Build rule for target. +CMakeFiles/ContinuousMemCheck.dir/all: + $(MAKE) -f CMakeFiles/ContinuousMemCheck.dir/build.make CMakeFiles/ContinuousMemCheck.dir/depend + $(MAKE) -f CMakeFiles/ContinuousMemCheck.dir/build.make CMakeFiles/ContinuousMemCheck.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousMemCheck" +.PHONY : CMakeFiles/ContinuousMemCheck.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousMemCheck.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousMemCheck.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousMemCheck.dir/rule + +# Convenience name for target. +ContinuousMemCheck: CMakeFiles/ContinuousMemCheck.dir/rule + +.PHONY : ContinuousMemCheck + +# clean rule for target. +CMakeFiles/ContinuousMemCheck.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousMemCheck.dir/build.make CMakeFiles/ContinuousMemCheck.dir/clean +.PHONY : CMakeFiles/ContinuousMemCheck.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousTest.dir + +# All Build rule for target. +CMakeFiles/ContinuousTest.dir/all: + $(MAKE) -f CMakeFiles/ContinuousTest.dir/build.make CMakeFiles/ContinuousTest.dir/depend + $(MAKE) -f CMakeFiles/ContinuousTest.dir/build.make CMakeFiles/ContinuousTest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousTest" +.PHONY : CMakeFiles/ContinuousTest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousTest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousTest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousTest.dir/rule + +# Convenience name for target. +ContinuousTest: CMakeFiles/ContinuousTest.dir/rule + +.PHONY : ContinuousTest + +# clean rule for target. +CMakeFiles/ContinuousTest.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousTest.dir/build.make CMakeFiles/ContinuousTest.dir/clean +.PHONY : CMakeFiles/ContinuousTest.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/ContinuousSubmit.dir + +# All Build rule for target. +CMakeFiles/ContinuousSubmit.dir/all: + $(MAKE) -f CMakeFiles/ContinuousSubmit.dir/build.make CMakeFiles/ContinuousSubmit.dir/depend + $(MAKE) -f CMakeFiles/ContinuousSubmit.dir/build.make CMakeFiles/ContinuousSubmit.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target ContinuousSubmit" +.PHONY : CMakeFiles/ContinuousSubmit.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/ContinuousSubmit.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ContinuousSubmit.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : CMakeFiles/ContinuousSubmit.dir/rule + +# Convenience name for target. +ContinuousSubmit: CMakeFiles/ContinuousSubmit.dir/rule + +.PHONY : ContinuousSubmit + +# clean rule for target. +CMakeFiles/ContinuousSubmit.dir/clean: + $(MAKE) -f CMakeFiles/ContinuousSubmit.dir/build.make CMakeFiles/ContinuousSubmit.dir/clean +.PHONY : CMakeFiles/ContinuousSubmit.dir/clean + +#============================================================================= +# Target rules for target _deps/cmocka-build/CMakeFiles/dist.dir + +# All Build rule for target. +_deps/cmocka-build/CMakeFiles/dist.dir/all: + $(MAKE) -f _deps/cmocka-build/CMakeFiles/dist.dir/build.make _deps/cmocka-build/CMakeFiles/dist.dir/depend + $(MAKE) -f _deps/cmocka-build/CMakeFiles/dist.dir/build.make _deps/cmocka-build/CMakeFiles/dist.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num= "Built target dist" +.PHONY : _deps/cmocka-build/CMakeFiles/dist.dir/all + +# Build rule for subdir invocation for target. +_deps/cmocka-build/CMakeFiles/dist.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 + $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/CMakeFiles/dist.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : _deps/cmocka-build/CMakeFiles/dist.dir/rule + +# Convenience name for target. +dist: _deps/cmocka-build/CMakeFiles/dist.dir/rule + +.PHONY : dist + +# clean rule for target. +_deps/cmocka-build/CMakeFiles/dist.dir/clean: + $(MAKE) -f _deps/cmocka-build/CMakeFiles/dist.dir/build.make _deps/cmocka-build/CMakeFiles/dist.dir/clean +.PHONY : _deps/cmocka-build/CMakeFiles/dist.dir/clean + +#============================================================================= +# Target rules for target _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir + +# All Build rule for target. +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/all: + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=3,4 "Built target cmocka-static" +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/all + +# Build rule for subdir invocation for target. +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/rule + +# Convenience name for target. +cmocka-static: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/rule + +.PHONY : cmocka-static + +# clean rule for target. +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/clean: + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/clean +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/clean + +#============================================================================= +# Target rules for target _deps/cmocka-build/src/CMakeFiles/cmocka.dir + +# All Build rule for target. +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/all: + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=1,2 "Built target cmocka" +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka.dir/all + +# Build rule for subdir invocation for target. +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/CMakeFiles/cmocka.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka.dir/rule + +# Convenience name for target. +cmocka: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/rule + +.PHONY : cmocka + +# clean rule for target. +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/clean: + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/clean +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka.dir/clean + +#============================================================================= +# Target rules for target _deps/cmocka-build/doc/CMakeFiles/docs.dir + +# All Build rule for target. +_deps/cmocka-build/doc/CMakeFiles/docs.dir/all: + $(MAKE) -f _deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make _deps/cmocka-build/doc/CMakeFiles/docs.dir/depend + $(MAKE) -f _deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make _deps/cmocka-build/doc/CMakeFiles/docs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=5 "Built target docs" +.PHONY : _deps/cmocka-build/doc/CMakeFiles/docs.dir/all + +# Build rule for subdir invocation for target. +_deps/cmocka-build/doc/CMakeFiles/docs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/doc/CMakeFiles/docs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : _deps/cmocka-build/doc/CMakeFiles/docs.dir/rule + +# Convenience name for target. +docs: _deps/cmocka-build/doc/CMakeFiles/docs.dir/rule + +.PHONY : docs + +# clean rule for target. +_deps/cmocka-build/doc/CMakeFiles/docs.dir/clean: + $(MAKE) -f _deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make _deps/cmocka-build/doc/CMakeFiles/docs.dir/clean +.PHONY : _deps/cmocka-build/doc/CMakeFiles/docs.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/CMakeFiles/Nightly.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/Nightly.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Nightly.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/Nightly.dir/build.make b/tests/unit/build/CMakeFiles/Nightly.dir/build.make new file mode 100644 index 0000000..fec2d39 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Nightly.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for Nightly. + +# Include the progress variables for this target. +include CMakeFiles/Nightly.dir/progress.make + +CMakeFiles/Nightly: + /usr/bin/ctest -D Nightly + +Nightly: CMakeFiles/Nightly +Nightly: CMakeFiles/Nightly.dir/build.make + +.PHONY : Nightly + +# Rule to build all files generated by this target. +CMakeFiles/Nightly.dir/build: Nightly + +.PHONY : CMakeFiles/Nightly.dir/build + +CMakeFiles/Nightly.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/Nightly.dir/cmake_clean.cmake +.PHONY : CMakeFiles/Nightly.dir/clean + +CMakeFiles/Nightly.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/Nightly.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/Nightly.dir/depend + diff --git a/tests/unit/build/CMakeFiles/Nightly.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/Nightly.dir/cmake_clean.cmake new file mode 100644 index 0000000..99a4ac1 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Nightly.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/Nightly" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/Nightly.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/Nightly.dir/progress.make b/tests/unit/build/CMakeFiles/Nightly.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/Nightly.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyBuild.dir/build.make b/tests/unit/build/CMakeFiles/NightlyBuild.dir/build.make new file mode 100644 index 0000000..a8f2804 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyBuild.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyBuild. + +# Include the progress variables for this target. +include CMakeFiles/NightlyBuild.dir/progress.make + +CMakeFiles/NightlyBuild: + /usr/bin/ctest -D NightlyBuild + +NightlyBuild: CMakeFiles/NightlyBuild +NightlyBuild: CMakeFiles/NightlyBuild.dir/build.make + +.PHONY : NightlyBuild + +# Rule to build all files generated by this target. +CMakeFiles/NightlyBuild.dir/build: NightlyBuild + +.PHONY : CMakeFiles/NightlyBuild.dir/build + +CMakeFiles/NightlyBuild.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyBuild.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyBuild.dir/clean + +CMakeFiles/NightlyBuild.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyBuild.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake new file mode 100644 index 0000000..7aa38a7 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyBuild" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyBuild.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyBuild.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyBuild.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyBuild.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyConfigure.dir/build.make b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/build.make new file mode 100644 index 0000000..dc65ad7 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyConfigure. + +# Include the progress variables for this target. +include CMakeFiles/NightlyConfigure.dir/progress.make + +CMakeFiles/NightlyConfigure: + /usr/bin/ctest -D NightlyConfigure + +NightlyConfigure: CMakeFiles/NightlyConfigure +NightlyConfigure: CMakeFiles/NightlyConfigure.dir/build.make + +.PHONY : NightlyConfigure + +# Rule to build all files generated by this target. +CMakeFiles/NightlyConfigure.dir/build: NightlyConfigure + +.PHONY : CMakeFiles/NightlyConfigure.dir/build + +CMakeFiles/NightlyConfigure.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyConfigure.dir/clean + +CMakeFiles/NightlyConfigure.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyConfigure.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake new file mode 100644 index 0000000..080c729 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyConfigure" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyConfigure.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyConfigure.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyConfigure.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyCoverage.dir/build.make b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/build.make new file mode 100644 index 0000000..b0a4b48 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyCoverage. + +# Include the progress variables for this target. +include CMakeFiles/NightlyCoverage.dir/progress.make + +CMakeFiles/NightlyCoverage: + /usr/bin/ctest -D NightlyCoverage + +NightlyCoverage: CMakeFiles/NightlyCoverage +NightlyCoverage: CMakeFiles/NightlyCoverage.dir/build.make + +.PHONY : NightlyCoverage + +# Rule to build all files generated by this target. +CMakeFiles/NightlyCoverage.dir/build: NightlyCoverage + +.PHONY : CMakeFiles/NightlyCoverage.dir/build + +CMakeFiles/NightlyCoverage.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyCoverage.dir/clean + +CMakeFiles/NightlyCoverage.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyCoverage.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake new file mode 100644 index 0000000..d6cba89 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyCoverage" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyCoverage.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyCoverage.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyCoverage.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/build.make b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/build.make new file mode 100644 index 0000000..8d22fa6 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyMemCheck. + +# Include the progress variables for this target. +include CMakeFiles/NightlyMemCheck.dir/progress.make + +CMakeFiles/NightlyMemCheck: + /usr/bin/ctest -D NightlyMemCheck + +NightlyMemCheck: CMakeFiles/NightlyMemCheck +NightlyMemCheck: CMakeFiles/NightlyMemCheck.dir/build.make + +.PHONY : NightlyMemCheck + +# Rule to build all files generated by this target. +CMakeFiles/NightlyMemCheck.dir/build: NightlyMemCheck + +.PHONY : CMakeFiles/NightlyMemCheck.dir/build + +CMakeFiles/NightlyMemCheck.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyMemCheck.dir/clean + +CMakeFiles/NightlyMemCheck.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyMemCheck.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake new file mode 100644 index 0000000..3c0e881 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyMemCheck" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyMemCheck.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemCheck.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/build.make b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/build.make new file mode 100644 index 0000000..c3de2f3 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyMemoryCheck. + +# Include the progress variables for this target. +include CMakeFiles/NightlyMemoryCheck.dir/progress.make + +CMakeFiles/NightlyMemoryCheck: + /usr/bin/ctest -D NightlyMemoryCheck + +NightlyMemoryCheck: CMakeFiles/NightlyMemoryCheck +NightlyMemoryCheck: CMakeFiles/NightlyMemoryCheck.dir/build.make + +.PHONY : NightlyMemoryCheck + +# Rule to build all files generated by this target. +CMakeFiles/NightlyMemoryCheck.dir/build: NightlyMemoryCheck + +.PHONY : CMakeFiles/NightlyMemoryCheck.dir/build + +CMakeFiles/NightlyMemoryCheck.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyMemoryCheck.dir/clean + +CMakeFiles/NightlyMemoryCheck.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyMemoryCheck.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake new file mode 100644 index 0000000..8846611 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyMemoryCheck" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyMemoryCheck.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyStart.dir/build.make b/tests/unit/build/CMakeFiles/NightlyStart.dir/build.make new file mode 100644 index 0000000..c099100 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyStart.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyStart. + +# Include the progress variables for this target. +include CMakeFiles/NightlyStart.dir/progress.make + +CMakeFiles/NightlyStart: + /usr/bin/ctest -D NightlyStart + +NightlyStart: CMakeFiles/NightlyStart +NightlyStart: CMakeFiles/NightlyStart.dir/build.make + +.PHONY : NightlyStart + +# Rule to build all files generated by this target. +CMakeFiles/NightlyStart.dir/build: NightlyStart + +.PHONY : CMakeFiles/NightlyStart.dir/build + +CMakeFiles/NightlyStart.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyStart.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyStart.dir/clean + +CMakeFiles/NightlyStart.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyStart.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake new file mode 100644 index 0000000..6a2c6c6 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyStart" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyStart.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyStart.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyStart.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyStart.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlySubmit.dir/build.make b/tests/unit/build/CMakeFiles/NightlySubmit.dir/build.make new file mode 100644 index 0000000..a0511d1 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlySubmit.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlySubmit. + +# Include the progress variables for this target. +include CMakeFiles/NightlySubmit.dir/progress.make + +CMakeFiles/NightlySubmit: + /usr/bin/ctest -D NightlySubmit + +NightlySubmit: CMakeFiles/NightlySubmit +NightlySubmit: CMakeFiles/NightlySubmit.dir/build.make + +.PHONY : NightlySubmit + +# Rule to build all files generated by this target. +CMakeFiles/NightlySubmit.dir/build: NightlySubmit + +.PHONY : CMakeFiles/NightlySubmit.dir/build + +CMakeFiles/NightlySubmit.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlySubmit.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlySubmit.dir/clean + +CMakeFiles/NightlySubmit.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlySubmit.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake new file mode 100644 index 0000000..6f88ccc --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlySubmit" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlySubmit.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlySubmit.dir/progress.make b/tests/unit/build/CMakeFiles/NightlySubmit.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlySubmit.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyTest.dir/build.make b/tests/unit/build/CMakeFiles/NightlyTest.dir/build.make new file mode 100644 index 0000000..ead962c --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyTest.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyTest. + +# Include the progress variables for this target. +include CMakeFiles/NightlyTest.dir/progress.make + +CMakeFiles/NightlyTest: + /usr/bin/ctest -D NightlyTest + +NightlyTest: CMakeFiles/NightlyTest +NightlyTest: CMakeFiles/NightlyTest.dir/build.make + +.PHONY : NightlyTest + +# Rule to build all files generated by this target. +CMakeFiles/NightlyTest.dir/build: NightlyTest + +.PHONY : CMakeFiles/NightlyTest.dir/build + +CMakeFiles/NightlyTest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyTest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyTest.dir/clean + +CMakeFiles/NightlyTest.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyTest.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake new file mode 100644 index 0000000..8f40bb8 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyTest" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyTest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyTest.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyTest.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyTest.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/NightlyUpdate.dir/build.make b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/build.make new file mode 100644 index 0000000..da9ae7a --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for NightlyUpdate. + +# Include the progress variables for this target. +include CMakeFiles/NightlyUpdate.dir/progress.make + +CMakeFiles/NightlyUpdate: + /usr/bin/ctest -D NightlyUpdate + +NightlyUpdate: CMakeFiles/NightlyUpdate +NightlyUpdate: CMakeFiles/NightlyUpdate.dir/build.make + +.PHONY : NightlyUpdate + +# Rule to build all files generated by this target. +CMakeFiles/NightlyUpdate.dir/build: NightlyUpdate + +.PHONY : CMakeFiles/NightlyUpdate.dir/build + +CMakeFiles/NightlyUpdate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/NightlyUpdate.dir/clean + +CMakeFiles/NightlyUpdate.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/NightlyUpdate.dir/depend + diff --git a/tests/unit/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake new file mode 100644 index 0000000..0f10e82 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/NightlyUpdate" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/NightlyUpdate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/NightlyUpdate.dir/progress.make b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/CMakeFiles/NightlyUpdate.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/CMakeFiles/TargetDirectories.txt b/tests/unit/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..e2b7ed0 --- /dev/null +++ b/tests/unit/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,79 @@ +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/install/strip.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/install/local.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/list_install_components.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/rebuild_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/test.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/package_source.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/edit_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyMemCheck.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyTest.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousConfigure.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousBuild.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyConfigure.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyMemoryCheck.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalTest.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousUpdate.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyUpdate.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalMemCheck.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalSubmit.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/Experimental.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousCoverage.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalConfigure.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/Continuous.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/test_utils.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/utils.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/Nightly.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlySubmit.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/install.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyStart.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalCoverage.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyCoverage.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalStart.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/package.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/NightlyBuild.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalBuild.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ExperimentalUpdate.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousStart.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousMemCheck.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousTest.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/ContinuousSubmit.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/install/strip.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/install/local.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/edit_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/test.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/package_source.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/install.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/list_install_components.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/rebuild_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/package.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/install/strip.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/install/local.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/edit_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/test.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/package_source.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/install.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/list_install_components.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/rebuild_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/package.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/install/local.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/edit_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/test.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/package_source.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/install.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/list_install_components.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/rebuild_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/package.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/install/strip.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/install/strip.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/install/local.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/edit_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/test.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/package_source.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/install.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/list_install_components.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/rebuild_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/package.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir diff --git a/tests/unit/build/CMakeFiles/TestEndianess.bin b/tests/unit/build/CMakeFiles/TestEndianess.bin new file mode 100755 index 0000000..67ed3e2 Binary files /dev/null and b/tests/unit/build/CMakeFiles/TestEndianess.bin differ diff --git a/tests/unit/build/CMakeFiles/cmake.check_cache b/tests/unit/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/tests/unit/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/tests/unit/build/CMakeFiles/progress.marks b/tests/unit/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/tests/unit/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/tests/unit/build/CMakeFiles/test_main.dir/C.includecache b/tests/unit/build/CMakeFiles/test_main.dir/C.includecache new file mode 100644 index 0000000..0628e2a --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/C.includecache @@ -0,0 +1,20 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/cseguret/Projects/app-ethereum/tests/unit/tests/main.c +stdarg.h +- +stddef.h +- +setjmp.h +- +cmocka.h +- + +_deps/cmocka-src/include/cmocka.h + diff --git a/tests/unit/build/CMakeFiles/test_main.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/test_main.dir/DependInfo.cmake new file mode 100644 index 0000000..3e1ec8b --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/DependInfo.cmake @@ -0,0 +1,31 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/cseguret/Projects/app-ethereum/tests/unit/tests/main.c" "/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "DEBUG=0" + "SKIP_FOR_CMOCKA" + "TEST" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "../../../src" + "../../../src_common" + "_deps/cmocka-src/include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/test_main.dir/build.make b/tests/unit/build/CMakeFiles/test_main.dir/build.make new file mode 100644 index 0000000..db6e1e3 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Include any dependencies generated for this target. +include CMakeFiles/test_main.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/test_main.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/test_main.dir/flags.make + +CMakeFiles/test_main.dir/tests/main.c.o: CMakeFiles/test_main.dir/flags.make +CMakeFiles/test_main.dir/tests/main.c.o: ../tests/main.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_main.dir/tests/main.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_main.dir/tests/main.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/tests/main.c + +CMakeFiles/test_main.dir/tests/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_main.dir/tests/main.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/cseguret/Projects/app-ethereum/tests/unit/tests/main.c > CMakeFiles/test_main.dir/tests/main.c.i + +CMakeFiles/test_main.dir/tests/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_main.dir/tests/main.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/cseguret/Projects/app-ethereum/tests/unit/tests/main.c -o CMakeFiles/test_main.dir/tests/main.c.s + +# Object files for target test_main +test_main_OBJECTS = \ +"CMakeFiles/test_main.dir/tests/main.c.o" + +# External object files for target test_main +test_main_EXTERNAL_OBJECTS = + +test_main: CMakeFiles/test_main.dir/tests/main.c.o +test_main: CMakeFiles/test_main.dir/build.make +test_main: _deps/cmocka-build/src/libcmocka.so.0.7.0 +test_main: CMakeFiles/test_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable test_main" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/test_main.dir/build: test_main + +.PHONY : CMakeFiles/test_main.dir/build + +CMakeFiles/test_main.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/test_main.dir/cmake_clean.cmake +.PHONY : CMakeFiles/test_main.dir/clean + +CMakeFiles/test_main.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/test_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/test_main.dir/depend + diff --git a/tests/unit/build/CMakeFiles/test_main.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/test_main.dir/cmake_clean.cmake new file mode 100644 index 0000000..debcd71 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/test_main.dir/tests/main.c.o" + "test_main" + "test_main.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/test_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/test_main.dir/depend.internal b/tests/unit/build/CMakeFiles/test_main.dir/depend.internal new file mode 100644 index 0000000..c9d62f3 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/test_main.dir/tests/main.c.o + /home/cseguret/Projects/app-ethereum/tests/unit/tests/main.c + _deps/cmocka-src/include/cmocka.h diff --git a/tests/unit/build/CMakeFiles/test_main.dir/depend.make b/tests/unit/build/CMakeFiles/test_main.dir/depend.make new file mode 100644 index 0000000..9e141ec --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/depend.make @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/test_main.dir/tests/main.c.o: ../tests/main.c +CMakeFiles/test_main.dir/tests/main.c.o: _deps/cmocka-src/include/cmocka.h + diff --git a/tests/unit/build/CMakeFiles/test_main.dir/flags.make b/tests/unit/build/CMakeFiles/test_main.dir/flags.make new file mode 100644 index 0000000..ca77fb7 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -pedantic -g -O0 --coverage -std=gnu11 + +C_DEFINES = -DDEBUG=0 -DSKIP_FOR_CMOCKA -DTEST + +C_INCLUDES = -I/home/cseguret/Projects/app-ethereum/tests/unit/../../src -I/home/cseguret/Projects/app-ethereum/tests/unit/../../src_common -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include + diff --git a/tests/unit/build/CMakeFiles/test_main.dir/link.txt b/tests/unit/build/CMakeFiles/test_main.dir/link.txt new file mode 100644 index 0000000..5a51f51 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -g -Wall -pedantic -g -O0 --coverage --coverage -lgcov CMakeFiles/test_main.dir/tests/main.c.o -o test_main -Wl,-rpath,/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src _deps/cmocka-build/src/libcmocka.so.0.7.0 -lgcov diff --git a/tests/unit/build/CMakeFiles/test_main.dir/progress.make b/tests/unit/build/CMakeFiles/test_main.dir/progress.make new file mode 100644 index 0000000..8808896 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 6 +CMAKE_PROGRESS_2 = 7 + diff --git a/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.gcda b/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.gcda new file mode 100644 index 0000000..0bcaaa7 Binary files /dev/null and b/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.gcda differ diff --git a/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.gcno b/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.gcno new file mode 100644 index 0000000..dcc38b8 Binary files /dev/null and b/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.gcno differ diff --git a/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.o b/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.o new file mode 100644 index 0000000..69163c5 Binary files /dev/null and b/tests/unit/build/CMakeFiles/test_main.dir/tests/main.c.o differ diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/C.includecache b/tests/unit/build/CMakeFiles/test_utils.dir/C.includecache new file mode 100644 index 0000000..50fddc6 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/C.includecache @@ -0,0 +1,20 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/cseguret/Projects/app-ethereum/tests/unit/tests/utils.c +stdarg.h +- +stddef.h +- +setjmp.h +- +cmocka.h +- + +_deps/cmocka-src/include/cmocka.h + diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/test_utils.dir/DependInfo.cmake new file mode 100644 index 0000000..f63fe2a --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/DependInfo.cmake @@ -0,0 +1,32 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/cseguret/Projects/app-ethereum/tests/unit/tests/utils.c" "/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "DEBUG=0" + "SKIP_FOR_CMOCKA" + "TEST" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "../../../src" + "../../../src_common" + "_deps/cmocka-src/include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/DependInfo.cmake" + "/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/utils.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/build.make b/tests/unit/build/CMakeFiles/test_utils.dir/build.make new file mode 100644 index 0000000..01577ed --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/build.make @@ -0,0 +1,100 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Include any dependencies generated for this target. +include CMakeFiles/test_utils.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/test_utils.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/test_utils.dir/flags.make + +CMakeFiles/test_utils.dir/tests/utils.c.o: CMakeFiles/test_utils.dir/flags.make +CMakeFiles/test_utils.dir/tests/utils.c.o: ../tests/utils.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_utils.dir/tests/utils.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/test_utils.dir/tests/utils.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/tests/utils.c + +CMakeFiles/test_utils.dir/tests/utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/test_utils.dir/tests/utils.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/cseguret/Projects/app-ethereum/tests/unit/tests/utils.c > CMakeFiles/test_utils.dir/tests/utils.c.i + +CMakeFiles/test_utils.dir/tests/utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/test_utils.dir/tests/utils.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/cseguret/Projects/app-ethereum/tests/unit/tests/utils.c -o CMakeFiles/test_utils.dir/tests/utils.c.s + +# Object files for target test_utils +test_utils_OBJECTS = \ +"CMakeFiles/test_utils.dir/tests/utils.c.o" + +# External object files for target test_utils +test_utils_EXTERNAL_OBJECTS = + +test_utils: CMakeFiles/test_utils.dir/tests/utils.c.o +test_utils: CMakeFiles/test_utils.dir/build.make +test_utils: _deps/cmocka-build/src/libcmocka.so.0.7.0 +test_utils: libutils.so +test_utils: CMakeFiles/test_utils.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable test_utils" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_utils.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/test_utils.dir/build: test_utils + +.PHONY : CMakeFiles/test_utils.dir/build + +CMakeFiles/test_utils.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/test_utils.dir/cmake_clean.cmake +.PHONY : CMakeFiles/test_utils.dir/clean + +CMakeFiles/test_utils.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/test_utils.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/test_utils.dir/depend + diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/test_utils.dir/cmake_clean.cmake new file mode 100644 index 0000000..5a628a9 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/test_utils.dir/tests/utils.c.o" + "test_utils" + "test_utils.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/test_utils.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/depend.internal b/tests/unit/build/CMakeFiles/test_utils.dir/depend.internal new file mode 100644 index 0000000..78b465b --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/test_utils.dir/tests/utils.c.o + /home/cseguret/Projects/app-ethereum/tests/unit/tests/utils.c + _deps/cmocka-src/include/cmocka.h diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/depend.make b/tests/unit/build/CMakeFiles/test_utils.dir/depend.make new file mode 100644 index 0000000..b310f36 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/depend.make @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/test_utils.dir/tests/utils.c.o: ../tests/utils.c +CMakeFiles/test_utils.dir/tests/utils.c.o: _deps/cmocka-src/include/cmocka.h + diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/flags.make b/tests/unit/build/CMakeFiles/test_utils.dir/flags.make new file mode 100644 index 0000000..ca77fb7 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -pedantic -g -O0 --coverage -std=gnu11 + +C_DEFINES = -DDEBUG=0 -DSKIP_FOR_CMOCKA -DTEST + +C_INCLUDES = -I/home/cseguret/Projects/app-ethereum/tests/unit/../../src -I/home/cseguret/Projects/app-ethereum/tests/unit/../../src_common -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include + diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/link.txt b/tests/unit/build/CMakeFiles/test_utils.dir/link.txt new file mode 100644 index 0000000..375537d --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -g -Wall -pedantic -g -O0 --coverage --coverage -lgcov CMakeFiles/test_utils.dir/tests/utils.c.o -o test_utils -Wl,-rpath,/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src:/home/cseguret/Projects/app-ethereum/tests/unit/build _deps/cmocka-build/src/libcmocka.so.0.7.0 -lgcov libutils.so diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/progress.make b/tests/unit/build/CMakeFiles/test_utils.dir/progress.make new file mode 100644 index 0000000..8808896 --- /dev/null +++ b/tests/unit/build/CMakeFiles/test_utils.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 6 +CMAKE_PROGRESS_2 = 7 + diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.gcda b/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.gcda new file mode 100644 index 0000000..84b7087 Binary files /dev/null and b/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.gcda differ diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.gcno b/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.gcno new file mode 100644 index 0000000..594fdec Binary files /dev/null and b/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.gcno differ diff --git a/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.o b/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.o new file mode 100644 index 0000000..5908e6c Binary files /dev/null and b/tests/unit/build/CMakeFiles/test_utils.dir/tests/utils.c.o differ diff --git a/tests/unit/build/CMakeFiles/utils.dir/C.includecache b/tests/unit/build/CMakeFiles/utils.dir/C.includecache new file mode 100644 index 0000000..3218800 --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/C.includecache @@ -0,0 +1,12 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/cseguret/Projects/app-ethereum/src/utils2.c +string.h +- + diff --git a/tests/unit/build/CMakeFiles/utils.dir/DependInfo.cmake b/tests/unit/build/CMakeFiles/utils.dir/DependInfo.cmake new file mode 100644 index 0000000..9d636be --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/DependInfo.cmake @@ -0,0 +1,30 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/cseguret/Projects/app-ethereum/src/utils2.c" "/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "DEBUG=0" + "SKIP_FOR_CMOCKA" + "TEST" + "utils_EXPORTS" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "../../../src" + "../../../src_common" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/CMakeFiles/utils.dir/build.make b/tests/unit/build/CMakeFiles/utils.dir/build.make new file mode 100644 index 0000000..dc4fe7c --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/build.make @@ -0,0 +1,98 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Include any dependencies generated for this target. +include CMakeFiles/utils.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/utils.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/utils.dir/flags.make + +CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o: CMakeFiles/utils.dir/flags.make +CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o: /home/cseguret/Projects/app-ethereum/src/utils2.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o -c /home/cseguret/Projects/app-ethereum/src/utils2.c + +CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/cseguret/Projects/app-ethereum/src/utils2.c > CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.i + +CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/cseguret/Projects/app-ethereum/src/utils2.c -o CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.s + +# Object files for target utils +utils_OBJECTS = \ +"CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o" + +# External object files for target utils +utils_EXTERNAL_OBJECTS = + +libutils.so: CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o +libutils.so: CMakeFiles/utils.dir/build.make +libutils.so: CMakeFiles/utils.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C shared library libutils.so" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/utils.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/utils.dir/build: libutils.so + +.PHONY : CMakeFiles/utils.dir/build + +CMakeFiles/utils.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/utils.dir/cmake_clean.cmake +.PHONY : CMakeFiles/utils.dir/clean + +CMakeFiles/utils.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/utils.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/utils.dir/depend + diff --git a/tests/unit/build/CMakeFiles/utils.dir/cmake_clean.cmake b/tests/unit/build/CMakeFiles/utils.dir/cmake_clean.cmake new file mode 100644 index 0000000..c2c7276 --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o" + "libutils.pdb" + "libutils.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/utils.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/CMakeFiles/utils.dir/depend.internal b/tests/unit/build/CMakeFiles/utils.dir/depend.internal new file mode 100644 index 0000000..d025476 --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/depend.internal @@ -0,0 +1,5 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o + /home/cseguret/Projects/app-ethereum/src/utils2.c diff --git a/tests/unit/build/CMakeFiles/utils.dir/depend.make b/tests/unit/build/CMakeFiles/utils.dir/depend.make new file mode 100644 index 0000000..56fa001 --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/depend.make @@ -0,0 +1,5 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o: /home/cseguret/Projects/app-ethereum/src/utils2.c + diff --git a/tests/unit/build/CMakeFiles/utils.dir/flags.make b/tests/unit/build/CMakeFiles/utils.dir/flags.make new file mode 100644 index 0000000..44b97df --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -pedantic -g -O0 --coverage -fPIC -std=gnu11 + +C_DEFINES = -DDEBUG=0 -DSKIP_FOR_CMOCKA -DTEST -Dutils_EXPORTS + +C_INCLUDES = -I/home/cseguret/Projects/app-ethereum/tests/unit/../../src -I/home/cseguret/Projects/app-ethereum/tests/unit/../../src_common + diff --git a/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.gcda b/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.gcda new file mode 100644 index 0000000..ec89764 Binary files /dev/null and b/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.gcda differ diff --git a/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.gcno b/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.gcno new file mode 100644 index 0000000..befddfa Binary files /dev/null and b/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.gcno differ diff --git a/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o b/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o new file mode 100644 index 0000000..4f9b24c Binary files /dev/null and b/tests/unit/build/CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o differ diff --git a/tests/unit/build/CMakeFiles/utils.dir/link.txt b/tests/unit/build/CMakeFiles/utils.dir/link.txt new file mode 100644 index 0000000..cfafe79 --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -fPIC -g -Wall -pedantic -g -O0 --coverage --coverage -lgcov -shared -Wl,-soname,libutils.so -o libutils.so CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o diff --git a/tests/unit/build/CMakeFiles/utils.dir/progress.make b/tests/unit/build/CMakeFiles/utils.dir/progress.make new file mode 100644 index 0000000..895faac --- /dev/null +++ b/tests/unit/build/CMakeFiles/utils.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 8 +CMAKE_PROGRESS_2 = 9 + diff --git a/tests/unit/build/CPackConfig.cmake b/tests/unit/build/CPackConfig.cmake new file mode 100644 index 0000000..9b1d741 --- /dev/null +++ b/tests/unit/build/CPackConfig.cmake @@ -0,0 +1,94 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "") +set(CPACK_BINARY_BUNDLE "") +set(CPACK_BINARY_CYGWIN "") +set(CPACK_BINARY_DEB "OFF") +set(CPACK_BINARY_DRAGNDROP "") +set(CPACK_BINARY_FREEBSD "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_NSIS "OFF") +set(CPACK_BINARY_NUGET "") +set(CPACK_BINARY_OSXX11 "") +set(CPACK_BINARY_PACKAGEMAKER "") +set(CPACK_BINARY_PRODUCTBUILD "") +set(CPACK_BINARY_RPM "OFF") +set(CPACK_BINARY_STGZ "ON") +set(CPACK_BINARY_TBZ2 "OFF") +set(CPACK_BINARY_TGZ "ON") +set(CPACK_BINARY_TXZ "OFF") +set(CPACK_BINARY_TZ "ON") +set(CPACK_BINARY_WIX "") +set(CPACK_BINARY_ZIP "") +set(CPACK_BUILD_SOURCE_DIRS "/home/cseguret/Projects/app-ethereum/tests/unit;/home/cseguret/Projects/app-ethereum/tests/unit/build") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_HEADERS_DEPENDS "libraries") +set(CPACK_COMPONENT_HEADERS_DESCRIPTION "C/C++ header files for use with cmocka") +set(CPACK_COMPONENT_HEADERS_DISPLAY_NAME "C/C++ Headers") +set(CPACK_COMPONENT_HEADERS_GROUP "Development") +set(CPACK_COMPONENT_LIBRARIES_DESCRIPTION "Libraries used to build programs which use cmocka") +set(CPACK_COMPONENT_LIBRARIES_DISPLAY_NAME "Libraries") +set(CPACK_COMPONENT_LIBRARIES_GROUP "Development") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.16/Templates/CPack.GenericDescription.txt") +set(CPACK_GENERATOR "STGZ;TGZ;TZ") +set(CPACK_INSTALL_CMAKE_PROJECTS "/home/cseguret/Projects/app-ethereum/tests/unit/build;unit_tests;ALL;/") +set(CPACK_INSTALL_PREFIX "/usr/local") +set(CPACK_MODULE_PATH "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/cmake/Modules") +set(CPACK_NSIS_DISPLAY_NAME "cmocka") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "cmocka") +set(CPACK_OUTPUT_CONFIG_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/README.md") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Unit testing framework for C with mock objects") +set(CPACK_PACKAGE_FILE_NAME "cmocka-1.1.5") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "cmocka") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "cmocka") +set(CPACK_PACKAGE_NAME "cmocka") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Andreas Schneider") +set(CPACK_PACKAGE_VERSION "1.1.5") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_RESOURCE_FILE_LICENSE "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/COPYING") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.16/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.16/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "") +set(CPACK_SOURCE_CYGWIN "") +set(CPACK_SOURCE_GENERATOR "TXZ") +set(CPACK_SOURCE_IGNORE_FILES "~$;[.]swp$;/[.]svn/;/[.]git/;.gitignore;/obj*;tags;cscope.*;.ycm_extra_conf.pyc") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "cmocka-1.1.5") +set(CPACK_SOURCE_RPM "") +set(CPACK_SOURCE_TBZ2 "") +set(CPACK_SOURCE_TGZ "") +set(CPACK_SOURCE_TXZ "") +set(CPACK_SOURCE_TZ "") +set(CPACK_SOURCE_ZIP "") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_TOPLEVEL_TAG "Linux") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/tests/unit/build/CPackSourceConfig.cmake b/tests/unit/build/CPackSourceConfig.cmake new file mode 100644 index 0000000..3de0d72 --- /dev/null +++ b/tests/unit/build/CPackSourceConfig.cmake @@ -0,0 +1,100 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "") +set(CPACK_BINARY_BUNDLE "") +set(CPACK_BINARY_CYGWIN "") +set(CPACK_BINARY_DEB "OFF") +set(CPACK_BINARY_DRAGNDROP "") +set(CPACK_BINARY_FREEBSD "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_NSIS "OFF") +set(CPACK_BINARY_NUGET "") +set(CPACK_BINARY_OSXX11 "") +set(CPACK_BINARY_PACKAGEMAKER "") +set(CPACK_BINARY_PRODUCTBUILD "") +set(CPACK_BINARY_RPM "OFF") +set(CPACK_BINARY_STGZ "ON") +set(CPACK_BINARY_TBZ2 "OFF") +set(CPACK_BINARY_TGZ "ON") +set(CPACK_BINARY_TXZ "OFF") +set(CPACK_BINARY_TZ "ON") +set(CPACK_BINARY_WIX "") +set(CPACK_BINARY_ZIP "") +set(CPACK_BUILD_SOURCE_DIRS "/home/cseguret/Projects/app-ethereum/tests/unit;/home/cseguret/Projects/app-ethereum/tests/unit/build") +set(CPACK_CMAKE_GENERATOR "Unix Makefiles") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_HEADERS_DEPENDS "libraries") +set(CPACK_COMPONENT_HEADERS_DESCRIPTION "C/C++ header files for use with cmocka") +set(CPACK_COMPONENT_HEADERS_DISPLAY_NAME "C/C++ Headers") +set(CPACK_COMPONENT_HEADERS_GROUP "Development") +set(CPACK_COMPONENT_LIBRARIES_DESCRIPTION "Libraries used to build programs which use cmocka") +set(CPACK_COMPONENT_LIBRARIES_DISPLAY_NAME "Libraries") +set(CPACK_COMPONENT_LIBRARIES_GROUP "Development") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.16/Templates/CPack.GenericDescription.txt") +set(CPACK_GENERATOR "TXZ") +set(CPACK_IGNORE_FILES "~$;[.]swp$;/[.]svn/;/[.]git/;.gitignore;/obj*;tags;cscope.*;.ycm_extra_conf.pyc") +set(CPACK_INSTALLED_DIRECTORIES "/home/cseguret/Projects/app-ethereum/tests/unit;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "/usr/local") +set(CPACK_MODULE_PATH "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/cmake/Modules") +set(CPACK_NSIS_DISPLAY_NAME "cmocka") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "cmocka") +set(CPACK_OUTPUT_CONFIG_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/README.md") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Unit testing framework for C with mock objects") +set(CPACK_PACKAGE_FILE_NAME "cmocka-1.1.5") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "cmocka") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "cmocka") +set(CPACK_PACKAGE_NAME "cmocka") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Andreas Schneider") +set(CPACK_PACKAGE_VERSION "1.1.5") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_RESOURCE_FILE_LICENSE "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/COPYING") +set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.16/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.16/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "") +set(CPACK_SOURCE_CYGWIN "") +set(CPACK_SOURCE_GENERATOR "TXZ") +set(CPACK_SOURCE_IGNORE_FILES "~$;[.]swp$;/[.]svn/;/[.]git/;.gitignore;/obj*;tags;cscope.*;.ycm_extra_conf.pyc") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/home/cseguret/Projects/app-ethereum/tests/unit;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "cmocka-1.1.5") +set(CPACK_SOURCE_RPM "") +set(CPACK_SOURCE_TBZ2 "") +set(CPACK_SOURCE_TGZ "") +set(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") +set(CPACK_SOURCE_TXZ "") +set(CPACK_SOURCE_TZ "") +set(CPACK_SOURCE_ZIP "") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "Linux") +set(CPACK_TOPLEVEL_TAG "Linux-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "/home/cseguret/Projects/app-ethereum/tests/unit/build/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/tests/unit/build/CTestTestfile.cmake b/tests/unit/build/CTestTestfile.cmake new file mode 100644 index 0000000..23b8722 --- /dev/null +++ b/tests/unit/build/CTestTestfile.cmake @@ -0,0 +1,9 @@ +# CMake generated Testfile for +# Source directory: /home/cseguret/Projects/app-ethereum/tests/unit +# Build directory: /home/cseguret/Projects/app-ethereum/tests/unit/build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test(test_utils "test_utils") +set_tests_properties(test_utils PROPERTIES _BACKTRACE_TRIPLES "/home/cseguret/Projects/app-ethereum/tests/unit/CMakeLists.txt;63;add_test;/home/cseguret/Projects/app-ethereum/tests/unit/CMakeLists.txt;0;") +subdirs("_deps/cmocka-build") diff --git a/tests/unit/build/DartConfiguration.tcl b/tests/unit/build/DartConfiguration.tcl new file mode 100644 index 0000000..1d39e60 --- /dev/null +++ b/tests/unit/build/DartConfiguration.tcl @@ -0,0 +1,105 @@ +# This file is configured by CMake automatically as DartConfiguration.tcl +# If you choose not to use CMake, this file may be hand configured, by +# filling in the required variables. + + +# Configuration directories and files +SourceDirectory: /home/cseguret/Projects/app-ethereum/tests/unit +BuildDirectory: /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Where to place the cost data store +CostDataFile: + +# Site is something like machine.domain, i.e. pragmatic.crd +Site: LPPS0065 + +# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++ +BuildName: Linux-cc + +# Subprojects +LabelsForSubprojects: + +# Submission information +SubmitURL: http:// + +# Dashboard start time +NightlyStartTime: 00:00:00 EDT + +# Commands for the build/test/submit cycle +ConfigureCommand: "/usr/bin/cmake" "/home/cseguret/Projects/app-ethereum/tests/unit" +MakeCommand: /usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}" +DefaultCTestConfigurationType: Release + +# version control +UpdateVersionOnly: + +# CVS options +# Default is "-d -P -A" +CVSCommand: CVSCOMMAND-NOTFOUND +CVSUpdateOptions: -d -A -P + +# Subversion options +SVNCommand: SVNCOMMAND-NOTFOUND +SVNOptions: +SVNUpdateOptions: + +# Git options +GITCommand: /usr/bin/git +GITInitSubmodules: +GITUpdateOptions: +GITUpdateCustom: + +# Perforce options +P4Command: P4COMMAND-NOTFOUND +P4Client: +P4Options: +P4UpdateOptions: +P4UpdateCustom: + +# Generic update command +UpdateCommand: /usr/bin/git +UpdateOptions: +UpdateType: git + +# Compiler info +Compiler: +CompilerVersion: + +# Dynamic analysis (MemCheck) +PurifyCommand: +ValgrindCommand: +ValgrindCommandOptions: +MemoryCheckType: +MemoryCheckSanitizerOptions: +MemoryCheckCommand: MEMORYCHECK_COMMAND-NOTFOUND +MemoryCheckCommandOptions: +MemoryCheckSuppressionFile: + +# Coverage +CoverageCommand: /usr/bin/gcov +CoverageExtraFlags: -l + +# Cluster commands +SlurmBatchCommand: SLURM_SBATCH_COMMAND-NOTFOUND +SlurmRunCommand: SLURM_SRUN_COMMAND-NOTFOUND + +# Testing options +# TimeOut is the amount of time in seconds to wait for processes +# to complete during testing. After TimeOut seconds, the +# process will be summarily terminated. +# Currently set to 25 minutes +TimeOut: 1500 + +# During parallel testing CTest will not start a new test if doing +# so would cause the system load to exceed this value. +TestLoad: + +UseLaunchers: +CurlOptions: +# warning, if you add new options here that have to do with submit, +# you have to update cmCTestSubmitCommand.cxx + +# For CTest submissions that timeout, these options +# specify behavior for retrying the submission +CTestSubmitRetryDelay: 5 +CTestSubmitRetryCount: 3 diff --git a/tests/unit/build/Makefile b/tests/unit/build/Makefile new file mode 100644 index 0000000..a075b21 --- /dev/null +++ b/tests/unit/build/Makefile @@ -0,0 +1,756 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\" \"cmocka-header\" \"cmocka-library\" \"devel\" \"pkgconfig\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/cseguret/Projects/app-ethereum/tests/unit/build/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source + +.PHONY : package_source/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package + +.PHONY : package/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named NightlyMemCheck + +# Build rule for target. +NightlyMemCheck: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyMemCheck +.PHONY : NightlyMemCheck + +# fast build rule for target. +NightlyMemCheck/fast: + $(MAKE) -f CMakeFiles/NightlyMemCheck.dir/build.make CMakeFiles/NightlyMemCheck.dir/build +.PHONY : NightlyMemCheck/fast + +#============================================================================= +# Target rules for targets named NightlyTest + +# Build rule for target. +NightlyTest: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyTest +.PHONY : NightlyTest + +# fast build rule for target. +NightlyTest/fast: + $(MAKE) -f CMakeFiles/NightlyTest.dir/build.make CMakeFiles/NightlyTest.dir/build +.PHONY : NightlyTest/fast + +#============================================================================= +# Target rules for targets named ContinuousConfigure + +# Build rule for target. +ContinuousConfigure: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousConfigure +.PHONY : ContinuousConfigure + +# fast build rule for target. +ContinuousConfigure/fast: + $(MAKE) -f CMakeFiles/ContinuousConfigure.dir/build.make CMakeFiles/ContinuousConfigure.dir/build +.PHONY : ContinuousConfigure/fast + +#============================================================================= +# Target rules for targets named ContinuousBuild + +# Build rule for target. +ContinuousBuild: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousBuild +.PHONY : ContinuousBuild + +# fast build rule for target. +ContinuousBuild/fast: + $(MAKE) -f CMakeFiles/ContinuousBuild.dir/build.make CMakeFiles/ContinuousBuild.dir/build +.PHONY : ContinuousBuild/fast + +#============================================================================= +# Target rules for targets named NightlyConfigure + +# Build rule for target. +NightlyConfigure: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyConfigure +.PHONY : NightlyConfigure + +# fast build rule for target. +NightlyConfigure/fast: + $(MAKE) -f CMakeFiles/NightlyConfigure.dir/build.make CMakeFiles/NightlyConfigure.dir/build +.PHONY : NightlyConfigure/fast + +#============================================================================= +# Target rules for targets named NightlyMemoryCheck + +# Build rule for target. +NightlyMemoryCheck: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyMemoryCheck +.PHONY : NightlyMemoryCheck + +# fast build rule for target. +NightlyMemoryCheck/fast: + $(MAKE) -f CMakeFiles/NightlyMemoryCheck.dir/build.make CMakeFiles/NightlyMemoryCheck.dir/build +.PHONY : NightlyMemoryCheck/fast + +#============================================================================= +# Target rules for targets named ExperimentalTest + +# Build rule for target. +ExperimentalTest: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalTest +.PHONY : ExperimentalTest + +# fast build rule for target. +ExperimentalTest/fast: + $(MAKE) -f CMakeFiles/ExperimentalTest.dir/build.make CMakeFiles/ExperimentalTest.dir/build +.PHONY : ExperimentalTest/fast + +#============================================================================= +# Target rules for targets named ContinuousUpdate + +# Build rule for target. +ContinuousUpdate: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousUpdate +.PHONY : ContinuousUpdate + +# fast build rule for target. +ContinuousUpdate/fast: + $(MAKE) -f CMakeFiles/ContinuousUpdate.dir/build.make CMakeFiles/ContinuousUpdate.dir/build +.PHONY : ContinuousUpdate/fast + +#============================================================================= +# Target rules for targets named NightlyUpdate + +# Build rule for target. +NightlyUpdate: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyUpdate +.PHONY : NightlyUpdate + +# fast build rule for target. +NightlyUpdate/fast: + $(MAKE) -f CMakeFiles/NightlyUpdate.dir/build.make CMakeFiles/NightlyUpdate.dir/build +.PHONY : NightlyUpdate/fast + +#============================================================================= +# Target rules for targets named ExperimentalMemCheck + +# Build rule for target. +ExperimentalMemCheck: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalMemCheck +.PHONY : ExperimentalMemCheck + +# fast build rule for target. +ExperimentalMemCheck/fast: + $(MAKE) -f CMakeFiles/ExperimentalMemCheck.dir/build.make CMakeFiles/ExperimentalMemCheck.dir/build +.PHONY : ExperimentalMemCheck/fast + +#============================================================================= +# Target rules for targets named ExperimentalSubmit + +# Build rule for target. +ExperimentalSubmit: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalSubmit +.PHONY : ExperimentalSubmit + +# fast build rule for target. +ExperimentalSubmit/fast: + $(MAKE) -f CMakeFiles/ExperimentalSubmit.dir/build.make CMakeFiles/ExperimentalSubmit.dir/build +.PHONY : ExperimentalSubmit/fast + +#============================================================================= +# Target rules for targets named Experimental + +# Build rule for target. +Experimental: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 Experimental +.PHONY : Experimental + +# fast build rule for target. +Experimental/fast: + $(MAKE) -f CMakeFiles/Experimental.dir/build.make CMakeFiles/Experimental.dir/build +.PHONY : Experimental/fast + +#============================================================================= +# Target rules for targets named ContinuousCoverage + +# Build rule for target. +ContinuousCoverage: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousCoverage +.PHONY : ContinuousCoverage + +# fast build rule for target. +ContinuousCoverage/fast: + $(MAKE) -f CMakeFiles/ContinuousCoverage.dir/build.make CMakeFiles/ContinuousCoverage.dir/build +.PHONY : ContinuousCoverage/fast + +#============================================================================= +# Target rules for targets named ExperimentalConfigure + +# Build rule for target. +ExperimentalConfigure: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalConfigure +.PHONY : ExperimentalConfigure + +# fast build rule for target. +ExperimentalConfigure/fast: + $(MAKE) -f CMakeFiles/ExperimentalConfigure.dir/build.make CMakeFiles/ExperimentalConfigure.dir/build +.PHONY : ExperimentalConfigure/fast + +#============================================================================= +# Target rules for targets named Continuous + +# Build rule for target. +Continuous: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 Continuous +.PHONY : Continuous + +# fast build rule for target. +Continuous/fast: + $(MAKE) -f CMakeFiles/Continuous.dir/build.make CMakeFiles/Continuous.dir/build +.PHONY : Continuous/fast + +#============================================================================= +# Target rules for targets named test_utils + +# Build rule for target. +test_utils: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 test_utils +.PHONY : test_utils + +# fast build rule for target. +test_utils/fast: + $(MAKE) -f CMakeFiles/test_utils.dir/build.make CMakeFiles/test_utils.dir/build +.PHONY : test_utils/fast + +#============================================================================= +# Target rules for targets named utils + +# Build rule for target. +utils: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 utils +.PHONY : utils + +# fast build rule for target. +utils/fast: + $(MAKE) -f CMakeFiles/utils.dir/build.make CMakeFiles/utils.dir/build +.PHONY : utils/fast + +#============================================================================= +# Target rules for targets named Nightly + +# Build rule for target. +Nightly: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 Nightly +.PHONY : Nightly + +# fast build rule for target. +Nightly/fast: + $(MAKE) -f CMakeFiles/Nightly.dir/build.make CMakeFiles/Nightly.dir/build +.PHONY : Nightly/fast + +#============================================================================= +# Target rules for targets named NightlySubmit + +# Build rule for target. +NightlySubmit: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlySubmit +.PHONY : NightlySubmit + +# fast build rule for target. +NightlySubmit/fast: + $(MAKE) -f CMakeFiles/NightlySubmit.dir/build.make CMakeFiles/NightlySubmit.dir/build +.PHONY : NightlySubmit/fast + +#============================================================================= +# Target rules for targets named NightlyStart + +# Build rule for target. +NightlyStart: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyStart +.PHONY : NightlyStart + +# fast build rule for target. +NightlyStart/fast: + $(MAKE) -f CMakeFiles/NightlyStart.dir/build.make CMakeFiles/NightlyStart.dir/build +.PHONY : NightlyStart/fast + +#============================================================================= +# Target rules for targets named ExperimentalCoverage + +# Build rule for target. +ExperimentalCoverage: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalCoverage +.PHONY : ExperimentalCoverage + +# fast build rule for target. +ExperimentalCoverage/fast: + $(MAKE) -f CMakeFiles/ExperimentalCoverage.dir/build.make CMakeFiles/ExperimentalCoverage.dir/build +.PHONY : ExperimentalCoverage/fast + +#============================================================================= +# Target rules for targets named NightlyCoverage + +# Build rule for target. +NightlyCoverage: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyCoverage +.PHONY : NightlyCoverage + +# fast build rule for target. +NightlyCoverage/fast: + $(MAKE) -f CMakeFiles/NightlyCoverage.dir/build.make CMakeFiles/NightlyCoverage.dir/build +.PHONY : NightlyCoverage/fast + +#============================================================================= +# Target rules for targets named ExperimentalStart + +# Build rule for target. +ExperimentalStart: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalStart +.PHONY : ExperimentalStart + +# fast build rule for target. +ExperimentalStart/fast: + $(MAKE) -f CMakeFiles/ExperimentalStart.dir/build.make CMakeFiles/ExperimentalStart.dir/build +.PHONY : ExperimentalStart/fast + +#============================================================================= +# Target rules for targets named NightlyBuild + +# Build rule for target. +NightlyBuild: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 NightlyBuild +.PHONY : NightlyBuild + +# fast build rule for target. +NightlyBuild/fast: + $(MAKE) -f CMakeFiles/NightlyBuild.dir/build.make CMakeFiles/NightlyBuild.dir/build +.PHONY : NightlyBuild/fast + +#============================================================================= +# Target rules for targets named ExperimentalBuild + +# Build rule for target. +ExperimentalBuild: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalBuild +.PHONY : ExperimentalBuild + +# fast build rule for target. +ExperimentalBuild/fast: + $(MAKE) -f CMakeFiles/ExperimentalBuild.dir/build.make CMakeFiles/ExperimentalBuild.dir/build +.PHONY : ExperimentalBuild/fast + +#============================================================================= +# Target rules for targets named ExperimentalUpdate + +# Build rule for target. +ExperimentalUpdate: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ExperimentalUpdate +.PHONY : ExperimentalUpdate + +# fast build rule for target. +ExperimentalUpdate/fast: + $(MAKE) -f CMakeFiles/ExperimentalUpdate.dir/build.make CMakeFiles/ExperimentalUpdate.dir/build +.PHONY : ExperimentalUpdate/fast + +#============================================================================= +# Target rules for targets named ContinuousStart + +# Build rule for target. +ContinuousStart: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousStart +.PHONY : ContinuousStart + +# fast build rule for target. +ContinuousStart/fast: + $(MAKE) -f CMakeFiles/ContinuousStart.dir/build.make CMakeFiles/ContinuousStart.dir/build +.PHONY : ContinuousStart/fast + +#============================================================================= +# Target rules for targets named ContinuousMemCheck + +# Build rule for target. +ContinuousMemCheck: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousMemCheck +.PHONY : ContinuousMemCheck + +# fast build rule for target. +ContinuousMemCheck/fast: + $(MAKE) -f CMakeFiles/ContinuousMemCheck.dir/build.make CMakeFiles/ContinuousMemCheck.dir/build +.PHONY : ContinuousMemCheck/fast + +#============================================================================= +# Target rules for targets named ContinuousTest + +# Build rule for target. +ContinuousTest: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousTest +.PHONY : ContinuousTest + +# fast build rule for target. +ContinuousTest/fast: + $(MAKE) -f CMakeFiles/ContinuousTest.dir/build.make CMakeFiles/ContinuousTest.dir/build +.PHONY : ContinuousTest/fast + +#============================================================================= +# Target rules for targets named ContinuousSubmit + +# Build rule for target. +ContinuousSubmit: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 ContinuousSubmit +.PHONY : ContinuousSubmit + +# fast build rule for target. +ContinuousSubmit/fast: + $(MAKE) -f CMakeFiles/ContinuousSubmit.dir/build.make CMakeFiles/ContinuousSubmit.dir/build +.PHONY : ContinuousSubmit/fast + +#============================================================================= +# Target rules for targets named dist + +# Build rule for target. +dist: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 dist +.PHONY : dist + +# fast build rule for target. +dist/fast: + $(MAKE) -f _deps/cmocka-build/CMakeFiles/dist.dir/build.make _deps/cmocka-build/CMakeFiles/dist.dir/build +.PHONY : dist/fast + +#============================================================================= +# Target rules for targets named cmocka-static + +# Build rule for target. +cmocka-static: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 cmocka-static +.PHONY : cmocka-static + +# fast build rule for target. +cmocka-static/fast: + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build +.PHONY : cmocka-static/fast + +#============================================================================= +# Target rules for targets named cmocka + +# Build rule for target. +cmocka: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 cmocka +.PHONY : cmocka + +# fast build rule for target. +cmocka/fast: + $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build +.PHONY : cmocka/fast + +#============================================================================= +# Target rules for targets named docs + +# Build rule for target. +docs: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 docs +.PHONY : docs + +# fast build rule for target. +docs/fast: + $(MAKE) -f _deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make _deps/cmocka-build/doc/CMakeFiles/docs.dir/build +.PHONY : docs/fast + +home/cseguret/Projects/app-ethereum/src/utils2.o: home/cseguret/Projects/app-ethereum/src/utils2.c.o + +.PHONY : home/cseguret/Projects/app-ethereum/src/utils2.o + +# target to build an object file +home/cseguret/Projects/app-ethereum/src/utils2.c.o: + $(MAKE) -f CMakeFiles/utils.dir/build.make CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.o +.PHONY : home/cseguret/Projects/app-ethereum/src/utils2.c.o + +home/cseguret/Projects/app-ethereum/src/utils2.i: home/cseguret/Projects/app-ethereum/src/utils2.c.i + +.PHONY : home/cseguret/Projects/app-ethereum/src/utils2.i + +# target to preprocess a source file +home/cseguret/Projects/app-ethereum/src/utils2.c.i: + $(MAKE) -f CMakeFiles/utils.dir/build.make CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.i +.PHONY : home/cseguret/Projects/app-ethereum/src/utils2.c.i + +home/cseguret/Projects/app-ethereum/src/utils2.s: home/cseguret/Projects/app-ethereum/src/utils2.c.s + +.PHONY : home/cseguret/Projects/app-ethereum/src/utils2.s + +# target to generate assembly for a file +home/cseguret/Projects/app-ethereum/src/utils2.c.s: + $(MAKE) -f CMakeFiles/utils.dir/build.make CMakeFiles/utils.dir/home/cseguret/Projects/app-ethereum/src/utils2.c.s +.PHONY : home/cseguret/Projects/app-ethereum/src/utils2.c.s + +tests/utils.o: tests/utils.c.o + +.PHONY : tests/utils.o + +# target to build an object file +tests/utils.c.o: + $(MAKE) -f CMakeFiles/test_utils.dir/build.make CMakeFiles/test_utils.dir/tests/utils.c.o +.PHONY : tests/utils.c.o + +tests/utils.i: tests/utils.c.i + +.PHONY : tests/utils.i + +# target to preprocess a source file +tests/utils.c.i: + $(MAKE) -f CMakeFiles/test_utils.dir/build.make CMakeFiles/test_utils.dir/tests/utils.c.i +.PHONY : tests/utils.c.i + +tests/utils.s: tests/utils.c.s + +.PHONY : tests/utils.s + +# target to generate assembly for a file +tests/utils.c.s: + $(MAKE) -f CMakeFiles/test_utils.dir/build.make CMakeFiles/test_utils.dir/tests/utils.c.s +.PHONY : tests/utils.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... install/local" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... package_source" + @echo "... edit_cache" + @echo "... NightlyMemCheck" + @echo "... NightlyTest" + @echo "... ContinuousConfigure" + @echo "... ContinuousBuild" + @echo "... NightlyConfigure" + @echo "... NightlyMemoryCheck" + @echo "... ExperimentalTest" + @echo "... ContinuousUpdate" + @echo "... NightlyUpdate" + @echo "... ExperimentalMemCheck" + @echo "... ExperimentalSubmit" + @echo "... Experimental" + @echo "... ContinuousCoverage" + @echo "... ExperimentalConfigure" + @echo "... Continuous" + @echo "... test_utils" + @echo "... utils" + @echo "... Nightly" + @echo "... NightlySubmit" + @echo "... install" + @echo "... NightlyStart" + @echo "... ExperimentalCoverage" + @echo "... NightlyCoverage" + @echo "... ExperimentalStart" + @echo "... package" + @echo "... NightlyBuild" + @echo "... ExperimentalBuild" + @echo "... ExperimentalUpdate" + @echo "... ContinuousStart" + @echo "... ContinuousMemCheck" + @echo "... ContinuousTest" + @echo "... ContinuousSubmit" + @echo "... dist" + @echo "... cmocka-static" + @echo "... cmocka" + @echo "... docs" + @echo "... home/cseguret/Projects/app-ethereum/src/utils2.o" + @echo "... home/cseguret/Projects/app-ethereum/src/utils2.i" + @echo "... home/cseguret/Projects/app-ethereum/src/utils2.s" + @echo "... tests/utils.o" + @echo "... tests/utils.i" + @echo "... tests/utils.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/Testing/Temporary/CTestCostData.txt b/tests/unit/build/Testing/Temporary/CTestCostData.txt new file mode 100644 index 0000000..0d8c40c --- /dev/null +++ b/tests/unit/build/Testing/Temporary/CTestCostData.txt @@ -0,0 +1,3 @@ +test_main 4 0.000297836 +test_utils 5 0.000234637 +--- diff --git a/tests/unit/build/Testing/Temporary/LastTest.log b/tests/unit/build/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..ca19ecd --- /dev/null +++ b/tests/unit/build/Testing/Temporary/LastTest.log @@ -0,0 +1,23 @@ +Start testing: Mar 04 11:47 CET +---------------------------------------------------------- +1/1 Testing: test_utils +1/1 Test: test_utils +Command: "/home/cseguret/Projects/app-ethereum/tests/unit/build/test_utils" +Directory: /home/cseguret/Projects/app-ethereum/tests/unit/build +"test_utils" start time: Mar 04 11:47 CET +Output: +---------------------------------------------------------- +[==========] Running 1 test(s). +[ RUN ] null_test_success +[ OK ] null_test_success +[==========] 1 test(s) run. +[ PASSED ] 1 test(s). + +Test time = 0.00 sec +---------------------------------------------------------- +Test Passed. +"test_utils" end time: Mar 04 11:47 CET +"test_utils" time elapsed: 00:00:00 +---------------------------------------------------------- + +End testing: Mar 04 11:47 CET diff --git a/tests/unit/build/_deps/cmocka-build/CMakeFiles/CMakeDirectoryInformation.cmake b/tests/unit/build/_deps/cmocka-build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..f5ce8d9 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/cseguret/Projects/app-ethereum/tests/unit") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/cseguret/Projects/app-ethereum/tests/unit/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/DependInfo.cmake b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/build.make b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/build.make new file mode 100644 index 0000000..37b87cc --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/build.make @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for dist. + +# Include the progress variables for this target. +include _deps/cmocka-build/CMakeFiles/dist.dir/progress.make + +_deps/cmocka-build/CMakeFiles/dist: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/make package_source + +dist: _deps/cmocka-build/CMakeFiles/dist +dist: _deps/cmocka-build/CMakeFiles/dist.dir/build.make + +.PHONY : dist + +# Rule to build all files generated by this target. +_deps/cmocka-build/CMakeFiles/dist.dir/build: dist + +.PHONY : _deps/cmocka-build/CMakeFiles/dist.dir/build + +_deps/cmocka-build/CMakeFiles/dist.dir/clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && $(CMAKE_COMMAND) -P CMakeFiles/dist.dir/cmake_clean.cmake +.PHONY : _deps/cmocka-build/CMakeFiles/dist.dir/clean + +_deps/cmocka-build/CMakeFiles/dist.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : _deps/cmocka-build/CMakeFiles/dist.dir/depend + diff --git a/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/cmake_clean.cmake b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/cmake_clean.cmake new file mode 100644 index 0000000..656ce9f --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/dist" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/dist.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/progress.make b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/CMakeFiles/dist.dir/progress.make @@ -0,0 +1 @@ + diff --git a/tests/unit/build/_deps/cmocka-build/CMakeFiles/progress.marks b/tests/unit/build/_deps/cmocka-build/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/tests/unit/build/_deps/cmocka-build/CTestTestfile.cmake b/tests/unit/build/_deps/cmocka-build/CTestTestfile.cmake new file mode 100644 index 0000000..99d1e6e --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/CTestTestfile.cmake @@ -0,0 +1,9 @@ +# CMake generated Testfile for +# Source directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src +# Build directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("include") +subdirs("src") +subdirs("doc") diff --git a/tests/unit/build/_deps/cmocka-build/DartConfiguration.tcl b/tests/unit/build/_deps/cmocka-build/DartConfiguration.tcl new file mode 100644 index 0000000..ef33874 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/DartConfiguration.tcl @@ -0,0 +1,105 @@ +# This file is configured by CMake automatically as DartConfiguration.tcl +# If you choose not to use CMake, this file may be hand configured, by +# filling in the required variables. + + +# Configuration directories and files +SourceDirectory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src +BuildDirectory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build + +# Where to place the cost data store +CostDataFile: + +# Site is something like machine.domain, i.e. pragmatic.crd +Site: LPPS0065 + +# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++ +BuildName: Linux-cc + +# Subprojects +LabelsForSubprojects: + +# Submission information +SubmitURL: http:// + +# Dashboard start time +NightlyStartTime: 00:00:00 EDT + +# Commands for the build/test/submit cycle +ConfigureCommand: "/usr/bin/cmake" "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" +MakeCommand: /usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}" +DefaultCTestConfigurationType: Release + +# version control +UpdateVersionOnly: + +# CVS options +# Default is "-d -P -A" +CVSCommand: CVSCOMMAND-NOTFOUND +CVSUpdateOptions: -d -A -P + +# Subversion options +SVNCommand: SVNCOMMAND-NOTFOUND +SVNOptions: +SVNUpdateOptions: + +# Git options +GITCommand: /usr/bin/git +GITInitSubmodules: +GITUpdateOptions: +GITUpdateCustom: + +# Perforce options +P4Command: P4COMMAND-NOTFOUND +P4Client: +P4Options: +P4UpdateOptions: +P4UpdateCustom: + +# Generic update command +UpdateCommand: /usr/bin/git +UpdateOptions: +UpdateType: true + +# Compiler info +Compiler: +CompilerVersion: + +# Dynamic analysis (MemCheck) +PurifyCommand: +ValgrindCommand: +ValgrindCommandOptions: +MemoryCheckType: +MemoryCheckSanitizerOptions: +MemoryCheckCommand: MEMORYCHECK_COMMAND-NOTFOUND +MemoryCheckCommandOptions: +MemoryCheckSuppressionFile: + +# Coverage +CoverageCommand: /usr/bin/gcov +CoverageExtraFlags: -l + +# Cluster commands +SlurmBatchCommand: SLURM_SBATCH_COMMAND-NOTFOUND +SlurmRunCommand: SLURM_SRUN_COMMAND-NOTFOUND + +# Testing options +# TimeOut is the amount of time in seconds to wait for processes +# to complete during testing. After TimeOut seconds, the +# process will be summarily terminated. +# Currently set to 25 minutes +TimeOut: 1500 + +# During parallel testing CTest will not start a new test if doing +# so would cause the system load to exceed this value. +TestLoad: + +UseLaunchers: +CurlOptions: +# warning, if you add new options here that have to do with submit, +# you have to update cmCTestSubmitCommand.cxx + +# For CTest submissions that timeout, these options +# specify behavior for retrying the submission +CTestSubmitRetryDelay: 5 +CTestSubmitRetryCount: 3 diff --git a/tests/unit/build/_deps/cmocka-build/Makefile b/tests/unit/build/_deps/cmocka-build/Makefile new file mode 100644 index 0000000..3aef2a8 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/Makefile @@ -0,0 +1,236 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/cseguret/Projects/app-ethereum/tests/unit/build/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source + +.PHONY : package_source/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\" \"cmocka-header\" \"cmocka-library\" \"devel\" \"pkgconfig\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package + +.PHONY : package/fast + +# The main all target +all: cmake_check_build_system + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/CMakeFiles/progress.marks + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/cmocka-build/CMakeFiles/dist.dir/rule: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/CMakeFiles/dist.dir/rule +.PHONY : _deps/cmocka-build/CMakeFiles/dist.dir/rule + +# Convenience name for target. +dist: _deps/cmocka-build/CMakeFiles/dist.dir/rule + +.PHONY : dist + +# fast build rule for target. +dist/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/CMakeFiles/dist.dir/build.make _deps/cmocka-build/CMakeFiles/dist.dir/build +.PHONY : dist/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... install/local" + @echo "... edit_cache" + @echo "... test" + @echo "... package_source" + @echo "... install" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... package" + @echo "... dist" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/_deps/cmocka-build/cmake_install.cmake b/tests/unit/build/_deps/cmocka-build/cmake_install.cmake new file mode 100644 index 0000000..7186233 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/cmake_install.cmake @@ -0,0 +1,58 @@ +# Install script for directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xpkgconfigx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/cmocka.pc") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xdevelx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/cmocka" TYPE FILE FILES + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/cmocka-config.cmake" + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/cmocka-config-version.cmake" + ) +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/cmake_install.cmake") + include("/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/cmake_install.cmake") + include("/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/cmake_install.cmake") + +endif() + diff --git a/tests/unit/build/_deps/cmocka-build/cmocka-config-version.cmake b/tests/unit/build/_deps/cmocka-build/cmocka-config-version.cmake new file mode 100644 index 0000000..4f9f442 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/cmocka-config-version.cmake @@ -0,0 +1,37 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. +# The variable CVF_VERSION must be set before calling configure_file(). + +set(PACKAGE_VERSION "1.1.5") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() + + +# if the installed project requested no architecture check, don't perform the check +if("FALSE") + return() +endif() + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/tests/unit/build/_deps/cmocka-build/cmocka-config.cmake b/tests/unit/build/_deps/cmocka-build/cmocka-config.cmake new file mode 100644 index 0000000..eb8f592 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/cmocka-config.cmake @@ -0,0 +1,39 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was cmocka-config.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### + +get_filename_component(CMOCKA_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) + +if (EXISTS "${CMOCKA_CMAKE_DIR}/CMakeCache.txt") + # In build tree + include(${CMOCKA_CMAKE_DIR}/cmocka-build-tree-settings.cmake) +else() + set(CMOCKA_INCLUDE_DIR ${PACKAGE_PREFIX_DIR}/include) +endif() + +set(CMOCKA_LIBRARY ${PACKAGE_PREFIX_DIR}/lib/libcmocka.so) +set(CMOCKA_LIBRARIES ${PACKAGE_PREFIX_DIR}/lib/libcmocka.so) + +mark_as_advanced(CMOCKA_LIBRARY CMOCKA_INCLUDE_DIR) diff --git a/tests/unit/build/_deps/cmocka-build/cmocka.pc b/tests/unit/build/_deps/cmocka-build/cmocka.pc new file mode 100644 index 0000000..0906145 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/cmocka.pc @@ -0,0 +1,5 @@ +Name: cmocka +Description: The cmocka unit testing library +Version: 1.1.5 +Libs: -L/usr/local/lib -lcmocka +Cflags: -I/usr/local/include diff --git a/tests/unit/build/_deps/cmocka-build/config.h b/tests/unit/build/_deps/cmocka-build/config.h new file mode 100644 index 0000000..75ca415 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/config.h @@ -0,0 +1,169 @@ +/* Name of package */ +#define PACKAGE "cmocka" + +/* Version number of package */ +#define VERSION "1.1.5" + +/* #undef LOCALEDIR */ +/* #undef DATADIR */ +#define LIBDIR "lib" +#define PLUGINDIR "-0" +/* #undef SYSCONFDIR */ +#define BINARYDIR "/home/cseguret/Projects/app-ethereum/tests/unit/build" +#define SOURCEDIR "/home/cseguret/Projects/app-ethereum/tests/unit" + +/************************** HEADER FILES *************************/ + +/* Define to 1 if you have the header file. */ +#define HAVE_ASSERT_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_DLFCN_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_IO_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_MALLOC_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SETJMP_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SIGNAL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDARG_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDDEF_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDIO_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_TIME_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/**************************** STRUCTS ****************************/ + +#define HAVE_STRUCT_TIMESPEC 1 + +/*************************** FUNCTIONS ***************************/ + +/* Define to 1 if you have the `calloc' function. */ +#define HAVE_CALLOC 1 + +/* Define to 1 if you have the `exit' function. */ +#define HAVE_EXIT 1 + +/* Define to 1 if you have the `fprintf' function. */ +#define HAVE_FPRINTF 1 + +/* Define to 1 if you have the `snprintf' function. */ +#define HAVE_SNPRINTF 1 + +/* Define to 1 if you have the `_snprintf' function. */ +/* #undef HAVE__SNPRINTF */ + +/* Define to 1 if you have the `_snprintf_s' function. */ +/* #undef HAVE__SNPRINTF_S */ + +/* Define to 1 if you have the `vsnprintf' function. */ +#define HAVE_VSNPRINTF 1 + +/* Define to 1 if you have the `_vsnprintf' function. */ +/* #undef HAVE__VSNPRINTF */ + +/* Define to 1 if you have the `_vsnprintf_s' function. */ +/* #undef HAVE__VSNPRINTF_S */ + +/* Define to 1 if you have the `free' function. */ +#define HAVE_FREE 1 + +/* Define to 1 if you have the `longjmp' function. */ +#define HAVE_LONGJMP 1 + +/* Define to 1 if you have the `siglongjmp' function. */ +#define HAVE_SIGLONGJMP 1 + +/* Define to 1 if you have the `malloc' function. */ +#define HAVE_MALLOC 1 + +/* Define to 1 if you have the `memcpy' function. */ +#define HAVE_MEMCPY 1 + +/* Define to 1 if you have the `memset' function. */ +#define HAVE_MEMSET 1 + +/* Define to 1 if you have the `printf' function. */ +#define HAVE_PRINTF 1 + +/* Define to 1 if you have the `setjmp' function. */ +#define HAVE_SETJMP 1 + +/* Define to 1 if you have the `signal' function. */ +#define HAVE_SIGNAL 1 + +/* Define to 1 if you have the `snprintf' function. */ +#define HAVE_SNPRINTF 1 + +/* Define to 1 if you have the `strcmp' function. */ +#define HAVE_STRCMP 1 + +/* Define to 1 if you have the `strcpy' function. */ +/* #undef HAVE_STRCPY */ + +/* Define to 1 if you have the `vsnprintf' function. */ +#define HAVE_VSNPRINTF 1 + +/* Define to 1 if you have the `strsignal' function. */ +#define HAVE_STRSIGNAL 1 + +/* Define to 1 if you have the `clock_gettime' function. */ +#define HAVE_CLOCK_GETTIME 1 + +/**************************** OPTIONS ****************************/ + +/* Check if we have TLS support with GCC */ +#define HAVE_GCC_THREAD_LOCAL_STORAGE 1 + +/* Check if we have TLS support with MSVC */ +/* #undef HAVE_MSVC_THREAD_LOCAL_STORAGE */ + +/* Check if we have CLOCK_REALTIME for clock_gettime() */ +#define HAVE_CLOCK_REALTIME 1 + +/*************************** ENDIAN *****************************/ + +#define WORDS_SIZEOF_VOID_P 8 + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +/* #undef WORDS_BIGENDIAN */ diff --git a/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/CMakeDirectoryInformation.cmake b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..f5ce8d9 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/cseguret/Projects/app-ethereum/tests/unit") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/cseguret/Projects/app-ethereum/tests/unit/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/cmake_directory_clean.cmake b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/cmake_directory_clean.cmake new file mode 100644 index 0000000..4c35bb4 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/cmake_directory_clean.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "_deps/cmocka-build/doc/html" +) diff --git a/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/DependInfo.cmake b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make new file mode 100644 index 0000000..a93207c --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make @@ -0,0 +1,78 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Utility rule file for docs. + +# Include the progress variables for this target. +include _deps/cmocka-build/doc/CMakeFiles/docs.dir/progress.make + +_deps/cmocka-build/doc/CMakeFiles/docs: _deps/cmocka-build/doc/Doxyfile.docs + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generate API documentation for docs" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc && /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc && /usr/bin/doxygen /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/Doxyfile.docs + +docs: _deps/cmocka-build/doc/CMakeFiles/docs +docs: _deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make + +.PHONY : docs + +# Rule to build all files generated by this target. +_deps/cmocka-build/doc/CMakeFiles/docs.dir/build: docs + +.PHONY : _deps/cmocka-build/doc/CMakeFiles/docs.dir/build + +_deps/cmocka-build/doc/CMakeFiles/docs.dir/clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc && $(CMAKE_COMMAND) -P CMakeFiles/docs.dir/cmake_clean.cmake +.PHONY : _deps/cmocka-build/doc/CMakeFiles/docs.dir/clean + +_deps/cmocka-build/doc/CMakeFiles/docs.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : _deps/cmocka-build/doc/CMakeFiles/docs.dir/depend + diff --git a/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/cmake_clean.cmake b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/cmake_clean.cmake new file mode 100644 index 0000000..ae753a3 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/docs" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/docs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/progress.make b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/progress.make new file mode 100644 index 0000000..b9ea7bd --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/docs.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 5 + diff --git a/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/progress.marks b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/progress.marks new file mode 100644 index 0000000..573541a --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/tests/unit/build/_deps/cmocka-build/doc/CTestTestfile.cmake b/tests/unit/build/_deps/cmocka-build/doc/CTestTestfile.cmake new file mode 100644 index 0000000..a452292 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc +# Build directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/tests/unit/build/_deps/cmocka-build/doc/Doxyfile.docs b/tests/unit/build/_deps/cmocka-build/doc/Doxyfile.docs new file mode 100644 index 0000000..cd04d36 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/Doxyfile.docs @@ -0,0 +1,280 @@ +# +# DO NOT EDIT! THIS FILE WAS GENERATED BY CMAKE! +# + +DOXYFILE_ENCODING = UTF-8 +PROJECT_NAME = cmocka +PROJECT_NUMBER = 1.1.5 +PROJECT_BRIEF = "Unit testing library with mock support" +PROJECT_LOGO = +OUTPUT_DIRECTORY = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc +CREATE_SUBDIRS = NO +ALLOW_UNICODE_NAMES = NO +OUTPUT_LANGUAGE = English +OUTPUT_TEXT_DIRECTION = None +BRIEF_MEMBER_DESC = YES +REPEAT_BRIEF = YES +ABBREVIATE_BRIEF = "The $name class" "The $name widget" "The $name file" is provides specifies contains represents a an the +ALWAYS_DETAILED_SEC = NO +INLINE_INHERITED_MEMB = NO +FULL_PATH_NAMES = YES +STRIP_FROM_PATH = +STRIP_FROM_INC_PATH = +SHORT_NAMES = NO +JAVADOC_AUTOBRIEF = NO +JAVADOC_BANNER = NO +QT_AUTOBRIEF = NO +MULTILINE_CPP_IS_BRIEF = NO +INHERIT_DOCS = YES +SEPARATE_MEMBER_PAGES = NO +TAB_SIZE = 4 +ALIASES = +TCL_SUBST = +OPTIMIZE_OUTPUT_FOR_C = YES +OPTIMIZE_OUTPUT_JAVA = NO +OPTIMIZE_FOR_FORTRAN = NO +OPTIMIZE_OUTPUT_VHDL = NO +OPTIMIZE_OUTPUT_SLICE = NO +EXTENSION_MAPPING = +MARKDOWN_SUPPORT = YES +TOC_INCLUDE_HEADINGS = 5 +AUTOLINK_SUPPORT = YES +BUILTIN_STL_SUPPORT = NO +CPP_CLI_SUPPORT = NO +SIP_SUPPORT = NO +IDL_PROPERTY_SUPPORT = YES +DISTRIBUTE_GROUP_DOC = NO +GROUP_NESTED_COMPOUNDS = NO +SUBGROUPING = YES +INLINE_GROUPED_CLASSES = NO +INLINE_SIMPLE_STRUCTS = NO +TYPEDEF_HIDES_STRUCT = NO +LOOKUP_CACHE_SIZE = 0 +EXTRACT_ALL = NO +EXTRACT_PRIVATE = NO +EXTRACT_PRIV_VIRTUAL = NO +EXTRACT_PACKAGE = NO +EXTRACT_STATIC = NO +EXTRACT_LOCAL_CLASSES = YES +EXTRACT_LOCAL_METHODS = NO +EXTRACT_ANON_NSPACES = NO +HIDE_UNDOC_MEMBERS = NO +HIDE_UNDOC_CLASSES = NO +HIDE_FRIEND_COMPOUNDS = NO +HIDE_IN_BODY_DOCS = NO +INTERNAL_DOCS = NO +CASE_SENSE_NAMES = YES +HIDE_SCOPE_NAMES = NO +HIDE_COMPOUND_REFERENCE= NO +SHOW_INCLUDE_FILES = YES +SHOW_GROUPED_MEMB_INC = NO +FORCE_LOCAL_INCLUDES = NO +INLINE_INFO = YES +SORT_MEMBER_DOCS = YES +SORT_BRIEF_DOCS = NO +SORT_MEMBERS_CTORS_1ST = NO +SORT_GROUP_NAMES = NO +SORT_BY_SCOPE_NAME = NO +STRICT_PROTO_MATCHING = NO +GENERATE_TODOLIST = YES +GENERATE_TESTLIST = YES +GENERATE_BUGLIST = YES +GENERATE_DEPRECATEDLIST= YES +ENABLED_SECTIONS = +MAX_INITIALIZER_LINES = 30 +SHOW_USED_FILES = YES +SHOW_FILES = YES +SHOW_NAMESPACES = YES +FILE_VERSION_FILTER = +LAYOUT_FILE = +CITE_BIB_FILES = +QUIET = NO +WARNINGS = YES +WARN_IF_UNDOCUMENTED = YES +WARN_IF_DOC_ERROR = YES +WARN_NO_PARAMDOC = NO +WARN_AS_ERROR = NO +WARN_FORMAT = "$file:$line: $text" +WARN_LOGFILE = +INPUT = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc +INPUT_ENCODING = UTF-8 +FILE_PATTERNS = *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.idl *.ddl *.odl *.h *.hh *.hxx *.hpp *.h++ *.cs *.d *.php *.php4 *.php5 *.phtml *.inc *.m *.markdown *.md *.mm *.dox *.doc *.txt *.py *.pyw *.f90 *.f95 *.f03 *.f08 *.f *.for *.tcl *.vhd *.vhdl *.ucf *.qsf *.ice +RECURSIVE = YES +EXCLUDE = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style +EXCLUDE_SYMLINKS = NO +EXCLUDE_PATTERNS = */.git/* */.svn/* */.hg/* */CMakeFiles/* */_CPack_Packages/* DartConfiguration.tcl CMakeLists.txt CMakeCache.txt +EXCLUDE_SYMBOLS = +EXAMPLE_PATH = +EXAMPLE_PATTERNS = * +EXAMPLE_RECURSIVE = NO +IMAGE_PATH = +INPUT_FILTER = +FILTER_PATTERNS = +FILTER_SOURCE_FILES = NO +FILTER_SOURCE_PATTERNS = +USE_MDFILE_AS_MAINPAGE = +SOURCE_BROWSER = NO +INLINE_SOURCES = NO +STRIP_CODE_COMMENTS = YES +REFERENCED_BY_RELATION = NO +REFERENCES_RELATION = NO +REFERENCES_LINK_SOURCE = YES +SOURCE_TOOLTIPS = YES +USE_HTAGS = NO +VERBATIM_HEADERS = YES +CLANG_ASSISTED_PARSING = NO +CLANG_OPTIONS = +CLANG_DATABASE_PATH = +ALPHABETICAL_INDEX = YES +COLS_IN_ALPHA_INDEX = 5 +IGNORE_PREFIX = +GENERATE_HTML = YES +HTML_OUTPUT = html +HTML_FILE_EXTENSION = .html +HTML_HEADER = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/header.html +HTML_FOOTER = +HTML_STYLESHEET = +HTML_EXTRA_STYLESHEET = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/that_style.css +HTML_EXTRA_FILES = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/nav_edge_left.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/nav_edge_right.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/nav_edge_inter.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/sync_off.png /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/sync_on.png /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/splitbar_handle.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/doc.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/mag_glass.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/folderclosed.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/img/folderopen.svg /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc/that_style/js/striped_bg.js +HTML_COLORSTYLE_HUE = 220 +HTML_COLORSTYLE_SAT = 100 +HTML_COLORSTYLE_GAMMA = 80 +HTML_TIMESTAMP = NO +HTML_DYNAMIC_MENUS = YES +HTML_DYNAMIC_SECTIONS = NO +HTML_INDEX_NUM_ENTRIES = 100 +GENERATE_DOCSET = NO +DOCSET_FEEDNAME = "Doxygen generated docs" +DOCSET_BUNDLE_ID = org.doxygen.Project +DOCSET_PUBLISHER_ID = org.doxygen.Publisher +DOCSET_PUBLISHER_NAME = Publisher +GENERATE_HTMLHELP = NO +CHM_FILE = +HHC_LOCATION = +GENERATE_CHI = NO +CHM_INDEX_ENCODING = +BINARY_TOC = NO +TOC_EXPAND = NO +GENERATE_QHP = NO +QCH_FILE = +QHP_NAMESPACE = org.doxygen.Project +QHP_VIRTUAL_FOLDER = doc +QHP_CUST_FILTER_NAME = +QHP_CUST_FILTER_ATTRS = +QHP_SECT_FILTER_ATTRS = +QHG_LOCATION = +GENERATE_ECLIPSEHELP = NO +ECLIPSE_DOC_ID = org.doxygen.Project +DISABLE_INDEX = NO +GENERATE_TREEVIEW = NO +ENUM_VALUES_PER_LINE = 4 +TREEVIEW_WIDTH = 250 +EXT_LINKS_IN_WINDOW = NO +FORMULA_FONTSIZE = 10 +FORMULA_TRANSPARENT = YES +FORMULA_MACROFILE = +USE_MATHJAX = NO +MATHJAX_FORMAT = HTML-CSS +MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/ +MATHJAX_EXTENSIONS = +MATHJAX_CODEFILE = +SEARCHENGINE = YES +SERVER_BASED_SEARCH = NO +EXTERNAL_SEARCH = NO +SEARCHENGINE_URL = +SEARCHDATA_FILE = searchdata.xml +EXTERNAL_SEARCH_ID = +EXTRA_SEARCH_MAPPINGS = +GENERATE_LATEX = NO +LATEX_OUTPUT = latex +LATEX_CMD_NAME = +MAKEINDEX_CMD_NAME = makeindex +LATEX_MAKEINDEX_CMD = makeindex +COMPACT_LATEX = NO +PAPER_TYPE = a4 +EXTRA_PACKAGES = +LATEX_HEADER = +LATEX_FOOTER = +LATEX_EXTRA_STYLESHEET = +LATEX_EXTRA_FILES = +PDF_HYPERLINKS = YES +USE_PDFLATEX = YES +LATEX_BATCHMODE = NO +LATEX_HIDE_INDICES = NO +LATEX_SOURCE_CODE = NO +LATEX_BIB_STYLE = plain +LATEX_TIMESTAMP = NO +LATEX_EMOJI_DIRECTORY = +GENERATE_RTF = NO +RTF_OUTPUT = rtf +COMPACT_RTF = NO +RTF_HYPERLINKS = NO +RTF_STYLESHEET_FILE = +RTF_EXTENSIONS_FILE = +RTF_SOURCE_CODE = NO +GENERATE_MAN = NO +MAN_OUTPUT = man +MAN_EXTENSION = .3 +MAN_SUBDIR = +MAN_LINKS = NO +GENERATE_XML = NO +XML_OUTPUT = xml +XML_PROGRAMLISTING = YES +XML_NS_MEMB_FILE_SCOPE = NO +GENERATE_DOCBOOK = NO +DOCBOOK_OUTPUT = docbook +DOCBOOK_PROGRAMLISTING = NO +GENERATE_AUTOGEN_DEF = NO +GENERATE_PERLMOD = NO +PERLMOD_LATEX = NO +PERLMOD_PRETTY = YES +PERLMOD_MAKEVAR_PREFIX = +ENABLE_PREPROCESSING = YES +MACRO_EXPANSION = NO +EXPAND_ONLY_PREDEF = NO +SEARCH_INCLUDES = YES +INCLUDE_PATH = +INCLUDE_FILE_PATTERNS = +PREDEFINED = DOXYGEN CMOCKA_PRINTF_ATTRIBUTE ( x,y ) +EXPAND_AS_DEFINED = +SKIP_FUNCTION_MACROS = YES +TAGFILES = +GENERATE_TAGFILE = +ALLEXTERNALS = NO +EXTERNAL_GROUPS = YES +EXTERNAL_PAGES = YES +CLASS_DIAGRAMS = YES +DIA_PATH = +HIDE_UNDOC_RELATIONS = YES +HAVE_DOT = NO +DOT_NUM_THREADS = 0 +DOT_FONTNAME = Helvetica +DOT_FONTSIZE = 10 +DOT_FONTPATH = +CLASS_GRAPH = YES +COLLABORATION_GRAPH = YES +GROUP_GRAPHS = YES +UML_LOOK = NO +UML_LIMIT_NUM_FIELDS = 10 +TEMPLATE_RELATIONS = NO +INCLUDE_GRAPH = YES +INCLUDED_BY_GRAPH = YES +CALL_GRAPH = NO +CALLER_GRAPH = NO +GRAPHICAL_HIERARCHY = YES +DIRECTORY_GRAPH = YES +DOT_IMAGE_FORMAT = png +INTERACTIVE_SVG = NO +DOT_PATH = +DOTFILE_DIRS = +MSCFILE_DIRS = +DIAFILE_DIRS = +PLANTUML_JAR_PATH = +PLANTUML_CFG_FILE = +PLANTUML_INCLUDE_PATH = +DOT_GRAPH_MAX_NODES = 50 +MAX_DOT_GRAPH_DEPTH = 0 +DOT_TRANSPARENT = NO +DOT_MULTI_TARGETS = YES +GENERATE_LEGEND = YES +DOT_CLEANUP = YES diff --git a/tests/unit/build/_deps/cmocka-build/doc/Makefile b/tests/unit/build/_deps/cmocka-build/doc/Makefile new file mode 100644 index 0000000..003c4e1 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/Makefile @@ -0,0 +1,236 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/cseguret/Projects/app-ethereum/tests/unit/build/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source + +.PHONY : package_source/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\" \"cmocka-header\" \"cmocka-library\" \"devel\" \"pkgconfig\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package + +.PHONY : package/fast + +# The main all target +all: cmake_check_build_system + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/doc/CMakeFiles/progress.marks + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/doc/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/doc/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/doc/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/doc/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/cmocka-build/doc/CMakeFiles/docs.dir/rule: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/doc/CMakeFiles/docs.dir/rule +.PHONY : _deps/cmocka-build/doc/CMakeFiles/docs.dir/rule + +# Convenience name for target. +docs: _deps/cmocka-build/doc/CMakeFiles/docs.dir/rule + +.PHONY : docs + +# fast build rule for target. +docs/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/doc/CMakeFiles/docs.dir/build.make _deps/cmocka-build/doc/CMakeFiles/docs.dir/build +.PHONY : docs/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... install/local" + @echo "... edit_cache" + @echo "... test" + @echo "... package_source" + @echo "... install" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... package" + @echo "... docs" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/_deps/cmocka-build/doc/cmake_install.cmake b/tests/unit/build/_deps/cmocka-build/doc/cmake_install.cmake new file mode 100644 index 0000000..d58a1b9 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/doc/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/doc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/CMakeDirectoryInformation.cmake b/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..f5ce8d9 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/cseguret/Projects/app-ethereum/tests/unit") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/cseguret/Projects/app-ethereum/tests/unit/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/progress.marks b/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/progress.marks new file mode 100644 index 0000000..573541a --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/progress.marks @@ -0,0 +1 @@ +0 diff --git a/tests/unit/build/_deps/cmocka-build/include/CTestTestfile.cmake b/tests/unit/build/_deps/cmocka-build/include/CTestTestfile.cmake new file mode 100644 index 0000000..957df3d --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/include/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include +# Build directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/tests/unit/build/_deps/cmocka-build/include/Makefile b/tests/unit/build/_deps/cmocka-build/include/Makefile new file mode 100644 index 0000000..c10e71d --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/include/Makefile @@ -0,0 +1,220 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/cseguret/Projects/app-ethereum/tests/unit/build/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source + +.PHONY : package_source/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\" \"cmocka-header\" \"cmocka-library\" \"devel\" \"pkgconfig\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package + +.PHONY : package/fast + +# The main all target +all: cmake_check_build_system + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/include/CMakeFiles/progress.marks + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/include/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/include/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/include/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/include/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... install/local" + @echo "... edit_cache" + @echo "... test" + @echo "... package_source" + @echo "... install" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... package" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/_deps/cmocka-build/include/cmake_install.cmake b/tests/unit/build/_deps/cmocka-build/include/cmake_install.cmake new file mode 100644 index 0000000..4238370 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/include/cmake_install.cmake @@ -0,0 +1,46 @@ +# Install script for directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xcmocka-headerx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE FILE FILES + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include/cmocka.h" + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include/cmocka_pbc.h" + ) +endif() + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/CMakeDirectoryInformation.cmake b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..f5ce8d9 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/cseguret/Projects/app-ethereum/tests/unit") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/cseguret/Projects/app-ethereum/tests/unit/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/C.includecache b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/C.includecache new file mode 100644 index 0000000..80ddede --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/C.includecache @@ -0,0 +1,58 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c +config.h +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/config.h +malloc.h +- +inttypes.h +- +signal.h +- +strings.h +- +stdint.h +- +setjmp.h +- +stdarg.h +- +stddef.h +- +stdio.h +- +stdlib.h +- +string.h +- +time.h +- +float.h +- +cmocka_platform.h +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka_platform.h +cmocka.h +- +cmocka_private.h +- + +_deps/cmocka-build/config.h + +_deps/cmocka-src/include/cmocka.h + +_deps/cmocka-src/include/cmocka_private.h +config.h +_deps/cmocka-src/include/config.h +stdint.h +- +windows.h +- +stdio.h +- + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/DependInfo.cmake b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/DependInfo.cmake new file mode 100644 index 0000000..a64255c --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/DependInfo.cmake @@ -0,0 +1,24 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c" "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "_deps/cmocka-build/src" + "_deps/cmocka-src/src" + "_deps/cmocka-build" + "_deps/cmocka-src/include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make new file mode 100644 index 0000000..bd94af6 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Include any dependencies generated for this target. +include _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend.make + +# Include the progress variables for this target. +include _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/flags.make + +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/flags.make +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o: _deps/cmocka-src/src/cmocka.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/cmocka-static.dir/cmocka.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c + +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/cmocka-static.dir/cmocka.c.i" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c > CMakeFiles/cmocka-static.dir/cmocka.c.i + +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/cmocka-static.dir/cmocka.c.s" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c -o CMakeFiles/cmocka-static.dir/cmocka.c.s + +# Object files for target cmocka-static +cmocka__static_OBJECTS = \ +"CMakeFiles/cmocka-static.dir/cmocka.c.o" + +# External object files for target cmocka-static +cmocka__static_EXTERNAL_OBJECTS = + +_deps/cmocka-build/src/libcmocka-static.a: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o +_deps/cmocka-build/src/libcmocka-static.a: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make +_deps/cmocka-build/src/libcmocka-static.a: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libcmocka-static.a" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && $(CMAKE_COMMAND) -P CMakeFiles/cmocka-static.dir/cmake_clean_target.cmake + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cmocka-static.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build: _deps/cmocka-build/src/libcmocka-static.a + +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build + +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && $(CMAKE_COMMAND) -P CMakeFiles/cmocka-static.dir/cmake_clean.cmake +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/clean + +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmake_clean.cmake b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmake_clean.cmake new file mode 100644 index 0000000..588e3f0 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/cmocka-static.dir/cmocka.c.o" + "libcmocka-static.a" + "libcmocka-static.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/cmocka-static.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmake_clean_target.cmake b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..4f5f336 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libcmocka-static.a" +) diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.gcno b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.gcno new file mode 100644 index 0000000..64f874c Binary files /dev/null and b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.gcno differ diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o new file mode 100644 index 0000000..e42f94b Binary files /dev/null and b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o differ diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend.internal b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend.internal new file mode 100644 index 0000000..622b313 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend.internal @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o + /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c + _deps/cmocka-build/config.h + _deps/cmocka-src/include/cmocka.h + _deps/cmocka-src/include/cmocka_private.h diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend.make new file mode 100644 index 0000000..043468a --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/depend.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o: _deps/cmocka-src/src/cmocka.c +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o: _deps/cmocka-build/config.h +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o: _deps/cmocka-src/include/cmocka.h +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o: _deps/cmocka-src/include/cmocka_private.h + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/flags.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/flags.make new file mode 100644 index 0000000..95828d1 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -pedantic -g -O0 --coverage -fPIC -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Wimplicit-fallthrough -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat -Wformat-security -Werror=format-security -fno-common -fstack-protector-strong -fstack-clash-protection -DHAVE_CONFIG_H -std=gnu11 + +C_DEFINES = + +C_INCLUDES = -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/link.txt b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/link.txt new file mode 100644 index 0000000..95ba116 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libcmocka-static.a CMakeFiles/cmocka-static.dir/cmocka.c.o +/usr/bin/ranlib libcmocka-static.a diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/progress.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/progress.make new file mode 100644 index 0000000..8c8fb6f --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 3 +CMAKE_PROGRESS_2 = 4 + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/C.includecache b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/C.includecache new file mode 100644 index 0000000..80ddede --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/C.includecache @@ -0,0 +1,58 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c +config.h +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/config.h +malloc.h +- +inttypes.h +- +signal.h +- +strings.h +- +stdint.h +- +setjmp.h +- +stdarg.h +- +stddef.h +- +stdio.h +- +stdlib.h +- +string.h +- +time.h +- +float.h +- +cmocka_platform.h +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka_platform.h +cmocka.h +- +cmocka_private.h +- + +_deps/cmocka-build/config.h + +_deps/cmocka-src/include/cmocka.h + +_deps/cmocka-src/include/cmocka_private.h +config.h +_deps/cmocka-src/include/config.h +stdint.h +- +windows.h +- +stdio.h +- + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/DependInfo.cmake b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/DependInfo.cmake new file mode 100644 index 0000000..2318ce4 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/DependInfo.cmake @@ -0,0 +1,36 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c" "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "cmocka_EXPORTS" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "_deps/cmocka-build/src" + "_deps/cmocka-src/src" + "_deps/cmocka-build" + "_deps/cmocka-src/include" + ) + +# Pairs of files generated by the same build rule. +set(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka.so" "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0.7.0" + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0" "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0.7.0" + ) + + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make new file mode 100644 index 0000000..e97391e --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make @@ -0,0 +1,105 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +# Include any dependencies generated for this target. +include _deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend.make + +# Include the progress variables for this target. +include _deps/cmocka-build/src/CMakeFiles/cmocka.dir/progress.make + +# Include the compile flags for this target's objects. +include _deps/cmocka-build/src/CMakeFiles/cmocka.dir/flags.make + +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/flags.make +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o: _deps/cmocka-src/src/cmocka.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object _deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/cmocka.dir/cmocka.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c + +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/cmocka.dir/cmocka.c.i" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c > CMakeFiles/cmocka.dir/cmocka.c.i + +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/cmocka.dir/cmocka.c.s" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c -o CMakeFiles/cmocka.dir/cmocka.c.s + +# Object files for target cmocka +cmocka_OBJECTS = \ +"CMakeFiles/cmocka.dir/cmocka.c.o" + +# External object files for target cmocka +cmocka_EXTERNAL_OBJECTS = + +_deps/cmocka-build/src/libcmocka.so.0.7.0: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o +_deps/cmocka-build/src/libcmocka.so.0.7.0: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make +_deps/cmocka-build/src/libcmocka.so.0.7.0: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C shared library libcmocka.so" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cmocka.dir/link.txt --verbose=$(VERBOSE) + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && $(CMAKE_COMMAND) -E cmake_symlink_library libcmocka.so.0.7.0 libcmocka.so.0 libcmocka.so + +_deps/cmocka-build/src/libcmocka.so.0: _deps/cmocka-build/src/libcmocka.so.0.7.0 + @$(CMAKE_COMMAND) -E touch_nocreate _deps/cmocka-build/src/libcmocka.so.0 + +_deps/cmocka-build/src/libcmocka.so: _deps/cmocka-build/src/libcmocka.so.0.7.0 + @$(CMAKE_COMMAND) -E touch_nocreate _deps/cmocka-build/src/libcmocka.so + +# Rule to build all files generated by this target. +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/build: _deps/cmocka-build/src/libcmocka.so + +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build + +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src && $(CMAKE_COMMAND) -P CMakeFiles/cmocka.dir/cmake_clean.cmake +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka.dir/clean + +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src /home/cseguret/Projects/app-ethereum/tests/unit/build /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmake_clean.cmake b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmake_clean.cmake new file mode 100644 index 0000000..c2d08a3 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/cmocka.dir/cmocka.c.o" + "libcmocka.pdb" + "libcmocka.so" + "libcmocka.so.0" + "libcmocka.so.0.7.0" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/cmocka.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.gcda b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.gcda new file mode 100644 index 0000000..3210d01 Binary files /dev/null and b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.gcda differ diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.gcno b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.gcno new file mode 100644 index 0000000..be21a1c Binary files /dev/null and b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.gcno differ diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o new file mode 100644 index 0000000..0413e29 Binary files /dev/null and b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o differ diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend.internal b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend.internal new file mode 100644 index 0000000..36790fb --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend.internal @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o + /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c + _deps/cmocka-build/config.h + _deps/cmocka-src/include/cmocka.h + _deps/cmocka-src/include/cmocka_private.h diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend.make new file mode 100644 index 0000000..935e738 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/depend.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o: _deps/cmocka-src/src/cmocka.c +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o: _deps/cmocka-build/config.h +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o: _deps/cmocka-src/include/cmocka.h +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o: _deps/cmocka-src/include/cmocka_private.h + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/flags.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/flags.make new file mode 100644 index 0000000..03b9237 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -pedantic -g -O0 --coverage -fPIC -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Wimplicit-fallthrough -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat -Wformat-security -Werror=format-security -fno-common -fstack-protector-strong -fstack-clash-protection -DHAVE_CONFIG_H -std=gnu11 + +C_DEFINES = -Dcmocka_EXPORTS + +C_INCLUDES = -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/link.txt b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/link.txt new file mode 100644 index 0000000..bb0c149 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -fPIC -g -Wall -pedantic -g -O0 --coverage --coverage -lgcov -shared -Wl,-soname,libcmocka.so.0 -o libcmocka.so.0.7.0 CMakeFiles/cmocka.dir/cmocka.c.o diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/progress.make b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/cmocka.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/progress.marks b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/tests/unit/build/_deps/cmocka-build/src/CTestTestfile.cmake b/tests/unit/build/_deps/cmocka-build/src/CTestTestfile.cmake new file mode 100644 index 0000000..4c7e518 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src +# Build directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/tests/unit/build/_deps/cmocka-build/src/Makefile b/tests/unit/build/_deps/cmocka-build/src/Makefile new file mode 100644 index 0000000..f390652 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/Makefile @@ -0,0 +1,285 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/cseguret/Projects/app-ethereum/tests/unit/build/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source + +.PHONY : package_source/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\" \"cmocka-header\" \"cmocka-library\" \"devel\" \"pkgconfig\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package + +.PHONY : package/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/CMakeFiles/progress.marks + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +_deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/rule: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/rule +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/rule + +# Convenience name for target. +cmocka-static: _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/rule + +.PHONY : cmocka-static + +# fast build rule for target. +cmocka-static/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build +.PHONY : cmocka-static/fast + +# Convenience name for target. +_deps/cmocka-build/src/CMakeFiles/cmocka.dir/rule: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f CMakeFiles/Makefile2 _deps/cmocka-build/src/CMakeFiles/cmocka.dir/rule +.PHONY : _deps/cmocka-build/src/CMakeFiles/cmocka.dir/rule + +# Convenience name for target. +cmocka: _deps/cmocka-build/src/CMakeFiles/cmocka.dir/rule + +.PHONY : cmocka + +# fast build rule for target. +cmocka/fast: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build +.PHONY : cmocka/fast + +cmocka.o: cmocka.c.o + +.PHONY : cmocka.o + +# target to build an object file +cmocka.c.o: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.o + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.o +.PHONY : cmocka.c.o + +cmocka.i: cmocka.c.i + +.PHONY : cmocka.i + +# target to preprocess a source file +cmocka.c.i: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.i + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.i +.PHONY : cmocka.c.i + +cmocka.s: cmocka.c.s + +.PHONY : cmocka.s + +# target to generate assembly for a file +cmocka.c.s: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka-static.dir/cmocka.c.s + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(MAKE) -f _deps/cmocka-build/src/CMakeFiles/cmocka.dir/build.make _deps/cmocka-build/src/CMakeFiles/cmocka.dir/cmocka.c.s +.PHONY : cmocka.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/local" + @echo "... edit_cache" + @echo "... test" + @echo "... package_source" + @echo "... install" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... package" + @echo "... cmocka-static" + @echo "... install/strip" + @echo "... cmocka" + @echo "... cmocka.o" + @echo "... cmocka.i" + @echo "... cmocka.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/_deps/cmocka-build/src/cmake_install.cmake b/tests/unit/build/_deps/cmocka-build/src/cmake_install.cmake new file mode 100644 index 0000000..52512bc --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/cmake_install.cmake @@ -0,0 +1,88 @@ +# Install script for directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + foreach(file + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so.0.7.0" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so.0" + ) + if(EXISTS "${file}" AND + NOT IS_SYMLINK "${file}") + file(RPATH_CHECK + FILE "${file}" + RPATH "") + endif() + endforeach() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0.7.0" + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0" + ) + foreach(file + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so.0.7.0" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so.0" + ) + if(EXISTS "${file}" AND + NOT IS_SYMLINK "${file}") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "${file}") + endif() + endif() + endforeach() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka.so") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libcmocka.so") + endif() + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xcmocka-libraryx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src/libcmocka-static.a") +endif() + diff --git a/tests/unit/build/_deps/cmocka-build/src/libcmocka-static.a b/tests/unit/build/_deps/cmocka-build/src/libcmocka-static.a new file mode 100644 index 0000000..6c5e36a Binary files /dev/null and b/tests/unit/build/_deps/cmocka-build/src/libcmocka-static.a differ diff --git a/tests/unit/build/_deps/cmocka-build/src/libcmocka.so b/tests/unit/build/_deps/cmocka-build/src/libcmocka.so new file mode 120000 index 0000000..550d968 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/libcmocka.so @@ -0,0 +1 @@ +libcmocka.so.0 \ No newline at end of file diff --git a/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0 b/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0 new file mode 120000 index 0000000..9ec2ce5 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0 @@ -0,0 +1 @@ +libcmocka.so.0.7.0 \ No newline at end of file diff --git a/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0.7.0 b/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0.7.0 new file mode 100755 index 0000000..ff31682 Binary files /dev/null and b/tests/unit/build/_deps/cmocka-build/src/libcmocka.so.0.7.0 differ diff --git a/tests/unit/build/_deps/cmocka-src b/tests/unit/build/_deps/cmocka-src new file mode 160000 index 0000000..f5e2cd7 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-src @@ -0,0 +1 @@ +Subproject commit f5e2cd77c88d9f792562888d2b70c5a396bfbf7a diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeCache.txt b/tests/unit/build/_deps/cmocka-subbuild/CMakeCache.txt new file mode 100644 index 0000000..c86bbf2 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeCache.txt @@ -0,0 +1,114 @@ +# This is the CMakeCache file. +# For build in directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=cmocka-populate + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//Value Computed by CMake +cmocka-populate_BINARY_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +//Value Computed by CMake +cmocka-populate_SOURCE_DIR:STATIC=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=16 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.16 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 + diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/3.16.3/CMakeSystem.cmake b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/3.16.3/CMakeSystem.cmake new file mode 100644 index 0000000..70736df --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/3.16.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.13.0-30-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.13.0-30-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.13.0-30-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.13.0-30-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..9358e65 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeOutput.log b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..03d3626 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeOutput.log @@ -0,0 +1 @@ +The system is: Linux - 5.13.0-30-generic - x86_64 diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeRuleHashes.txt b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..0ca8389 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,11 @@ +# Hashes of file build rules. +7dd739bb5413f6887857b07562cd84e9 CMakeFiles/cmocka-populate +cbf9a23b7f16e83b44fba999a4985847 CMakeFiles/cmocka-populate-complete +0296adcd0f94aa4c9d0f40aa418ccff8 cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build +0a65d1f8b051985b5453b3d58138f0d8 cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure +0a2711cb0959b74fa2b05a4c8641c0c0 cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download +ac441cd8f7ad43e760c0996650be49db cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install +71d69e458115fe54b0f8f51d5bf7be4f cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir +ebcb49ff34111c4f8466a5440797ef10 cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch +cda7636cbfc51eb98ebaa71b2618a169 cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test +746594cb844c71aee1d32c25e13afdf0 cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/Makefile.cmake b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..95f0106 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/Makefile.cmake @@ -0,0 +1,42 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/3.16.3/CMakeSystem.cmake" + "CMakeLists.txt" + "cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt.in" + "/usr/share/cmake-3.16/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.16/Modules/ExternalProject.cmake" + "/usr/share/cmake-3.16/Modules/FindGit.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.16/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-3.16/Modules/RepositoryInfo.txt.in" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitinfo.txt" + "cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/cmocka-populate.dir/DependInfo.cmake" + ) diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/Makefile2 b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/Makefile2 new file mode 100644 index 0000000..26640ea --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/Makefile2 @@ -0,0 +1,106 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/cmocka-populate.dir/all + +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: + +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/cmocka-populate.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/cmocka-populate.dir + +# All Build rule for target. +CMakeFiles/cmocka-populate.dir/all: + $(MAKE) -f CMakeFiles/cmocka-populate.dir/build.make CMakeFiles/cmocka-populate.dir/depend + $(MAKE) -f CMakeFiles/cmocka-populate.dir/build.make CMakeFiles/cmocka-populate.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target cmocka-populate" +.PHONY : CMakeFiles/cmocka-populate.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/cmocka-populate.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles 9 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cmocka-populate.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles 0 +.PHONY : CMakeFiles/cmocka-populate.dir/rule + +# Convenience name for target. +cmocka-populate: CMakeFiles/cmocka-populate.dir/rule + +.PHONY : cmocka-populate + +# clean rule for target. +CMakeFiles/cmocka-populate.dir/clean: + $(MAKE) -f CMakeFiles/cmocka-populate.dir/build.make CMakeFiles/cmocka-populate.dir/clean +.PHONY : CMakeFiles/cmocka-populate.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/TargetDirectories.txt b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..aa20665 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/rebuild_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/edit_cache.dir +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmake.check_cache b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate-complete b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate-complete new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/DependInfo.cmake b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/Labels.json b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/Labels.json new file mode 100644 index 0000000..45305bc --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate-complete.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build.rule" + }, + { + "file" : "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test.rule" + } + ], + "target" : + { + "labels" : + [ + "cmocka-populate" + ], + "name" : "cmocka-populate" + } +} \ No newline at end of file diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/Labels.txt b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/Labels.txt new file mode 100644 index 0000000..27d8c23 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + cmocka-populate +# Source files and their labels +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate-complete.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build.rule +/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test.rule diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/build.make b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/build.make new file mode 100644 index 0000000..7b9d52b --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/build.make @@ -0,0 +1,147 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +# Utility rule file for cmocka-populate. + +# Include the progress variables for this target. +include CMakeFiles/cmocka-populate.dir/progress.make + +CMakeFiles/cmocka-populate: CMakeFiles/cmocka-populate-complete + + +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install +CMakeFiles/cmocka-populate-complete: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'cmocka-populate'" + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles + /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate-complete + /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-done + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No install step for 'cmocka-populate'" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E echo_append + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Creating directories for 'cmocka-populate'" + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src + /usr/bin/cmake -E make_directory /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp + /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitinfo.txt +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'cmocka-populate'" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps && /usr/bin/cmake -P /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitclone.cmake + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps && /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Performing update step for 'cmocka-populate'" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src && /usr/bin/cmake -P /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitupdate.cmake + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "No patch step for 'cmocka-populate'" + /usr/bin/cmake -E echo_append + /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure: cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No configure step for 'cmocka-populate'" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E echo_append + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No build step for 'cmocka-populate'" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E echo_append + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build + +cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "No test step for 'cmocka-populate'" + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E echo_append + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build && /usr/bin/cmake -E touch /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test + +cmocka-populate: CMakeFiles/cmocka-populate +cmocka-populate: CMakeFiles/cmocka-populate-complete +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build +cmocka-populate: cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test +cmocka-populate: CMakeFiles/cmocka-populate.dir/build.make + +.PHONY : cmocka-populate + +# Rule to build all files generated by this target. +CMakeFiles/cmocka-populate.dir/build: cmocka-populate + +.PHONY : CMakeFiles/cmocka-populate.dir/build + +CMakeFiles/cmocka-populate.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/cmocka-populate.dir/cmake_clean.cmake +.PHONY : CMakeFiles/cmocka-populate.dir/clean + +CMakeFiles/cmocka-populate.dir/depend: + cd /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/cmocka-populate.dir/depend + diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/cmake_clean.cmake b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/cmake_clean.cmake new file mode 100644 index 0000000..a533415 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/cmocka-populate" + "CMakeFiles/cmocka-populate-complete" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test" + "cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/cmocka-populate.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/depend.internal b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/depend.internal new file mode 100644 index 0000000..f647855 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/depend.make b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/depend.make new file mode 100644 index 0000000..f647855 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/progress.make b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/progress.make new file mode 100644 index 0000000..d4f6ce3 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/cmocka-populate.dir/progress.make @@ -0,0 +1,10 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 + diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/progress.marks b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/progress.marks new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/tests/unit/build/_deps/cmocka-subbuild/CMakeLists.txt b/tests/unit/build/_deps/cmocka-subbuild/CMakeLists.txt new file mode 100644 index 0000000..cf03adc --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/CMakeLists.txt @@ -0,0 +1,23 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.16.3) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(cmocka-populate NONE) + +include(ExternalProject) +ExternalProject_Add(cmocka-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://git.cryptomilk.org/projects/cmocka.git" "GIT_TAG" "cmocka-1.1.5" "GIT_SHALLOW" "1" + SOURCE_DIR "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + BINARY_DIR "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES +) diff --git a/tests/unit/build/_deps/cmocka-subbuild/Makefile b/tests/unit/build/_deps/cmocka-subbuild/Makefile new file mode 100644 index 0000000..3cebbe1 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/Makefile @@ -0,0 +1,148 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named cmocka-populate + +# Build rule for target. +cmocka-populate: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 cmocka-populate +.PHONY : cmocka-populate + +# fast build rule for target. +cmocka-populate/fast: + $(MAKE) -f CMakeFiles/cmocka-populate.dir/build.make CMakeFiles/cmocka-populate.dir/build +.PHONY : cmocka-populate/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... cmocka-populate" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmake_install.cmake b/tests/unit/build/_deps/cmocka-subbuild/cmake_install.cmake new file mode 100644 index 0000000..54eafa3 --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-build new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-configure new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-done b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-done new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-download new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitclone-lastrun.txt b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitclone-lastrun.txt new file mode 100644 index 0000000..c92163b --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitclone-lastrun.txt @@ -0,0 +1,3 @@ +repository='https://git.cryptomilk.org/projects/cmocka.git' +module='' +tag='origin' diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitinfo.txt b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitinfo.txt new file mode 100644 index 0000000..c92163b --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitinfo.txt @@ -0,0 +1,3 @@ +repository='https://git.cryptomilk.org/projects/cmocka.git' +module='' +tag='origin' diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-install new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-patch new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-test new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt new file mode 100644 index 0000000..6a6ed5f --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt.in b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt.in new file mode 100644 index 0000000..b3f09ef --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-cfgcmd.txt.in @@ -0,0 +1 @@ +cmd='@cmd@' diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitclone.cmake b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitclone.cmake new file mode 100644 index 0000000..7d409ae --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitclone.cmake @@ -0,0 +1,66 @@ + +if(NOT "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitinfo.txt" IS_NEWER_THAN "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitclone-lastrun.txt") + message(STATUS "Avoiding repeated git clone, stamp file is up to date: '/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitclone-lastrun.txt'") + return() +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E remove_directory "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: '/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "/usr/bin/git" clone --no-checkout --depth 1 --no-single-branch "https://git.cryptomilk.org/projects/cmocka.git" "cmocka-src" + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps" + RESULT_VARIABLE error_code + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(STATUS "Had to git clone more than once: + ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://git.cryptomilk.org/projects/cmocka.git'") +endif() + +execute_process( + COMMAND "/usr/bin/git" checkout cmocka-1.1.5 -- + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'cmocka-1.1.5'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "/usr/bin/git" submodule update --recursive --init + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitinfo.txt" + "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/src/cmocka-populate-stamp/cmocka-populate-gitclone-lastrun.txt'") +endif() + diff --git a/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitupdate.cmake b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitupdate.cmake new file mode 100644 index 0000000..8aa8abf --- /dev/null +++ b/tests/unit/build/_deps/cmocka-subbuild/cmocka-populate-prefix/tmp/cmocka-populate-gitupdate.cmake @@ -0,0 +1,160 @@ + +execute_process( + COMMAND "/usr/bin/git" rev-list --max-count=1 HEAD + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE head_sha + OUTPUT_STRIP_TRAILING_WHITESPACE + ) +if(error_code) + message(FATAL_ERROR "Failed to get the hash for HEAD") +endif() + +execute_process( + COMMAND "/usr/bin/git" show-ref cmocka-1.1.5 + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + OUTPUT_VARIABLE show_ref_output + ) +# If a remote ref is asked for, which can possibly move around, +# we must always do a fetch and checkout. +if("${show_ref_output}" MATCHES "remotes") + set(is_remote_ref 1) +else() + set(is_remote_ref 0) +endif() + +# Tag is in the form / (i.e. origin/master) we must strip +# the remote from the tag. +if("${show_ref_output}" MATCHES "refs/remotes/cmocka-1.1.5") + string(REGEX MATCH "^([^/]+)/(.+)$" _unused "cmocka-1.1.5") + set(git_remote "${CMAKE_MATCH_1}") + set(git_tag "${CMAKE_MATCH_2}") +else() + set(git_remote "origin") + set(git_tag "cmocka-1.1.5") +endif() + +# This will fail if the tag does not exist (it probably has not been fetched +# yet). +execute_process( + COMMAND "/usr/bin/git" rev-list --max-count=1 cmocka-1.1.5 + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE tag_sha + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + +# Is the hash checkout out that we want? +if(error_code OR is_remote_ref OR NOT ("${tag_sha}" STREQUAL "${head_sha}")) + execute_process( + COMMAND "/usr/bin/git" fetch + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) + if(error_code) + message(FATAL_ERROR "Failed to fetch repository 'https://git.cryptomilk.org/projects/cmocka.git'") + endif() + + if(is_remote_ref) + # Check if stash is needed + execute_process( + COMMAND "/usr/bin/git" status --porcelain + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status + ) + if(error_code) + message(FATAL_ERROR "Failed to get the status") + endif() + string(LENGTH "${repo_status}" need_stash) + + # If not in clean state, stash changes in order to be able to be able to + # perform git pull --rebase + if(need_stash) + execute_process( + COMMAND "/usr/bin/git" stash save --all;--quiet + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) + if(error_code) + message(FATAL_ERROR "Failed to stash changes") + endif() + endif() + + # Pull changes from the remote branch + execute_process( + COMMAND "/usr/bin/git" rebase ${git_remote}/${git_tag} + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Rebase failed: Restore previous state. + execute_process( + COMMAND "/usr/bin/git" rebase --abort + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + ) + if(need_stash) + execute_process( + COMMAND "/usr/bin/git" stash pop --index --quiet + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: '/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/'.\nYou will have to resolve the conflicts manually") + endif() + + if(need_stash) + execute_process( + COMMAND "/usr/bin/git" stash pop --index --quiet + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "/usr/bin/git" reset --hard --quiet + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) + execute_process( + COMMAND "/usr/bin/git" stash pop --quiet + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "/usr/bin/git" reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + ) + execute_process( + COMMAND "/usr/bin/git" stash pop --index --quiet + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + ) + message(FATAL_ERROR "\nFailed to unstash changes in: '/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/'.\nYou will have to resolve the conflicts manually") + endif() + endif() + endif() + else() + execute_process( + COMMAND "/usr/bin/git" checkout cmocka-1.1.5 + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src" + RESULT_VARIABLE error_code + ) + if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'cmocka-1.1.5'") + endif() + endif() + + set(init_submodules TRUE) + if(init_submodules) + execute_process( + COMMAND "/usr/bin/git" submodule update --recursive --init + WORKING_DIRECTORY "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/" + RESULT_VARIABLE error_code + ) + endif() + if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/'") + endif() +endif() + diff --git a/tests/unit/build/cmake_install.cmake b/tests/unit/build/cmake_install.cmake new file mode 100644 index 0000000..200a7b6 --- /dev/null +++ b/tests/unit/build/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /home/cseguret/Projects/app-ethereum/tests/unit + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/cseguret/Projects/app-ethereum/tests/unit/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/tests/unit/build/compile_commands.json b/tests/unit/build/compile_commands.json new file mode 100644 index 0000000..e3cdaf9 --- /dev/null +++ b/tests/unit/build/compile_commands.json @@ -0,0 +1,12 @@ +[ +{ + "directory": "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src", + "command": "/usr/bin/cc -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include -g -Wall -pedantic -g -O0 --coverage -fPIC -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Wimplicit-fallthrough -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat -Wformat-security -Werror=format-security -fno-common -fstack-protector-strong -fstack-clash-protection -DHAVE_CONFIG_H -std=gnu11 -o CMakeFiles/cmocka-static.dir/cmocka.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c", + "file": "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c" +}, +{ + "directory": "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src", + "command": "/usr/bin/cc -Dcmocka_EXPORTS -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-build -I/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/include -g -Wall -pedantic -g -O0 --coverage -fPIC -std=gnu99 -Wpedantic -Wall -Wshadow -Wmissing-prototypes -Wcast-align -Werror=address -Wstrict-prototypes -Werror=strict-prototypes -Wwrite-strings -Werror=write-strings -Werror-implicit-function-declaration -Wpointer-arith -Werror=pointer-arith -Wdeclaration-after-statement -Werror=declaration-after-statement -Wreturn-type -Werror=return-type -Wuninitialized -Werror=uninitialized -Wimplicit-fallthrough -Werror=strict-overflow -Wstrict-overflow=2 -Wno-format-zero-length -Wmissing-field-initializers -Wformat -Wformat-security -Werror=format-security -fno-common -fstack-protector-strong -fstack-clash-protection -DHAVE_CONFIG_H -std=gnu11 -o CMakeFiles/cmocka.dir/cmocka.c.o -c /home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c", + "file": "/home/cseguret/Projects/app-ethereum/tests/unit/build/_deps/cmocka-src/src/cmocka.c" +} +] \ No newline at end of file diff --git a/tests/unit/build/libutils.so b/tests/unit/build/libutils.so new file mode 100755 index 0000000..e23bb23 Binary files /dev/null and b/tests/unit/build/libutils.so differ diff --git a/tests/unit/build/test_main b/tests/unit/build/test_main new file mode 100755 index 0000000..b12a8b5 Binary files /dev/null and b/tests/unit/build/test_main differ diff --git a/tests/unit/build/test_utils b/tests/unit/build/test_utils new file mode 100755 index 0000000..37cf36e Binary files /dev/null and b/tests/unit/build/test_utils differ diff --git a/tests/unit/tests/utils.c b/tests/unit/tests/utils.c new file mode 100644 index 0000000..eb703e6 --- /dev/null +++ b/tests/unit/tests/utils.c @@ -0,0 +1,18 @@ +#include +#include +#include +#include + +int local_strchr(char *string, char ch); + +static void null_test_success(void **state) { + assert_int_equal(local_strchr("salut", 'c'), -1); + assert_int_equal(local_strchr("av", 'a'), 0); +} + +int main(void) { + const struct CMUnitTest tests[] = { + cmocka_unit_test(null_test_success), + }; + return cmocka_run_group_tests(tests, NULL, NULL); +} \ No newline at end of file