Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
dynamic-graph
Commits
27587d25
Unverified
Commit
27587d25
authored
Jul 20, 2020
by
Guilhem Saurel
Committed by
GitHub
Jul 20, 2020
Browse files
Merge pull request #76 from Rascof/patch-2
[Tests] fix compilation warnings
parents
3b623f26
9d62c348
Changes
2
Hide whitespace changes
Inline
Side-by-side
tests/signal-cast-registerer.cpp
View file @
27587d25
...
...
@@ -139,15 +139,6 @@ BOOST_AUTO_TEST_CASE(standard_double_registerer) {
BOOST_AUTO_TEST_CASE
(
custom_vector_registerer
)
{
dynamicgraph
::
Signal
<
dynamicgraph
::
Vector
,
int
>
myVectorSignal
(
"vector"
);
/// Create a second local vector registerer to generate an exception.
bool
res
=
false
;
try
{
EigenCastRegisterer_V
myVectorCast2
;
}
catch
(
const
ExceptionSignal
&
aes
)
{
res
=
(
aes
.
getCode
()
==
ExceptionSignal
::
GENERIC
);
}
// BOOST_CHECK(res);
// Print the signal name.
{
output_test_stream
output
;
...
...
tests/value.cpp
View file @
27587d25
...
...
@@ -64,6 +64,7 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
bool
res
=
false
;
try
{
int
aInt
(
anet
);
aInt
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
output
<<
aea
.
getExceptionName
();
output2
<<
aea
.
what
();
...
...
@@ -78,6 +79,7 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
bool
abool
(
anet
);
abool
=!
abool
;
// silence unused variable warnings to have a stable release in the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
@@ -88,6 +90,7 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
unsigned
int
aint
(
anet
);
aint
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
@@ -98,6 +101,7 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
double
adouble
(
anet
);
adouble
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
@@ -108,6 +112,7 @@ BOOST_AUTO_TEST_CASE(value_exceptions) {
res
=
false
;
try
{
float
afloat
(
anet
);
afloat
++
;
// silence unused variable warnings to have a stable release in the ros buildfarm
}
catch
(
const
dg
::
ExceptionAbstract
&
aea
)
{
res
=
(
aea
.
getCode
()
==
dg
::
ExceptionAbstract
::
TOOLS
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment