From: reed Date: Tue, 28 Oct 2014 14:12:37 +0000 (-0700) Subject: not a failure if we didn't load the test file X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~5206 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15c746062e80a4fb0bb367e0075ed731ed93e9dc;p=platform%2Fupstream%2FlibSkiaSharp.git not a failure if we didn't load the test file BUG=skia: Review URL: https://codereview.chromium.org/687453005 --- diff --git a/tests/KtxTest.cpp b/tests/KtxTest.cpp index 1a61f3a..499db6a 100644 --- a/tests/KtxTest.cpp +++ b/tests/KtxTest.cpp @@ -145,8 +145,8 @@ DEF_TEST(KtxReexportPKM, reporter) { // Load PKM file into a bitmap SkBitmap etcBitmap; SkAutoTUnref fileData(SkData::NewFromFileName(pkmFilename.c_str())); - REPORTER_ASSERT(reporter, fileData); if (NULL == fileData) { + SkDebugf("KtxReexportPKM: can't load test file %s\n", pkmFilename.c_str()); return; }