From c9a8313b42ca62994aa7e8f1905d06290bfa3ebf Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Mon, 21 Mar 2016 10:18:01 +0100 Subject: [PATCH] benchmarks: replace printf() by std::cerr for error report --- benchmarks/benchmark_assimp/main.cpp | 4 ++-- benchmarks/benchmark_opencascade/main.cpp | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/benchmarks/benchmark_assimp/main.cpp b/benchmarks/benchmark_assimp/main.cpp index edcce5a..4e562ac 100644 --- a/benchmarks/benchmark_assimp/main.cpp +++ b/benchmarks/benchmark_assimp/main.cpp @@ -286,7 +286,7 @@ static void stl_read(const void* filepath) const int error = gmio_stl_read_file(str_filepath, &mesh_creator, NULL); if (error != GMIO_ERROR_OK) - printf("gmio error: 0x%X\n", error); + std::cerr << "gmio error: 0x" << std::hex << error << std::endl; const aiScene* scene = globalSceneHelper.scene; // std::cout << "BmkGmio, triCount = " @@ -307,7 +307,7 @@ static void stl_write(const char* filepath, gmio_stl_format format) opts.stla_float32_prec = 7; const int error = gmio_stl_write_file(format, filepath, &mesh, NULL); if (error != GMIO_ERROR_OK) - printf("gmio error: 0x%X\n", error); + std::cerr << "gmio error: 0x" << std::hex << error << std::endl; } static void stla_write(const void* filepath) diff --git a/benchmarks/benchmark_opencascade/main.cpp b/benchmarks/benchmark_opencascade/main.cpp index b4823e4..0ede235 100644 --- a/benchmarks/benchmark_opencascade/main.cpp +++ b/benchmarks/benchmark_opencascade/main.cpp @@ -25,6 +25,7 @@ #include "../commons/benchmark_tools.h" +#include #include namespace BmkOcc { @@ -35,19 +36,19 @@ static void RWStl_ReadFile(const void* filepath) { stlMesh = RWStl::ReadFile(OSD_Path(static_cast(filepath))); if (stlMesh.IsNull()) - printf("RWStl::ReadFile(): null mesh\n"); + std::cerr << "RWStl::ReadFile(): null mesh" << std::endl; } static void RWStl_WriteAscii(const void* filepath) { if (!RWStl::WriteAscii(stlMesh, OSD_Path(static_cast(filepath)))) - printf("RWStl::WriteAscii() failure\n"); + std::cerr << "RWStl::WriteAscii() failure" << std::endl; } static void RWStl_WriteBinary(const void* filepath) { if (!RWStl::WriteBinary(stlMesh, OSD_Path(static_cast(filepath)))) - printf("RWStl::WriteBinary() failure\n"); + std::cerr << "RWStl::WriteBinary() failure" << std::endl; } } // namespace BmkOcc @@ -63,7 +64,7 @@ static void stl_read(const void* filepath) const int error = gmio_stl_read_file( static_cast(filepath), &mesh_creator, NULL); if (error != GMIO_ERROR_OK) - printf("gmio error: 0x%X\n", error); + std::cerr << "gmio error: 0x" << std::hex << error << std::endl; } static void stl_write(const char* filepath, gmio_stl_format format) @@ -75,7 +76,7 @@ static void stl_write(const char* filepath, gmio_stl_format format) const gmio_stl_mesh occmesh = gmio_stl_occmesh(occ_itmesh); const int error = gmio_stl_write_file(format, filepath, &occmesh, &options); if (error != GMIO_ERROR_OK) - printf("gmio error: 0x%X\n", error); + std::cerr << "gmio error: 0x" << std::hex << error << std::endl; } static void stla_write(const void* filepath)