]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
remove unused directory
authorkanschat <kanschat@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 8 Nov 2010 16:20:36 +0000 (16:20 +0000)
committerkanschat <kanschat@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 8 Nov 2010 16:20:36 +0000 (16:20 +0000)
git-svn-id: https://svn.dealii.org/trunk@22635 0785d39b-7218-0410-832d-ea1e28bc413d

24 files changed:
tests/test/Makefile [deleted file]
tests/test/README [deleted file]
tests/test/no_compile_01.cc [deleted file]
tests/test/no_compile_02.cc [deleted file]
tests/test/no_diff_01.cc [deleted file]
tests/test/no_diff_01/cmp/generic [deleted file]
tests/test/no_diff_02.cc [deleted file]
tests/test/no_diff_02/cmp/generic [deleted file]
tests/test/no_diff_03.cc [deleted file]
tests/test/no_diff_03/cmp/generic [deleted file]
tests/test/no_diff_04.cc [deleted file]
tests/test/no_diff_04/cmp/generic [deleted file]
tests/test/no_link_01.cc [deleted file]
tests/test/no_link_02.cc [deleted file]
tests/test/no_run_01.cc [deleted file]
tests/test/no_run_02.cc [deleted file]
tests/test/no_run_03.cc [deleted file]
tests/test/no_run_03/cmp/generic [deleted file]
tests/test/no_run_04.cc [deleted file]
tests/test/no_run_04/cmp/generic [deleted file]
tests/test/ok_01.cc [deleted file]
tests/test/ok_01/cmp/generic [deleted file]
tests/test/ok_02.cc [deleted file]
tests/test/ok_02/cmp/generic [deleted file]

diff --git a/tests/test/Makefile b/tests/test/Makefile
deleted file mode 100644 (file)
index c77f9fd..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-############################################################
-# $Id: Makefile 13841 2006-09-06 21:04:19Z kanschat $
-# Copyright (C) 2006, 2010 by the deal.II authors
-############################################################
-
-############################################################
-# Test if test suite reports the expected results
-#
-# This directory contains tests failing at different stages.
-# When running all tests, this should be reflected in the results.
-#
-############################################################
-
-include ../Makefile.paths
-include $D/common/Make.global_options
-debug-mode = on
-
-
-############################################################
-# phony header file to force compilation whenever
-# make is invoked
-############################################################
-
-phony.h:
-       touch phony.h
-
-############################################################
-# Make sure even numbers are are always recompiled
-############################################################
-
-no_*_?[02468]/obj.g.o:     phony.h
-
-############################################################
-# Another odd target that sets al OK files to the OK status
-# Try 'make report' after doing this
-############################################################
-
-all-ok:
-       @for test in $(tests); do echo 'diff ok' > $$test/OK ; done
-
-
-include ../Makefile.rules
-include Makefile.depend
-include Makefile.tests
-
-.PHONY: default phony.h
diff --git a/tests/test/README b/tests/test/README
deleted file mode 100644 (file)
index 1c6f9f2..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-This directory tests the testsuite, not the deal.II library! It should
-not be included in the regular regression test runs!
-
-Things that should be checked for when changing the implementation of
-the test suite:
-
-1. After make clean, first and second run should produce same results
-2. Tests with even number should produce same results as previous odd number
-3. Tests should produce results as indicated by their name
-
-
-
-Remarks on the implementation
-
-The file phony.h is used to make sure compilation is started in EVERY
-run of make for targets with even numbers.
-
-The current use of phony.h makes 'make report' report a wrong result
-for ok_02. While this is not a problem as long as we know it, we must
-be aware of it when changing the implementation.
-
diff --git a/tests/test/no_compile_01.cc b/tests/test/no_compile_01.cc
deleted file mode 100644 (file)
index 52509b4..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't compile
-
-int main()
-{
-  not_declared();
-}
diff --git a/tests/test/no_compile_02.cc b/tests/test/no_compile_02.cc
deleted file mode 100644 (file)
index 6850824..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't compile
-
-#include "phony.h"
-
-int main()
-{
-  not_declared();
-}
diff --git a/tests/test/no_diff_01.cc b/tests/test/no_diff_01.cc
deleted file mode 100644 (file)
index 5e5bbc3..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program runs, but won't produce results
-
-
-#include <cstdlib>
-#include <fstream>
-
-#include "phony.h"
-
-int main()
-{
-}
diff --git a/tests/test/no_diff_01/cmp/generic b/tests/test/no_diff_01/cmp/generic
deleted file mode 100644 (file)
index e2da009..0000000
+++ /dev/null
@@ -1 +0,0 @@
-other results
diff --git a/tests/test/no_diff_02.cc b/tests/test/no_diff_02.cc
deleted file mode 100644 (file)
index 1378946..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program runs, but won't produce results
-
-
-#include <cstdlib>
-#include <fstream>
-
-int main()
-{
-}
diff --git a/tests/test/no_diff_02/cmp/generic b/tests/test/no_diff_02/cmp/generic
deleted file mode 100644 (file)
index e2da009..0000000
+++ /dev/null
@@ -1 +0,0 @@
-other results
diff --git a/tests/test/no_diff_03.cc b/tests/test/no_diff_03.cc
deleted file mode 100644 (file)
index f35760b..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that produces wrong results
-
-
-#include <cstdlib>
-#include <fstream>
-
-int main()
-{
-  std::ofstream out("no_diff_03/output");
-  out << "My output" << std::endl;
-}
diff --git a/tests/test/no_diff_03/cmp/generic b/tests/test/no_diff_03/cmp/generic
deleted file mode 100644 (file)
index e2da009..0000000
+++ /dev/null
@@ -1 +0,0 @@
-other results
diff --git a/tests/test/no_diff_04.cc b/tests/test/no_diff_04.cc
deleted file mode 100644 (file)
index 9cd2b07..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that produces wrong results
-
-
-#include <cstdlib>
-#include <fstream>
-
-#include "phony.h"
-
-int main()
-{
-  std::ofstream out("no_diff_04/output");
-  out << "My output" << std::endl;
-}
diff --git a/tests/test/no_diff_04/cmp/generic b/tests/test/no_diff_04/cmp/generic
deleted file mode 100644 (file)
index e2da009..0000000
+++ /dev/null
@@ -1 +0,0 @@
-other results
diff --git a/tests/test/no_link_01.cc b/tests/test/no_link_01.cc
deleted file mode 100644 (file)
index 8ef55c6..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't link
-
-void not_implemented();
-
-int main()
-{
-  not_implemented();
-}
diff --git a/tests/test/no_link_02.cc b/tests/test/no_link_02.cc
deleted file mode 100644 (file)
index 4ab1f46..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't link
-
-#include "phony.h"
-
-void not_implemented();
-
-int main()
-{
-  not_implemented();
-}
diff --git a/tests/test/no_run_01.cc b/tests/test/no_run_01.cc
deleted file mode 100644 (file)
index 4743389..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't run and does not produce results
-
-
-#include <cstdlib>
-
-int main()
-{
-  exit(1);
-}
diff --git a/tests/test/no_run_02.cc b/tests/test/no_run_02.cc
deleted file mode 100644 (file)
index 1905b73..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't run and does not produce results
-
-
-#include <cstdlib>
-
-#include "phony.h"
-
-int main()
-{
-  exit(1);
-}
diff --git a/tests/test/no_run_03.cc b/tests/test/no_run_03.cc
deleted file mode 100644 (file)
index f5002a3..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't run, but produces results
-
-
-#include <cstdlib>
-#include <fstream>
-
-int main()
-{
-  std::ofstream out("no_run_03/output");
-  out << "My output" << std::endl;
-  
-  exit(1);
-}
diff --git a/tests/test/no_run_03/cmp/generic b/tests/test/no_run_03/cmp/generic
deleted file mode 100644 (file)
index 09f0171..0000000
+++ /dev/null
@@ -1 +0,0 @@
-My output
diff --git a/tests/test/no_run_04.cc b/tests/test/no_run_04.cc
deleted file mode 100644 (file)
index 7dc5a49..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that won't run, but produces results
-
-
-#include <cstdlib>
-#include <fstream>
-
-#include "phony.h"
-
-int main()
-{
-  std::ofstream out("no_run_04/output");
-  out << "My output" << std::endl;
-  
-  exit(1);
-}
diff --git a/tests/test/no_run_04/cmp/generic b/tests/test/no_run_04/cmp/generic
deleted file mode 100644 (file)
index 09f0171..0000000
+++ /dev/null
@@ -1 +0,0 @@
-My output
diff --git a/tests/test/ok_01.cc b/tests/test/ok_01.cc
deleted file mode 100644 (file)
index 984675c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that produces correct results
-
-
-#include <cstdlib>
-#include <fstream>
-
-int main()
-{
-  std::ofstream out("ok_01/output");
-  out << "My output" << std::endl;
-}
diff --git a/tests/test/ok_01/cmp/generic b/tests/test/ok_01/cmp/generic
deleted file mode 100644 (file)
index 09f0171..0000000
+++ /dev/null
@@ -1 +0,0 @@
-My output
diff --git a/tests/test/ok_02.cc b/tests/test/ok_02.cc
deleted file mode 100644 (file)
index 35230ce..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-//----------------------------------------------------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2006 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.
-//
-//----------------------------------------------------------------------
-
-// A test program that produces correct results
-
-
-#include <cstdlib>
-#include <fstream>
-
-#include "phony.h"
-
-int main()
-{
-  std::ofstream out("ok_02/output");
-  out << "My output" << std::endl;
-}
diff --git a/tests/test/ok_02/cmp/generic b/tests/test/ok_02/cmp/generic
deleted file mode 100644 (file)
index 09f0171..0000000
+++ /dev/null
@@ -1 +0,0 @@
-My output

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.