diff options
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-07-11 18:55:23 +0000 |
---|---|---|
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-07-11 18:55:23 +0000 |
commit | 79382af267eedd5bd8fe727121b40bc5cbebae21 (patch) | |
tree | 193a0a418fbeab1871b23cbcbad138968c2fb318 /tests | |
parent | fea85ac3e31842f80493e2df8a93a28f21cd815f (diff) |
remove debugging printfs
git-svn-id: http://skia.googlecode.com/svn/trunk@4551 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/DataRefTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/DataRefTest.cpp b/tests/DataRefTest.cpp index 8c9d15154d..8505fa96a0 100644 --- a/tests/DataRefTest.cpp +++ b/tests/DataRefTest.cpp @@ -56,7 +56,7 @@ static void test_dataset(skiatest::Reporter* reporter, const SkDataSet& ds, for (; !iter.done(); iter.next()) { const char* name = iter.key(); SkData* data = iter.value(); - SkDebugf("[%d] %s:%s\n", index, name, (const char*)data->bytes()); +// SkDebugf("[%d] %s:%s\n", index, name, (const char*)data->bytes()); index += 1; } REPORTER_ASSERT(reporter, index == count); |