From f33dc5ba757c183d04c1f860e0840f0ec8446580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 15 Aug 2017 21:54:17 +0200 Subject: [PATCH] Test: improve XFAIL messages a bit. --- src/Magnum/Test/TextureGLTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/Test/TextureGLTest.cpp b/src/Magnum/Test/TextureGLTest.cpp index 0889d8a74..6e4759d54 100644 --- a/src/Magnum/Test/TextureGLTest.cpp +++ b/src/Magnum/Test/TextureGLTest.cpp @@ -2143,7 +2143,7 @@ void TextureGLTest::compressedSubImage3D() { { CORRADE_EXPECT_FAIL_IF(CompressedPixelStorage3DData[testCaseInstanceId()].storage == CompressedPixelStorage{} && (Context::current().detectedDriver() & Context::DetectedDriver::NVidia), - "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia"); + "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia."); CORRADE_COMPARE_AS(Containers::arrayCast(image.data()), Containers::arrayView(CompressedSubData3DComplete), @@ -2183,7 +2183,7 @@ void TextureGLTest::compressedSubImage3DBuffer() { { CORRADE_EXPECT_FAIL_IF(CompressedPixelStorage3DData[testCaseInstanceId()].storage == CompressedPixelStorage{} && (Context::current().detectedDriver() & Context::DetectedDriver::NVidia), - "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia"); + "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia."); CORRADE_COMPARE_AS(imageData, Containers::arrayView(CompressedSubData3DComplete), @@ -2221,7 +2221,7 @@ void TextureGLTest::compressedSubImage3DQuery() { { CORRADE_EXPECT_FAIL_IF(CompressedPixelStorage3DData[testCaseInstanceId()].storage == CompressedPixelStorage{} && (Context::current().detectedDriver() & Context::DetectedDriver::NVidia), - "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia"); + "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia."); CORRADE_COMPARE_AS(Containers::arrayCast(image.data()).suffix(CompressedPixelStorage3DData[testCaseInstanceId()].offset), CompressedPixelStorage3DData[testCaseInstanceId()].data, @@ -2257,7 +2257,7 @@ void TextureGLTest::compressedSubImage3DQueryBuffer() { { CORRADE_EXPECT_FAIL_IF(CompressedPixelStorage3DData[testCaseInstanceId()].storage == CompressedPixelStorage{} && (Context::current().detectedDriver() & Context::DetectedDriver::NVidia), - "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia"); + "Default compressed pixel storage behaves weirdly with BPTC compression on NVidia."); CORRADE_COMPARE_AS(imageData.suffix(CompressedPixelStorage3DData[testCaseInstanceId()].offset), CompressedPixelStorage3DData[testCaseInstanceId()].data,