minor fixes

This commit is contained in:
Markus Gans 2019-07-14 23:21:49 +02:00
parent c49252ab45
commit 8d9e92023a
3 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ case "$1" in
;;
"--coverage"|"coverage")
if ! ./configure --prefix="$PREFIX" CPPFLAGS="-DDEBUG" CXXFLAGS="-g -O0 -DDEBUG" --with-unit-test --with-gcov
if ! ./configure --prefix="$PREFIX" CPPFLAGS="-DDEBUG" CXXFLAGS="-g -O0 -DDEBUG -DUNIT_TEST" --with-unit-test --with-gcov
then
echo "${RED}Configure failed!${NORMAL}" 1>&2
exit 255

View File

@ -586,7 +586,7 @@ FObject::FObjectIterator
, [] (const T& col) -> const FString
{
const FString s = FString() << col;
return std::move(s);
return s;
}
);
@ -622,7 +622,7 @@ FObject::FObjectIterator
, [] (const ColT& col) -> const FString
{
const FString s = FString() << col;
return std::move(s);
return s;
}
);

View File

@ -434,7 +434,7 @@ void ftermopenbsdTest::openbsdConsoleTest()
CPPUNIT_ASSERT ( ! data->hasShadowCharacter() );
CPPUNIT_ASSERT ( ! data->hasHalfBlockCharacter() );
CPPUNIT_ASSERT_CSTRING ( term_detection->getTermType(), C_STR("pccon") );
closeConEmuStdStreams();
exit(EXIT_SUCCESS);
}