Clang: Re-enable tests which do not fail anymore

Change-Id: I1f8f396eeb8e97a8910bc2bd454227a395330f31
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
This commit is contained in:
Ivan Donchevskii
2018-10-25 10:04:42 +02:00
parent 618d8e02d1
commit d05fe2fe15
2 changed files with 2 additions and 2 deletions

View File

@@ -185,7 +185,7 @@ TEST_F(Cursor, BriefComment)
ASSERT_THAT(cursor.briefComment(), Eq("A brief comment"));
}
TEST_F(Cursor, DISABLED_ON_WINDOWS(RawComment))
TEST_F(Cursor, RawComment)
{
auto cursor = translationUnit.cursorAt(Utf8StringLiteral(TESTDATA_DIR"/cursor.h"), 10, 7);

View File

@@ -86,7 +86,7 @@ TEST_F(SourceLocation, Column)
ASSERT_THAT(sourceLocation.column(), 1);
}
TEST_F(SourceLocation, DISABLED_ON_WINDOWS(Offset))
TEST_F(SourceLocation, Offset)
{
ASSERT_THAT(sourceLocation.offset(), 18);
}