Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
loadbalancing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SLMS
loadbalancing
Merge requests
!12
Feature/amalgamated
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Feature/amalgamated
feature/amalgamated
into
refactor
Overview
3
Commits
0
Pipelines
3
Changes
1
Closed
Stephan Schulz
requested to merge
feature/amalgamated
into
refactor
4 years ago
Overview
3
Commits
0
Pipelines
3
Changes
1
The Work in Progress branch for amalgamated header files according to
Wiki link
.
Edited
4 years ago
by
Stephan Schulz
0
0
Merge request reports
Viewing commit
31b0fb15
Show latest version
1 file
+
6
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
31b0fb15
"fix" warnings in one test
· 31b0fb15
Stephan Schulz
authored
4 years ago
tests/all_class_creation.cpp
+
6
−
0
View file @ 31b0fb15
Edit in single-file editor
Open in Web IDE
Show full file
@@ -66,9 +66,15 @@ BOOST_AUTO_TEST_CASE(simple) {
ALL
::
ALL
<
double
,
double
>
test
(
method
,
dimension
,
gamma
);
// comment(s.schulz): What is supposed to be checked here?
// Just the calling? Then we should make sure to also access the result
double
check_dim
=
test
.
getDimension
();
double
check_gamma
=
test
.
getGamma
();
// comment(s.schulz): Not sure if there is a better way than assert in the boost framework
assert
(
check_dim
==
dimension
);
assert
(
check_gamma
==
gamma
);
int
already_final
;
MPI_Finalized
(
&
already_final
);
if
(
!
already_final
)
Loading