diff options
Diffstat (limited to 'src/gtest/src/gtest_main.cc')
-rw-r--r-- | src/gtest/src/gtest_main.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gtest/src/gtest_main.cc b/src/gtest/src/gtest_main.cc index a09bbe0c6c5..f3028225523 100644 --- a/src/gtest/src/gtest_main.cc +++ b/src/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(); } |