aboutsummaryrefslogtreecommitdiff
path: root/tests/gtest/src/gtest_main.cc
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2015-03-25 05:56:36 -0400
committerThomas Winget <tewinget@gmail.com>2015-03-25 05:56:36 -0400
commit5c0bc0050ccfd579ed75be384e928e0165d6b2ce (patch)
tree7bce2200f19b05448cb719b54037a7c2c82d6bab /tests/gtest/src/gtest_main.cc
parentMerges #36 (diff)
parentMerge pull request #243 (diff)
downloadmonero-5c0bc0050ccfd579ed75be384e928e0165d6b2ce.tar.xz
Merge upstream updates into blockchain branch
Diffstat (limited to 'tests/gtest/src/gtest_main.cc')
-rw-r--r--tests/gtest/src/gtest_main.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/gtest/src/gtest_main.cc b/tests/gtest/src/gtest_main.cc
index a09bbe0c6..f30282255 100644
--- a/tests/gtest/src/gtest_main.cc
+++ b/tests/gtest/src/gtest_main.cc
@@ -27,13 +27,12 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#include <iostream>
+#include <stdio.h>
#include "gtest/gtest.h"
GTEST_API_ int main(int argc, char **argv) {
- std::cout << "Running main() from gtest_main.cc\n";
-
+ printf("Running main() from gtest_main.cc\n");
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}