From: wolf Date: Wed, 22 Oct 2003 22:42:26 +0000 (+0000) Subject: Generate output, add comment. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8b73222857a5930b9e125b41e037fdbac9635dc;p=dealii-svn.git Generate output, add comment. git-svn-id: https://svn.dealii.org/trunk@8132 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/solution_transfer_1.cc b/tests/bits/solution_transfer_1.cc index eb96c3b1ff..670c142bd0 100644 --- a/tests/bits/solution_transfer_1.cc +++ b/tests/bits/solution_transfer_1.cc @@ -16,6 +16,9 @@ // vector or vectors as input and an empty vector of vectors as // output, then the output was a zero vector even if the input vector // was nonzero +// +// this was due to us computing the output vector size before we +// resized the output vector #include #include @@ -70,4 +73,6 @@ int main () // should not be either! Assert (solution_out[0].l2_norm() > 0, ExcInternalError()); + + deallog << "OK" << std::endl; }