mirror of https://github.com/CGAL/cgal
Change Installation/Test_report to NOT erase the initial results when appending the cmake output.
This commit is contained in:
parent
591a25ec1b
commit
b4109fd29a
|
|
@ -63,10 +63,10 @@ output_c3t3_to_vtk_unstructured_grid(const C3T3& c3t3,
|
|||
vit != end;
|
||||
++vit)
|
||||
{
|
||||
typedef typename Triangulation::Weighted_point Weighted_point;
|
||||
typedef typename Triangulation::Point Point;
|
||||
if(vit->in_dimension() > -1)
|
||||
{
|
||||
const Weighted_point& p = tr.point(vit);
|
||||
const Point& p = tr.point(vit);
|
||||
vtk_points->InsertNextPoint(CGAL::to_double(p.x()),
|
||||
CGAL::to_double(p.y()),
|
||||
CGAL::to_double(p.z()));
|
||||
|
|
|
|||
|
|
@ -321,7 +321,7 @@ run_test_on_platform()
|
|||
TEST_REPORT="TestReport_${CGAL_TESTER}_${PLATFORM}"
|
||||
mkdir -p Installation
|
||||
chmod 777 Installation
|
||||
cp "${CGAL_BINARY_DIR}/package_installation.log" "Installation/${TEST_REPORT}"
|
||||
cat "${CGAL_BINARY_DIR}/package_installation.log" >> "Installation/${TEST_REPORT}"
|
||||
|
||||
#call the python script to complete the results report.
|
||||
python3 ${CGAL_DIR}/${TESTSUITE_DIR}test/get_deactivated_packages_info.py Installation/${TEST_REPORT} ${TEST_REPORT} results_${CGAL_TESTER}_${PLATFORM}.txt
|
||||
|
|
|
|||
Loading…
Reference in New Issue