mirror of https://github.com/CGAL/cgal
Merge pull request #7838 from janetournois/SMDS_3-delete_test_output-jtournois
SMDS_3 - avoid output files for testing
This commit is contained in:
commit
0131b0e03e
|
|
@ -389,8 +389,8 @@ struct Test_c3t3_io {
|
||||||
filename += "_new";
|
filename += "_new";
|
||||||
if(binary) filename += ".binary";
|
if(binary) filename += ".binary";
|
||||||
filename += ".cgal";
|
filename += ".cgal";
|
||||||
std::ofstream output(filename.c_str(),
|
std::ostringstream output(binary
|
||||||
binary ? (std::ios_base::out | std::ios_base::binary)
|
? (std::ios_base::out | std::ios_base::binary)
|
||||||
: std::ios_base::out);
|
: std::ios_base::out);
|
||||||
CGAL::IO::save_binary_file(output, c3t3_bis, binary);
|
CGAL::IO::save_binary_file(output, c3t3_bis, binary);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue