mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
fix Random Test for clang
This commit is contained in:
parent
b52f784219
commit
312a89c4a2
2 changed files with 0 additions and 13 deletions
|
@ -41,10 +41,7 @@ namespace testspr {
|
||||||
{
|
{
|
||||||
std::ostringstream os;
|
std::ostringstream os;
|
||||||
os << dist1;
|
os << dist1;
|
||||||
// ???
|
|
||||||
#if !defined(__clang__)
|
|
||||||
TESTSPR_ASSERT(!!os);
|
TESTSPR_ASSERT(!!os);
|
||||||
#endif
|
|
||||||
s = os.str();
|
s = os.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,10 +51,7 @@ namespace testspr {
|
||||||
{
|
{
|
||||||
std::istringstream is(s);
|
std::istringstream is(s);
|
||||||
is >> dist_temp;
|
is >> dist_temp;
|
||||||
// ???
|
|
||||||
#if !defined(__clang__)
|
|
||||||
TESTSPR_ASSERT(!!is);
|
TESTSPR_ASSERT(!!is);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TESTSPR_ASSERT(dist_temp == dist1);
|
TESTSPR_ASSERT(dist_temp == dist1);
|
||||||
|
|
|
@ -32,11 +32,7 @@ namespace testspr {
|
||||||
{
|
{
|
||||||
std::ostringstream os;
|
std::ostringstream os;
|
||||||
os << eng1;
|
os << eng1;
|
||||||
// ???
|
|
||||||
#if !defined(__clang__)
|
|
||||||
TESTSPR_ASSERT(!!os);
|
TESTSPR_ASSERT(!!os);
|
||||||
#endif
|
|
||||||
|
|
||||||
s = os.str();
|
s = os.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,10 +42,7 @@ namespace testspr {
|
||||||
{
|
{
|
||||||
std::istringstream is(s);
|
std::istringstream is(s);
|
||||||
is >> eng_temp;
|
is >> eng_temp;
|
||||||
// ???
|
|
||||||
#if !defined(__clang__)
|
|
||||||
TESTSPR_ASSERT(!!is);
|
TESTSPR_ASSERT(!!is);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//TESTSPR_ASSERT(eng_temp == eng1);
|
//TESTSPR_ASSERT(eng_temp == eng1);
|
||||||
|
|
Loading…
Reference in a new issue