Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

test algorithms/general_data_storage_01: add output variant #13936

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
75 changes: 75 additions & 0 deletions tests/algorithms/general_data_storage_01.output.gcc-12
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@

DEAL::Add by copy
DEAL::Size: 2
DEAL::Add by reference
DEAL::Size: 2
DEAL::Add or construct
DEAL::Size: 1
DEAL::Merge
DEAL::Data pre-merge:
DEAL::value double
DEAL::Size: 1
DEAL::Data 2 pre-merge:
DEAL::value double
DEAL::value_2 double
DEAL::Size: 2
DEAL::Data post-merge:
DEAL::value double
DEAL::value_2 double
DEAL::Size: 2
DEAL::Ambiguous construction
DEAL::Try to overwrite existing entry: Copy
DEAL::
--------------------------------------------------------
An error occurred in file <general_data_storage.h> in function
void dealii::GeneralDataStorage::add_unique_copy(const std::string&, const Type&) [with Type = double; std::string = std::__cxx11::basic_string<char>]
The violated condition was:
!stores_object_with_name(name)
Additional information:
An entry with the name value already exists.
--------------------------------------------------------

DEAL::Try to overwrite existing entry: Reference
DEAL::
--------------------------------------------------------
An error occurred in file <general_data_storage.h> in function
void dealii::GeneralDataStorage::add_unique_reference(const std::string&, Type&) [with Type = const double; std::string = std::__cxx11::basic_string<char>]
The violated condition was:
!stores_object_with_name(name)
Additional information:
An entry with the name value already exists.
--------------------------------------------------------

DEAL::Fetch non-existing entry
DEAL::
--------------------------------------------------------
An error occurred in file <general_data_storage.h> in function
Type& dealii::GeneralDataStorage::get_object_with_name(const std::string&) [with Type = double; std::string = std::__cxx11::basic_string<char>]
The violated condition was:
stores_object_with_name(name)
Additional information:
No entry with the name value exists.
--------------------------------------------------------

DEAL::Access removed entry (reference)
DEAL::
--------------------------------------------------------
An error occurred in file <general_data_storage.h> in function
Type& dealii::GeneralDataStorage::get_object_with_name(const std::string&) [with Type = double; std::string = std::__cxx11::basic_string<char>]
The violated condition was:
stores_object_with_name(name)
Additional information:
No entry with the name value exists.
--------------------------------------------------------

DEAL::Access removed entry (copy)
DEAL::
--------------------------------------------------------
An error occurred in file <general_data_storage.h> in function
Type& dealii::GeneralDataStorage::get_object_with_name(const std::string&) [with Type = double; std::string = std::__cxx11::basic_string<char>]
The violated condition was:
stores_object_with_name(name)
Additional information:
No entry with the name value exists.
--------------------------------------------------------