diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca5797d8..126abed0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,7 @@ - Set Re::Solve's real type and matrix/vector index type at CMake configuration time. * Added size assertions to `VectorHandler::gemv` and fixed vector sizing in `GramSchmidt` accordingly. +- Added line to testlog to tell the user to expect warnings as part of normal testing. - Fixed GPU refactorization allocation and synchronization errors, uninitialized GMRES example initial guesses, and CUDA ILU0 failures on stored numerical zero pivots. ## Changes to Re::Solve in release 0.99.2 diff --git a/tests/functionality/testSysGmres.cpp b/tests/functionality/testSysGmres.cpp index c7790bd8c..8457a40aa 100644 --- a/tests/functionality/testSysGmres.cpp +++ b/tests/functionality/testSysGmres.cpp @@ -233,6 +233,10 @@ int test(int argc, char* argv[]) << "\tReturned residual : " << rejected_guess_rnorm << "\n\n"; error_sum++; } + else + { + Log::misc << "Expect a warning on the next line for the bad initial guess test." << std::endl; + } // Use a scaled converged solution as a nonzero initial guess. vector_type vec_x_guess(vec_x.getSize());