aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2021-06-22 14:31:32 +0000
committerGravatar Antonio Sánchez <cantonios@google.com>2021-06-22 14:31:32 +0000
commit4ad30a73fc8b707bf90b9ec712a12a7f63ae823a (patch)
treecd59a12061dca031af2b09b99cb78b1b94e62c4b /test
parentea62c937edcc2c5efdaccfb6813ca39f48564ece (diff)
Use internal::ref_selector to avoid holding a reference to a RHS expression.
Diffstat (limited to 'test')
-rw-r--r--test/solverbase.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/solverbase.h b/test/solverbase.h
index 13c09593a..ba76ba4ee 100644
--- a/test/solverbase.h
+++ b/test/solverbase.h
@@ -31,6 +31,10 @@ void check_solverbase(const MatrixType& matrix, const SolverType& solver, Index
solver_solution2 = RhsType::Random(rows,cols2);
solver_solution2 = solver.adjoint().solve(m2);
VERIFY_IS_APPROX(m2, matrix.adjoint()*solver_solution2);
+ // test with temporary expression as rhs
+ m2 = DstType::Random(cols,cols2);
+ solver_solution = solver.solve(matrix*m2);
+ VERIFY_IS_APPROX(matrix*m2, matrix*solver_solution);
}
#endif // TEST_SOLVERBASE_H