From: wolf Date: Fri, 8 Nov 2002 15:36:05 +0000 (+0000) Subject: Move the small tests that test just a single function and are actually boiled down... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6d4e634808caf4727fba4a10eca456ddfa596df;p=dealii-svn.git Move the small tests that test just a single function and are actually boiled down examples of failures in the library at one point in time, to the directory _bits_. git-svn-id: https://svn.dealii.org/trunk@6740 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/Makefile b/tests/bits/Makefile new file mode 100644 index 0000000000..da4287720b --- /dev/null +++ b/tests/bits/Makefile @@ -0,0 +1,37 @@ +# Generated automatically from Makefile.in by configure. +############################################################ +# Makefile,v 1.15 2002/06/13 12:51:13 hartmann Exp +# Copyright (C) 2000, 2001, 2002 by the deal.II authors +############################################################ + +############################################################ +# Include general settings for including DEAL libraries +############################################################ + +include ../Makefile.paths +include $D/common/Make.global_options +debug-mode = on + +libraries = $(lib-deal2-1d.g) \ + $(lib-deal2-2d.g) \ + $(lib-deal2-3d.g) \ + $(lib-lac.g) \ + $(lib-base.g) + +default: run-tests + +############################################################ + +anna_1.exe : anna_1.go $(libraries) +anna_2.exe : anna_2.go $(libraries) +anna_3.exe : anna_3.go $(libraries) +roy_1.exe : roy_1.go $(libraries) + +tests = anna_1 anna_2 anna_3 \ + roy_1 + +############################################################ + + +include ../Makefile.rules +include Makefile.depend diff --git a/tests/fe/anna_1.cc b/tests/bits/anna_1.cc similarity index 100% rename from tests/fe/anna_1.cc rename to tests/bits/anna_1.cc diff --git a/tests/fe/anna_1.checked b/tests/bits/anna_1.checked similarity index 100% rename from tests/fe/anna_1.checked rename to tests/bits/anna_1.checked diff --git a/tests/fe/anna_2.cc b/tests/bits/anna_2.cc similarity index 100% rename from tests/fe/anna_2.cc rename to tests/bits/anna_2.cc diff --git a/tests/fe/anna_2.checked b/tests/bits/anna_2.checked similarity index 100% rename from tests/fe/anna_2.checked rename to tests/bits/anna_2.checked diff --git a/tests/fe/anna_3.cc b/tests/bits/anna_3.cc similarity index 100% rename from tests/fe/anna_3.cc rename to tests/bits/anna_3.cc diff --git a/tests/fe/anna_3.checked b/tests/bits/anna_3.checked similarity index 100% rename from tests/fe/anna_3.checked rename to tests/bits/anna_3.checked diff --git a/tests/fe/roy_1.cc b/tests/bits/roy_1.cc similarity index 100% rename from tests/fe/roy_1.cc rename to tests/bits/roy_1.cc diff --git a/tests/fe/roy_1.checked b/tests/bits/roy_1.checked similarity index 100% rename from tests/fe/roy_1.checked rename to tests/bits/roy_1.checked diff --git a/tests/fe/Makefile b/tests/fe/Makefile index 00522c3230..17d4e4d1aa 100644 --- a/tests/fe/Makefile +++ b/tests/fe/Makefile @@ -39,17 +39,12 @@ numbering.exe : numbering.go $(libraries) shapes.exe : shapes.go $(libraries) transfer.exe : transfer.go $(libraries) up_and_down.exe : up_and_down.go $(libraries) -anna_1.exe : anna_1.go $(libraries) -anna_2.exe : anna_2.go $(libraries) -anna_3.exe : anna_3.go $(libraries) -roy_1.exe : roy_1.go $(libraries) tests = fe_data_test fe_traits fe_tools_test mapping \ mapping_c1 shapes derivatives numbering mapping_q1_eulerian \ transfer internals \ non_primitive_1 non_primitive_2 \ - nedelec nedelec_2 nedelec_3 up_and_down anna_1 anna_2 anna_3 \ - roy_1 + nedelec nedelec_2 nedelec_3 up_and_down ############################################################