X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tests%2Fcore%2Ftest_thread.cpp;h=1c76698646ab0a89365c826af73f6d71abd11af1;hb=3a034abb4dca58ff0940687d8dd2b829ce2e226f;hp=8eec1f03d5cbf23967fe16a44fdf919f51430b90;hpb=58be0971049907f3166ce56a6ad509769565158f;p=framework%2Fweb%2Fwrt-commons.git diff --git a/tests/core/test_thread.cpp b/tests/core/test_thread.cpp index 8eec1f0..1c76698 100644 --- a/tests/core/test_thread.cpp +++ b/tests/core/test_thread.cpp @@ -21,7 +21,7 @@ */ #include #include -#include +#include RUNNER_TEST_GROUP_INIT(DPL) @@ -33,18 +33,18 @@ class Foo int id; Foo(int i = 0) : id(i) { - LogDebug("Foo: ctor: " << id); + WrtLogD("Foo: ctor: %i", id); } ~Foo() { - LogDebug("Foo: dtor: " << id); + WrtLogD("Foo: dtor: %i", id); g_wasFooDeleted = true; } void Bar() { - LogDebug("Foo: bar"); + WrtLogD("Foo: bar"); } }; @@ -57,7 +57,7 @@ class FooThread : protected: virtual int ThreadEntry() { - LogDebug("In thread"); + WrtLogD("In thread"); RUNNER_ASSERT(!g_foo); RUNNER_ASSERT(g_foo.IsNull());