From 0a2d9fef72a8b3e29ed9a6ba735fc38062f89707 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 19 Feb 1999 13:22:23 +0000 Subject: [PATCH] Add a file describing the way the files in this directory work. git-svn-id: https://svn.dealii.org/trunk@849 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/Conventions | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/deal.II/Conventions diff --git a/tests/deal.II/Conventions b/tests/deal.II/Conventions new file mode 100644 index 0000000000..cb46cdc1a7 --- /dev/null +++ b/tests/deal.II/Conventions @@ -0,0 +1,24 @@ +Conventions for the /tests/deal.II directory: +============================================= + +Since the files in this directory may need to be linked against one or +more of the deal_II_?d.[g.]a libraries and since we do not want to +specify this in the Makefile explicitely, please use the following two +lines somewhere in the .cc file for the respective testcase: + +// deal_II_libraries.g=-ldeal_II_2d.g +// deal_II_libraries=-ldeal_II_2d + +Respectively, if the program needs to be linked with the 3d library, +replace 2d by 3d. If the program needs to be linked against both, then +write + +// deal_II_libraries.g=-ldeal_II_2d.g -ldeal_II_3d.g +// deal_II_libraries=-ldeal_II_2d -ldeal_II_3d + + +East test case shall give its output (apart from errors) to +'cout'. For each test case, there shall be a file with the name of the +test case and the extension '.expect' which contains the output that +we expect if program and library are working as expected. The actual +output of the program is autoamtically compared against this file. \ No newline at end of file -- 2.39.5