From a6da2d53597944aa7bf648e3f73405ed168b47e2 Mon Sep 17 00:00:00 2001 From: heister Date: Fri, 27 Sep 2013 12:43:41 +0000 Subject: [PATCH] update test git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30976 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/mpi/constraint_matrix_crash_01.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/mpi/constraint_matrix_crash_01.cc b/tests/mpi/constraint_matrix_crash_01.cc index 74f4a764ef..42627d3af3 100644 --- a/tests/mpi/constraint_matrix_crash_01.cc +++ b/tests/mpi/constraint_matrix_crash_01.cc @@ -16,7 +16,7 @@ -// ConstraintMatrix::add_line crashes in release mode +// ConstraintMatrix::add_line crashes in release mode (missing compress inside ConstraintMatrix) #include "../tests.h" #include @@ -34,9 +34,9 @@ void test () unsigned int numproc = Utilities::MPI::n_mpi_processes (MPI_COMM_WORLD); IndexSet local_active_together(3); - local_active_together.add_range(0,1); - local_active_together.add_range(1,3); - + local_active_together.add_range(0,3); + //local_active_together.compress(); + ConstraintMatrix cm(local_active_together); cm.add_line(1); cm.close(); -- 2.39.5