]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Convert serialization tests to ctest.
authorBruno Turcksin <bruno.turcksin@gmail.com>
Mon, 26 Aug 2013 01:01:58 +0000 (01:01 +0000)
committerBruno Turcksin <bruno.turcksin@gmail.com>
Mon, 26 Aug 2013 01:01:58 +0000 (01:01 +0000)
git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30489 0785d39b-7218-0410-832d-ea1e28bc413d

73 files changed:
tests/CMakeLists.txt
tests/serialization/CMakeLists.txt [new file with mode: 0644]
tests/serialization/Makefile [deleted file]
tests/serialization/dof_handler_01.cc
tests/serialization/dof_handler_01.output [moved from tests/serialization/dof_handler_01/cmp/generic with 100% similarity]
tests/serialization/parameter_handler.cc
tests/serialization/parameter_handler.output [moved from tests/serialization/parameter_handler/cmp/generic with 100% similarity]
tests/serialization/point.cc
tests/serialization/point.output [moved from tests/serialization/point/cmp/generic with 100% similarity]
tests/serialization/pointer_01.cc
tests/serialization/pointer_01.output [moved from tests/serialization/pointer_01/cmp/generic with 100% similarity]
tests/serialization/pointer_02.cc
tests/serialization/pointer_02.output [moved from tests/serialization/pointer_02/cmp/generic with 100% similarity]
tests/serialization/pointer_03.cc
tests/serialization/pointer_03.output [moved from tests/serialization/pointer_03/cmp/generic with 100% similarity]
tests/serialization/pointer_04.cc
tests/serialization/pointer_04.output [moved from tests/serialization/pointer_04/cmp/generic with 100% similarity]
tests/serialization/pointer_05.cc
tests/serialization/pointer_05.output [moved from tests/serialization/pointer_05/cmp/generic with 100% similarity]
tests/serialization/polynomial.cc
tests/serialization/polynomial.output [moved from tests/serialization/polynomial/cmp/generic with 100% similarity]
tests/serialization/polynomial_hierarchical.cc
tests/serialization/polynomial_hierarchical.output [moved from tests/serialization/polynomial_hierarchical/cmp/generic with 100% similarity]
tests/serialization/polynomial_lagrange_equidistant.cc
tests/serialization/polynomial_lagrange_equidistant.output [moved from tests/serialization/polynomial_lagrange_equidistant/cmp/generic with 100% similarity]
tests/serialization/polynomial_lagrange_gl.cc
tests/serialization/polynomial_lagrange_gl.output [moved from tests/serialization/polynomial_lagrange_gl/cmp/generic with 100% similarity]
tests/serialization/polynomial_legendre.cc
tests/serialization/polynomial_legendre.output [moved from tests/serialization/polynomial_legendre/cmp/generic with 100% similarity]
tests/serialization/polynomial_lobatto.cc
tests/serialization/polynomial_lobatto.output [moved from tests/serialization/polynomial_lobatto/cmp/generic with 100% similarity]
tests/serialization/polynomial_monomial.cc
tests/serialization/polynomial_monomial.output [moved from tests/serialization/polynomial_monomial/cmp/generic with 100% similarity]
tests/serialization/quadrature.cc
tests/serialization/quadrature.output [moved from tests/serialization/quadrature/cmp/generic with 100% similarity]
tests/serialization/quadrature_qanisotropic.cc
tests/serialization/quadrature_qanisotropic.output [moved from tests/serialization/quadrature_qanisotropic/cmp/generic with 100% similarity]
tests/serialization/quadrature_qiterated.cc
tests/serialization/quadrature_qiterated.output [moved from tests/serialization/quadrature_qiterated/cmp/generic with 100% similarity]
tests/serialization/sparsity_pattern.cc
tests/serialization/sparsity_pattern.output [moved from tests/serialization/sparsity_pattern/cmp/generic with 100% similarity]
tests/serialization/symmetric_tensor.cc
tests/serialization/symmetric_tensor.output [moved from tests/serialization/symmetric_tensor/cmp/generic with 100% similarity]
tests/serialization/table_1.cc
tests/serialization/table_1.output [moved from tests/serialization/table_1/cmp/generic with 100% similarity]
tests/serialization/table_2.cc
tests/serialization/table_2.output [moved from tests/serialization/table_2/cmp/generic with 100% similarity]
tests/serialization/table_3.cc
tests/serialization/table_3.output [moved from tests/serialization/table_3/cmp/generic with 100% similarity]
tests/serialization/table_4.cc
tests/serialization/table_4.output [moved from tests/serialization/table_4/cmp/generic with 100% similarity]
tests/serialization/table_5.cc
tests/serialization/table_5.output [moved from tests/serialization/table_5/cmp/generic with 100% similarity]
tests/serialization/table_6.cc
tests/serialization/table_6.output [moved from tests/serialization/table_6/cmp/generic with 100% similarity]
tests/serialization/table_7.cc
tests/serialization/table_7.output [moved from tests/serialization/table_7/cmp/generic with 100% similarity]
tests/serialization/table_handler.cc
tests/serialization/table_handler.output [moved from tests/serialization/table_handler/cmp/generic with 100% similarity]
tests/serialization/tensor.cc
tests/serialization/tensor.output [moved from tests/serialization/tensor/cmp/generic with 100% similarity]
tests/serialization/tensor_base.cc
tests/serialization/tensor_base.output [moved from tests/serialization/tensor_base/cmp/generic with 100% similarity]
tests/serialization/tensor_base_scalar.cc
tests/serialization/tensor_base_scalar.output [moved from tests/serialization/tensor_base_scalar/cmp/generic with 100% similarity]
tests/serialization/test_01.cc
tests/serialization/test_01.output [moved from tests/serialization/test_01/cmp/generic with 100% similarity]
tests/serialization/triangulation_01.cc
tests/serialization/triangulation_01.output [moved from tests/serialization/triangulation_01/cmp/generic with 100% similarity]
tests/serialization/triangulation_02.cc
tests/serialization/triangulation_02.output [moved from tests/serialization/triangulation_02/cmp/generic with 100% similarity]
tests/serialization/vector.cc
tests/serialization/vector.output [moved from tests/serialization/vector/cmp/generic with 100% similarity]

index 9c0fa43da78c673dd9dcc480ba9548a366c5ae6b..3ea2217caf330cc9dcc092dd2e632c46d7262518 100644 (file)
@@ -90,7 +90,7 @@ ADD_SUBDIRECTORY(lac)
 ADD_SUBDIRECTORY(matrix_free)
 #mesh_converter
 ADD_SUBDIRECTORY(multigrid)
-#serialization
+ADD_SUBDIRECTORY(serialization)
 
 #distributed_grids
 #gla
diff --git a/tests/serialization/CMakeLists.txt b/tests/serialization/CMakeLists.txt
new file mode 100644 (file)
index 0000000..0efb828
--- /dev/null
@@ -0,0 +1 @@
+DEAL_II_PICKUP_TESTS()
diff --git a/tests/serialization/Makefile b/tests/serialization/Makefile
deleted file mode 100644 (file)
index 8569c49..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-############################################################
-# $Id$
-# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by the deal.II authors
-############################################################
-
-############################################################
-# Include general settings for including DEAL libraries
-############################################################
-
-include ../Makefile.paths
-include $D/common/Make.global_options
-include ../Makefile.rules
--include Makefile.depend
--include Makefile.tests
index 701bbf4e147dad8c4c7ad8868707332127122a0d..1f4caf0a28c3e6d819a7efa5672230d5d1f286f7 100644 (file)
@@ -179,7 +179,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("dof_handler_01/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 1203d69bcb2fe072655d95da589b4ff27c45bd54..f72a69610d6c8fe9feeecf4b57602715c38aa644 100644 (file)
@@ -121,7 +121,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("parameter_handler/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 17a551afd15fa49d03303bb1dab7e5611cb2dd2e..926116297550424523e2192fbc180185af047336 100644 (file)
@@ -35,7 +35,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("point/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 52a1da4ad15272e83765dd9bda5d4660c9a27f24..0ea34cbedda59d1e7e06825ae794de4ab293160b 100644 (file)
@@ -82,7 +82,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("pointer_01/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 2307043c863bdf12eb7b3f331648e88740670bca..6e48a928e6db174b46c449d22ee671e93936a09b 100644 (file)
@@ -99,7 +99,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("pointer_02/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 5d792daf395e60c7855d2cd5ddec9a144d034d2c..13d247e3e28f81b59a43f9610c152975f70101d0 100644 (file)
@@ -107,7 +107,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("pointer_03/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index af662e3c5203b048e3fe1c966260ce0e0fb12899..aeba465ffd543af49880ef26ca1ed16dd54ba84e 100644 (file)
@@ -112,7 +112,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("pointer_04/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 8466e8c94ed7d9bc5a1cfc521e82f92504fe0268..64fbe76240056fbccb1c2002af1f76e8fd4a1094 100644 (file)
@@ -128,7 +128,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("pointer_05/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 9981823c861c6b15145225d1158a7766898f83c8..b08581b41aaa793fc054ebfcff1376040ff58b43 100644 (file)
@@ -44,7 +44,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("polynomial/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 58d5c9f60a341ae8c34eb7ea333759ec7becfafc..d10fa836e411fdd5f675d09f7f4787060154e203 100644 (file)
@@ -35,7 +35,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("polynomial_hierarchical/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 50a745e4ca3c8b8720e18b8e0f7fdeeb7185bb2a..f9bd48959f221bd9e277476295d16d6c73f5c47b 100644 (file)
@@ -39,7 +39,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("polynomial_lagrange_equidistant/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 262a956890f11b98e158eeb8ccc44ee541356876..b58320ad4148b383b569e2b530a3b86c19fb6fc0 100644 (file)
@@ -43,7 +43,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("polynomial_lagrange_gl/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 7d20429bf12cda89cf73382d563ef7947c928e74..0f98384159eab98172c9f946698c726213a70ed9 100644 (file)
@@ -36,7 +36,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("polynomial_legendre/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 2b76b9d4ed13b771da4bdbc945726ef5a14a8e9a..a0a2fca76ee8d2e94eab50efcb0c433c0f2cf871 100644 (file)
@@ -36,7 +36,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("polynomial_lobatto/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 2e3d5198159f7cc466e5da07519b212259369f8d..335c39c2168d8899fb8bbdb1d469605f7d86f9b9 100644 (file)
@@ -40,7 +40,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("polynomial_monomial/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 7533277e9b7c04f531db9b3b4cef9c9c56aebbd7..e43e9ce631e7bde9cd5c2164b5874810bae2b68e 100644 (file)
@@ -57,7 +57,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("quadrature/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 1a297e3154dacc932971e5d60336da07ee185751..e96b6ca94a9640c5978b8d964cd5c4fe4ca94e0f 100644 (file)
@@ -50,7 +50,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("quadrature_qanisotropic/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 095f85f29c3021ff5f5c9d794bad1bfd152dbe3e..2b316e96946432587f424bd610d167f5c0a02dc3 100644 (file)
@@ -51,7 +51,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("quadrature_qiterated/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 484495a1be14d9a0cabe535fad25714829115bf6..72ec6111aff0eadc3fe36e0bc7c0bec303b94f00 100644 (file)
@@ -44,7 +44,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("sparsity_pattern/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 0c8e6d8b9927ba3d41057cc255a177679105c96c..949cf7f8daedcfe396bb358bc424bf5d09b65c8e 100644 (file)
@@ -45,7 +45,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("symmetric_tensor/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 9595034076b6030ecadddc42fea9ed9ed8f52d9b..b66a19e29c075cdae9e6680a337180bcdd5924e0 100644 (file)
@@ -44,7 +44,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_1/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 747f0b21414a1ec9bc60cd0b52c4fc4a7c5d8970..e0bf35a5c87ff78232e2a0acd8b0610e30706504 100644 (file)
@@ -52,7 +52,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_2/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 74fa47dad7f7272890b32d65391be47a448a2aa1..2362258554036d71a692f92ff09317a4af82c38e 100644 (file)
@@ -57,7 +57,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_3/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index d73e8dd9f2f3d497be890ae38d677b6bffd05124..a30ee30eb3e1bed299fc015347e9fc9b1963140a 100644 (file)
@@ -61,7 +61,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_4/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 10d475b64093c92373a9b497b74f867d59bd29b3..fb5814aa6b5eb15d1f46b1d12ff3f0cb2bfecac2 100644 (file)
@@ -64,7 +64,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_5/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 1c74b8e0be45945fba781989d18152f9d5e93030..404c41790e586931c14fc04379bb0c6eca907e98 100644 (file)
@@ -71,7 +71,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_6/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index dfdaaaeecdfbaf6253db8fbcbf053631a5c2b6f2..d152ee4954fecd1638f8ff285b18687e449ff619 100644 (file)
@@ -74,7 +74,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_7/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 2e11dda4855993d143febbd1e616f73506e80791..69c8c27654ee058a5f3f322ddb79a90883bf4712 100644 (file)
@@ -58,7 +58,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("table_handler/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 4caf7cc783b48f3f15f45f618df754adf387cca6..e4ed7b0631dd7dad64bfeeae0b01953538bc9fd1 100644 (file)
@@ -52,7 +52,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("tensor/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 44d6176a989c8aa712a128090bac8d28db0dd4f2..764fda7a10239b6781947b00f408353bf5b2c410 100644 (file)
@@ -37,7 +37,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("tensor_base/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index ad97ecff1cca2dd1ceb5b5ecebd8fbc5503d0f17..3aa36a178b668b4c44a42699665dc6dda4db7d13 100644 (file)
@@ -36,7 +36,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("tensor_base_scalar/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 1be9c3bee68dc63ca17ca669e26cf00751cfbe63..1f638c0a3e99afa78ec79bc774370638b89bfb58 100644 (file)
@@ -71,7 +71,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("test_01/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 628c3b9e5450dbc77e1863d9ba9b6d8ef03d9fa4..c12557e369cb126c6e52991cf68d7c10f3c29a02 100644 (file)
@@ -147,7 +147,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("triangulation_01/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index bb5e9067e00d19535fbb000e42e058982a412ac9..a6e3c1c16ce7c0e2ab3ff74d62cf6d759210addd 100644 (file)
@@ -159,7 +159,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("triangulation_02/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);
index 9367c5959c53d9dffc19625274d836e516bc9420..ee981c6f725d2d9016af467455f26535aee45984 100644 (file)
@@ -45,7 +45,7 @@ void test ()
 
 int main ()
 {
-  std::ofstream logfile("vector/output");
+  std::ofstream logfile("output");
   deallog << std::setprecision(3);
   deallog.attach(logfile);
   deallog.depth_console(0);

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.