From 8b200b25beefaa2a1081f1724feddf95bc08ef94 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 7 Mar 2023 13:20:18 +0000 Subject: [PATCH] debug output, as I cannot reproduce locally --- Number_types/test/Number_types/CORE_BigInt.cpp | 1 + Number_types/test/Number_types/CORE_BigRat.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Number_types/test/Number_types/CORE_BigInt.cpp b/Number_types/test/Number_types/CORE_BigInt.cpp index 79b207d2d87..4ef8f8c1e23 100644 --- a/Number_types/test/Number_types/CORE_BigInt.cpp +++ b/Number_types/test/Number_types/CORE_BigInt.cpp @@ -33,6 +33,7 @@ void test_io(){ std::stringstream ss; CGAL::IO::set_pretty_mode(ss); ss << CGAL::IO::oformat(NT(1), CGAL::Parens_as_product_tag()); + std::cout << "|" << ss.str() << "|" << std::endl; assert( ss.str() == "1"); }{ std::stringstream ss; diff --git a/Number_types/test/Number_types/CORE_BigRat.cpp b/Number_types/test/Number_types/CORE_BigRat.cpp index 491bf73ea0e..566bc8c5358 100644 --- a/Number_types/test/Number_types/CORE_BigRat.cpp +++ b/Number_types/test/Number_types/CORE_BigRat.cpp @@ -37,6 +37,7 @@ void test_io(){ std::stringstream ss; CGAL::IO::set_pretty_mode(ss); ss << CGAL::IO::oformat(NT(2), CGAL::Parens_as_product_tag()); + std::cout << "|" << ss.str() << "|" << std::endl; assert( ss.str() == "2"); }{ std::stringstream ss;