]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
New tests.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 2 Jun 2004 14:54:53 +0000 (14:54 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 2 Jun 2004 14:54:53 +0000 (14:54 +0000)
git-svn-id: https://svn.dealii.org/trunk@9359 0785d39b-7218-0410-832d-ea1e28bc413d

tests/bits/block_vector_vector_01.cc [new file with mode: 0644]
tests/bits/vector_vector_01.cc [new file with mode: 0644]

diff --git a/tests/bits/block_vector_vector_01.cc b/tests/bits/block_vector_vector_01.cc
new file mode 100644 (file)
index 0000000..a44519c
--- /dev/null
@@ -0,0 +1,75 @@
+//----------------------------  block_vector_vector_01.cc  ---------------------------
+//    $Id$
+//    Version: $Name$ 
+//
+//    Copyright (C) 2004 by the deal.II authors
+//
+//    This file is subject to QPL and may not be  distributed
+//    without copyright and license information. Please refer
+//    to the file deal.II/doc/license.html for the  text  and
+//    further information on this license.
+//
+//----------------------------  block_vector_vector_01.cc  ---------------------------
+
+
+// check existence of
+// BlockVector<double>::BlockVector(BlockVector<float>). this conversion
+// constructor was disabled previously altogether because of a compiler defect
+// that did not honor the 'explicit' keyword on template constructors. this is
+// now autoconf'ed.
+
+#include "../tests.h"
+#include <lac/vector.h>    
+#include <fstream>
+#include <iostream>
+
+
+void test (Vector<double> &v)
+{
+  for (unsigned int i=0; i<v.size(); ++i)
+    v(i) = i+1.;
+  Vector<float> w(v);
+
+  Assert (w==v, ExcInternalError());
+  
+  deallog << "OK" << std::endl;
+}
+
+
+
+int main () 
+{
+  std::ofstream logfile("block_vector_vector_01.output");
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+
+  try
+    {
+      Vector<double> v (100);
+      test (v);
+    }
+  catch (std::exception &exc)
+    {
+      std::cerr << std::endl << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      std::cerr << "Exception on processing: " << std::endl
+               << exc.what() << std::endl
+               << "Aborting!" << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      
+      return 1;
+    }
+  catch (...) 
+    {
+      std::cerr << std::endl << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      std::cerr << "Unknown exception!" << std::endl
+               << "Aborting!" << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      return 1;
+    };
+}
diff --git a/tests/bits/vector_vector_01.cc b/tests/bits/vector_vector_01.cc
new file mode 100644 (file)
index 0000000..0bb8471
--- /dev/null
@@ -0,0 +1,74 @@
+//----------------------------  vector_vector_01.cc  ---------------------------
+//    $Id$
+//    Version: $Name$ 
+//
+//    Copyright (C) 2004 by the deal.II authors
+//
+//    This file is subject to QPL and may not be  distributed
+//    without copyright and license information. Please refer
+//    to the file deal.II/doc/license.html for the  text  and
+//    further information on this license.
+//
+//----------------------------  vector_vector_01.cc  ---------------------------
+
+
+// check existence Vector<double>::Vector(Vector<float>). this conversion
+// constructor was disabled previously altogether because of a compiler defect
+// that did not honor the 'explicit' keyword on template constructors. this is
+// now autoconf'ed.
+
+#include "../tests.h"
+#include <lac/vector.h>    
+#include <fstream>
+#include <iostream>
+
+
+void test (Vector<double> &v)
+{
+  for (unsigned int i=0; i<v.size(); ++i)
+    v(i) = i+1.;
+  Vector<float> w(v);
+
+  Assert (w==v, ExcInternalError());
+  
+  deallog << "OK" << std::endl;
+}
+
+
+
+int main () 
+{
+  std::ofstream logfile("vector_vector_01.output");
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+
+  try
+    {
+      Vector<double> v (100);
+      test (v);
+    }
+  catch (std::exception &exc)
+    {
+      std::cerr << std::endl << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      std::cerr << "Exception on processing: " << std::endl
+               << exc.what() << std::endl
+               << "Aborting!" << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      
+      return 1;
+    }
+  catch (...) 
+    {
+      std::cerr << std::endl << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      std::cerr << "Unknown exception!" << std::endl
+               << "Aborting!" << std::endl
+               << "----------------------------------------------------"
+               << std::endl;
+      return 1;
+    };
+}

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.