mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-01 21:03:52 +00:00
This eliminates 1945 (432709 -> 430764) allocations from running `./tests/SelfTest -o /dev/null`. In general terms, this saves an allocation every time an unvisited `SECTION` is passed, which means that the saved allocations are quadratic in number of sibling (same level) `SECTION`s in a test case.
61 lines
2.2 KiB
C++
61 lines
2.2 KiB
C++
|
|
// Copyright Catch2 Authors
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE.txt or copy at
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
#include <catch2/internal/catch_section.hpp>
|
|
#include <catch2/internal/catch_run_context.hpp>
|
|
#include <catch2/internal/catch_uncaught_exceptions.hpp>
|
|
#include <catch2/internal/catch_move_and_forward.hpp>
|
|
|
|
namespace Catch {
|
|
|
|
Section::Section( SectionInfo&& info ):
|
|
m_info( CATCH_MOVE( info ) ),
|
|
m_sectionIncluded(
|
|
getResultCapture().sectionStarted( m_info.name, m_info.lineInfo, m_assertions ) ) {
|
|
// Non-"included" sections will not use the timing information
|
|
// anyway, so don't bother with the potential syscall.
|
|
if (m_sectionIncluded) {
|
|
m_timer.start();
|
|
}
|
|
}
|
|
|
|
Section::Section( SourceLineInfo const& _lineInfo,
|
|
StringRef _name,
|
|
const char* const ):
|
|
m_info( { "invalid", static_cast<std::size_t>(-1) }, "" ),
|
|
m_sectionIncluded(
|
|
getResultCapture().sectionStarted( _name, _lineInfo, m_assertions ) ) {
|
|
// We delay initialization the SectionInfo member until we know
|
|
// this section needs it, so we avoid allocating std::string for name.
|
|
// We also delay timer start to avoid the potential syscall unless we
|
|
// will actually use the result.
|
|
if ( m_sectionIncluded ) {
|
|
m_info.name = static_cast<std::string>( _name );
|
|
m_info.lineInfo = _lineInfo;
|
|
m_timer.start();
|
|
}
|
|
}
|
|
|
|
Section::~Section() {
|
|
if( m_sectionIncluded ) {
|
|
SectionEndInfo endInfo{ CATCH_MOVE(m_info), m_assertions, m_timer.getElapsedSeconds() };
|
|
if ( uncaught_exceptions() ) {
|
|
getResultCapture().sectionEndedEarly( CATCH_MOVE(endInfo) );
|
|
} else {
|
|
getResultCapture().sectionEnded( CATCH_MOVE( endInfo ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
// This indicates whether the section should be executed or not
|
|
Section::operator bool() const {
|
|
return m_sectionIncluded;
|
|
}
|
|
|
|
|
|
} // end namespace Catch
|