From 27459ab1a36fd674cd1d7272b4f1ac986e6f9691 Mon Sep 17 00:00:00 2001 From: zhaojiaying01 Date: Wed, 23 Jan 2019 12:12:00 +0800 Subject: [PATCH] replace std::cout with DLOG. --- test/operators/test_logical_and_op.cpp | 2 +- test/operators/test_logical_not_op.cpp | 2 +- test/operators/test_logical_or_op.cpp | 2 +- test/operators/test_logical_xor_op.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/operators/test_logical_and_op.cpp b/test/operators/test_logical_and_op.cpp index 01a456cc4d..216513cf3d 100644 --- a/test/operators/test_logical_and_op.cpp +++ b/test/operators/test_logical_and_op.cpp @@ -79,6 +79,6 @@ int main() { paddle_mobile::TestLogicalAndOp({1, 1, 2, 3}); paddle_mobile::TestLogicalAndOp({1, 3, 11, 12}); paddle_mobile::TestLogicalAndOp({1, 16, 32, 32}); - std::cout << "test logical_and op pass." << std::endl; + DLOG << "test logical_and op pass."; return 0; } diff --git a/test/operators/test_logical_not_op.cpp b/test/operators/test_logical_not_op.cpp index 9369997e67..55d48f79b7 100644 --- a/test/operators/test_logical_not_op.cpp +++ b/test/operators/test_logical_not_op.cpp @@ -71,6 +71,6 @@ int main() { paddle_mobile::TestLogicalNotOp({1, 1, 2, 3}); paddle_mobile::TestLogicalNotOp({1, 3, 11, 12}); paddle_mobile::TestLogicalNotOp({1, 16, 32, 32}); - std::cout << "test logical_not op pass." << std::endl; + DLOG << "test logical_not op pass."; return 0; } diff --git a/test/operators/test_logical_or_op.cpp b/test/operators/test_logical_or_op.cpp index 85e98b7aa8..593ee35e69 100644 --- a/test/operators/test_logical_or_op.cpp +++ b/test/operators/test_logical_or_op.cpp @@ -79,6 +79,6 @@ int main() { paddle_mobile::TestLogicalOrOp({1, 1, 2, 3}); paddle_mobile::TestLogicalOrOp({1, 3, 11, 12}); paddle_mobile::TestLogicalOrOp({1, 16, 32, 32}); - std::cout << "test logical_or op pass." << std::endl; + DLOG << "test logical_or op pass."; return 0; } diff --git a/test/operators/test_logical_xor_op.cpp b/test/operators/test_logical_xor_op.cpp index 8806452fc6..b4ca4c8267 100644 --- a/test/operators/test_logical_xor_op.cpp +++ b/test/operators/test_logical_xor_op.cpp @@ -81,6 +81,6 @@ int main() { paddle_mobile::TestLogicalXorOp({1, 1, 2, 3}); paddle_mobile::TestLogicalXorOp({1, 3, 11, 12}); paddle_mobile::TestLogicalXorOp({1, 16, 32, 32}); - std::cout << "test logical_xor op pass." << std::endl; + DLOG << "test logical_xor op pass."; return 0; } -- GitLab