mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 09:02:06 +00:00
* Get libslic3r tests closer to passing
I can't get geometry tests to do anything useful. I've added extra
output, but it hasn't helped me figure out why they don't work
yet. That's also probably the last broken 3mf test doesn't work.
The config tests were mostly broken because of config name changes.
The placeholder_parser tests have some things that may-or-may-not
still apply to Orca.
* Vendor a 3.x version of Catch2
Everything is surely broken at this point.
* Allow building tests separately from Orca with build_linux.sh
* Remove unnecessary log message screwing up ctest
Same solution as Prusaslicer
* Make 2 TriangleMesh methods const
Since they can be.
* Move method comment to the header where it belongsc
* Add indirectly-included header directly
Transform3d IIRC
* libslic3r tests converted to Catch2 v3
Still has 3 failing tests, but builds and runs.
* Disable 2D convex hull test and comment what I've learned
Not sure the best way to solve this yet.
* Add diff compare method for DynamicConfig
Help the unit test report errors better.
* Perl no longer used, remove comment line
* Clang-format Config.?pp
So difficult to work with ATM
* Remove cpp17 unit tests
Who gives a shit
* Don't need explicit "example" test
We have lots of tests to serve as examples.
* Leave breadcrumb to enable sla_print tests
* Fix serialization of DynamicConfig
Add comments to test, because these code paths might not be even used
anymore.
* Update run_unit_tests to run all the tests
By the time I'm done with the PR all tests will either excluded by
default or passing, so just do all.
* Update how-to-test now that build_linux.sh builds tests separately
* Update cmake regenerate instructions
Read this online; hopefully works.
* Enable slic3rutils test with Catch2 v3
* Port libnest2d and fff_print to Catch2 v3
They build. Many failing.
* Add slightly more info to Objects not fit on bed exception
* Disable failing fff_print tests from running
They're mostly failing for "objects don't fit on bed" for an
infinite-sized bed. Given infinite bed is probably only used in tests,
it probably was incidentally broken long ago.
* Must checkout tests directory in GH Actions
So we get the test data
* Missed a failing fff_print test
* Disable (most/all) broken libnest2d tests
Trying all, not checking yet though
* Fix Polygon convex/concave detection tests
Document the implementation too. Reorganize the tests to be cleaner.
* Update the test script to run tests in parallel
* Get sla_print tests to build
Probably not passing
* Don't cause full project rebuild when updating test CMakeLists.txts
* Revert "Clang-format Config.?pp"
This reverts commit 771e4c0ad2.
---------
Co-authored-by: SoftFever <softfeverever@gmail.com>
158 lines
5.0 KiB
CMake
158 lines
5.0 KiB
CMake
# This file is part of CMake-codecov.
|
|
#
|
|
# Copyright (c)
|
|
# 2015-2017 RWTH Aachen University, Federal Republic of Germany
|
|
#
|
|
# See the LICENSE file in the package base directory for details
|
|
#
|
|
# Written by Alexander Haase, alexander.haase@rwth-aachen.de
|
|
#
|
|
|
|
|
|
# include required Modules
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
|
|
# Search for gcov binary.
|
|
set(CMAKE_REQUIRED_QUIET_SAVE ${CMAKE_REQUIRED_QUIET})
|
|
set(CMAKE_REQUIRED_QUIET ${codecov_FIND_QUIETLY})
|
|
|
|
get_property(ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES)
|
|
foreach (LANG ${ENABLED_LANGUAGES})
|
|
# Gcov evaluation is dependent on the used compiler. Check gcov support for
|
|
# each compiler that is used. If gcov binary was already found for this
|
|
# compiler, do not try to find it again.
|
|
if (NOT GCOV_${CMAKE_${LANG}_COMPILER_ID}_BIN)
|
|
get_filename_component(COMPILER_PATH "${CMAKE_${LANG}_COMPILER}" PATH)
|
|
|
|
if ("${CMAKE_${LANG}_COMPILER_ID}" STREQUAL "GNU")
|
|
# Some distributions like OSX (homebrew) ship gcov with the compiler
|
|
# version appended as gcov-x. To find this binary we'll build the
|
|
# suggested binary name with the compiler version.
|
|
string(REGEX MATCH "^[0-9]+" GCC_VERSION
|
|
"${CMAKE_${LANG}_COMPILER_VERSION}")
|
|
|
|
find_program(GCOV_BIN NAMES gcov-${GCC_VERSION} gcov
|
|
HINTS ${COMPILER_PATH})
|
|
|
|
elseif ("${CMAKE_${LANG}_COMPILER_ID}" STREQUAL "Clang")
|
|
# Some distributions like Debian ship llvm-cov with the compiler
|
|
# version appended as llvm-cov-x.y. To find this binary we'll build
|
|
# the suggested binary name with the compiler version.
|
|
string(REGEX MATCH "^[0-9]+.[0-9]+" LLVM_VERSION
|
|
"${CMAKE_${LANG}_COMPILER_VERSION}")
|
|
|
|
# llvm-cov prior version 3.5 seems to be not working with coverage
|
|
# evaluation tools, but these versions are compatible with the gcc
|
|
# gcov tool.
|
|
if(LLVM_VERSION VERSION_GREATER 3.4)
|
|
find_program(LLVM_COV_BIN NAMES "llvm-cov-${LLVM_VERSION}"
|
|
"llvm-cov" HINTS ${COMPILER_PATH})
|
|
mark_as_advanced(LLVM_COV_BIN)
|
|
|
|
if (LLVM_COV_BIN)
|
|
find_program(LLVM_COV_WRAPPER "llvm-cov-wrapper" PATHS
|
|
${CMAKE_MODULE_PATH})
|
|
if (LLVM_COV_WRAPPER)
|
|
set(GCOV_BIN "${LLVM_COV_WRAPPER}" CACHE FILEPATH "")
|
|
|
|
# set additional parameters
|
|
set(GCOV_${CMAKE_${LANG}_COMPILER_ID}_ENV
|
|
"LLVM_COV_BIN=${LLVM_COV_BIN}" CACHE STRING
|
|
"Environment variables for llvm-cov-wrapper.")
|
|
mark_as_advanced(GCOV_${CMAKE_${LANG}_COMPILER_ID}_ENV)
|
|
endif ()
|
|
endif ()
|
|
endif ()
|
|
|
|
if (NOT GCOV_BIN)
|
|
# Fall back to gcov binary if llvm-cov was not found or is
|
|
# incompatible. This is the default on OSX, but may crash on
|
|
# recent Linux versions.
|
|
find_program(GCOV_BIN gcov HINTS ${COMPILER_PATH})
|
|
endif ()
|
|
endif ()
|
|
|
|
|
|
if (GCOV_BIN)
|
|
set(GCOV_${CMAKE_${LANG}_COMPILER_ID}_BIN "${GCOV_BIN}" CACHE STRING
|
|
"${LANG} gcov binary.")
|
|
|
|
if (NOT CMAKE_REQUIRED_QUIET)
|
|
message("-- Found gcov evaluation for "
|
|
"${CMAKE_${LANG}_COMPILER_ID}: ${GCOV_BIN}")
|
|
endif()
|
|
|
|
unset(GCOV_BIN CACHE)
|
|
endif ()
|
|
endif ()
|
|
endforeach ()
|
|
|
|
|
|
|
|
|
|
# Add a new global target for all gcov targets. This target could be used to
|
|
# generate the gcov files for the whole project instead of calling <TARGET>-gcov
|
|
# for each target.
|
|
if (NOT TARGET gcov)
|
|
add_custom_target(gcov)
|
|
endif (NOT TARGET gcov)
|
|
|
|
|
|
|
|
# This function will add gcov evaluation for target <TNAME>. Only sources of
|
|
# this target will be evaluated and no dependencies will be added. It will call
|
|
# Gcov on any source file of <TNAME> once and store the gcov file in the same
|
|
# directory.
|
|
function (add_gcov_target TNAME)
|
|
set(TDIR ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/${TNAME}.dir)
|
|
|
|
# We don't have to check, if the target has support for coverage, thus this
|
|
# will be checked by add_coverage_target in Findcoverage.cmake. Instead we
|
|
# have to determine which gcov binary to use.
|
|
get_target_property(TSOURCES ${TNAME} SOURCES)
|
|
set(SOURCES "")
|
|
set(TCOMPILER "")
|
|
foreach (FILE ${TSOURCES})
|
|
codecov_path_of_source(${FILE} FILE)
|
|
if (NOT "${FILE}" STREQUAL "")
|
|
codecov_lang_of_source(${FILE} LANG)
|
|
if (NOT "${LANG}" STREQUAL "")
|
|
list(APPEND SOURCES "${FILE}")
|
|
set(TCOMPILER ${CMAKE_${LANG}_COMPILER_ID})
|
|
endif ()
|
|
endif ()
|
|
endforeach ()
|
|
|
|
# If no gcov binary was found, coverage data can't be evaluated.
|
|
if (NOT GCOV_${TCOMPILER}_BIN)
|
|
message(WARNING "No coverage evaluation binary found for ${TCOMPILER}.")
|
|
return()
|
|
endif ()
|
|
|
|
set(GCOV_BIN "${GCOV_${TCOMPILER}_BIN}")
|
|
set(GCOV_ENV "${GCOV_${TCOMPILER}_ENV}")
|
|
|
|
|
|
set(BUFFER "")
|
|
foreach(FILE ${SOURCES})
|
|
get_filename_component(FILE_PATH "${TDIR}/${FILE}" PATH)
|
|
|
|
# call gcov
|
|
add_custom_command(OUTPUT ${TDIR}/${FILE}.gcov
|
|
COMMAND ${GCOV_ENV} ${GCOV_BIN} ${TDIR}/${FILE}.gcno > /dev/null
|
|
DEPENDS ${TNAME} ${TDIR}/${FILE}.gcno
|
|
WORKING_DIRECTORY ${FILE_PATH}
|
|
)
|
|
|
|
list(APPEND BUFFER ${TDIR}/${FILE}.gcov)
|
|
endforeach()
|
|
|
|
|
|
# add target for gcov evaluation of <TNAME>
|
|
add_custom_target(${TNAME}-gcov DEPENDS ${BUFFER})
|
|
|
|
# add evaluation target to the global gcov target.
|
|
add_dependencies(gcov ${TNAME}-gcov)
|
|
endfunction (add_gcov_target)
|