aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2014-10-28 07:12:37 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-28 07:12:37 -0700
commit15c746062e80a4fb0bb367e0075ed731ed93e9dc (patch)
tree96880eca18d94c23544a7dd1ee6e11979fae946d /tests
parenta703b841e301adc7b39a3c1d936166c1286d8131 (diff)
not a failure if we didn't load the test file
Diffstat (limited to 'tests')
-rw-r--r--tests/KtxTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/KtxTest.cpp b/tests/KtxTest.cpp
index 1a61f3aa0b..499db6ab48 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<SkData> 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;
}