From: Wolfgang Bangerth Date: Wed, 9 Nov 2005 19:11:20 +0000 (+0000) Subject: Create subdirectories for each test. Modify the Makefiles to create object and execut... X-Git-Tag: v8.0.0~12885 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=801082aef45b54a08edd7adc9aa64a6b967b556d;p=dealii.git Create subdirectories for each test. Modify the Makefiles to create object and executable files in these subdirectories, and to look for the output there. Modify all tests to put their output into these directories. git-svn-id: https://svn.dealii.org/trunk@11749 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 3020d569f0..fe71075759 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -25,18 +25,18 @@ ifeq ($(findstring gcc,$(GXX_VERSION)),gcc) flags += -Wno-missing-noreturn endif -%.g.$(OBJEXT) : %.cc Makefile +%/obj.g.$(OBJEXT) : %.cc Makefile @echo =====debug========= $< @$(CXX) $(flags) -c $< -o $@ -%.$(OBJEXT) : %.cc Makefile +%/obj.$(OBJEXT) : %.cc Makefile @echo =====optimized===== $< @$(CXX) $(CXXFLAGS.o) -c $< -o $@ ###################################################################### # Don't put $(libraries) into this line since it is already in $^ ###################################################################### -%.exe : +%/exe : @echo =====linking======= $@ @$(CXX) $(LDFLAGS) -o $@ ../abort.o $^ $(LIBS) @@ -59,7 +59,7 @@ endif # date and does not need to be regenerated ############################################################ -%.output : %.exe +%/output : %/exe @echo =====Running======= $< @ulimit -t 2400 ; ./$< ; \ if test ! $$? = 0 ; then rm $@ ; false ; fi @@ -84,13 +84,13 @@ endif ############################################################ -%.OK : %.output +%/OK : %/output @echo '=====Checking======' $< @perl -pi $(normalize) $< @if test "x$(verbose)" = "xon" ; then \ - cmd="diff -w $< ../compare/$(WORKDIR)/$<" ; \ + cmd="diff -w $< ../compare/$(WORKDIR)/$(<:%/output=%).output" ; \ else \ - cmd="diff -w $< ../compare/$(WORKDIR)/$< > /dev/null" ; \ + cmd="diff -w $< ../compare/$(WORKDIR)/$(<:%/output=%).output > /dev/null" ; \ fi ; \ if eval $$cmd ; then \ echo '=====OK============' $@ ; \ @@ -116,7 +116,7 @@ endif ############################################################ report: @for test in $(sort $(tests)) ; do \ - if (($(MAKE) $$test.OK stop_on_error=on 2>&1) > /dev/null); then \ + if (($(MAKE) $$test/OK stop_on_error=on 2>&1) > /dev/null); then \ echo `date -u +"%Y-%m-%d %H:%M"` + $(WORKDIR)/$$test ; \ else \ echo `date -u +"%Y-%m-%d %H:%M"` - $(WORKDIR)/$$test ; \ @@ -135,11 +135,11 @@ report+mail: # executed by make: for each entry in the list $(tests) # perform a check. ############################################################ -run-tests: $(tests:%=%.OK) +run-tests: $(tests:%=%/OK) -output: $(tests:%=%.output) +output: $(tests:%=%/output) -build: $(tests:%=%.exe) +build: $(tests:%=%/exe) ############################################################ # Link and copy files in ./results/* to generate checked @@ -158,11 +158,11 @@ new-platform: output run-tests ############################################################ clean: - -rm -f Makefile.depend Makefile.tests *.$(OBJEXT) \ - *.g.$(OBJEXT) *.output *~ + -rm -f Makefile.depend Makefile.tests */obj.$(OBJEXT) \ + */obj.g.$(OBJEXT) */output *~ distclean: clean - -rm -f *.exe *.testcase *.inp *.gpl *.eps *.gnuplot + -rm -f */exe *.testcase *.inp *.gpl *.eps *.gnuplot show-tests: @@ -175,13 +175,15 @@ show-tests: Makefile.depend: $(shell echo *.cc) @echo =====Dependencies== $@ @$D/common/scripts/make_dependencies $(INCLUDE) $^ > $@ + @$(PERL) -pi -e 's#\.((g\.)?$(OBJEXT):)#/obj.\1#g;' $@ -Makefile.tests: $(shell echo *.cc) Makefile +Makefile.tests: $(shell echo *.cc) @echo =====Targets======= $@ @for i in $(tests) ; do \ - echo "$$i.exe : $$i.g.\$$(OBJEXT) \$$(libraries)"; \ + echo "$$i/exe : $$i/obj.g.\$$(OBJEXT) \$$(libraries)"; \ done \ > $@ .PHONY: report show-tests clean distclean + diff --git a/tests/base/anisotropic_1.cc b/tests/base/anisotropic_1.cc index 96c5df497a..3a2050cc48 100644 --- a/tests/base/anisotropic_1.cc +++ b/tests/base/anisotropic_1.cc @@ -141,7 +141,7 @@ check_dimensions (const std::vector >& p) int main() { - std::ofstream logfile("anisotropic_1.output"); + std::ofstream logfile("anisotropic_1/output"); logfile.precision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/anisotropic_2.cc b/tests/base/anisotropic_2.cc index dad145c3fb..b326a52a69 100644 --- a/tests/base/anisotropic_2.cc +++ b/tests/base/anisotropic_2.cc @@ -148,7 +148,7 @@ void check () int main() { - std::ofstream logfile("anisotropic_2.output"); + std::ofstream logfile("anisotropic_2/output"); logfile.precision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/auto_derivative_function.cc b/tests/base/auto_derivative_function.cc index 4c86e4b655..2f9ad0f95c 100644 --- a/tests/base/auto_derivative_function.cc +++ b/tests/base/auto_derivative_function.cc @@ -117,7 +117,7 @@ void ExactSinExp::vector_gradient (const Point &p, int main() { - std::ofstream logfile("auto_derivative_function.output"); + std::ofstream logfile("auto_derivative_function/output"); logfile.precision(4); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/data_out_base.cc b/tests/base/data_out_base.cc index 4020dc73b5..ce813631ed 100644 --- a/tests/base/data_out_base.cc +++ b/tests/base/data_out_base.cc @@ -199,7 +199,7 @@ void test(std::ostream& out) int main() { - std::ofstream logfile("data_out_base.output"); + std::ofstream logfile("data_out_base/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/full_tensor_01.cc b/tests/base/full_tensor_01.cc index 3f7a6661a9..cca7d1b014 100644 --- a/tests/base/full_tensor_01.cc +++ b/tests/base/full_tensor_01.cc @@ -21,7 +21,7 @@ int main () { - std::ofstream logfile("full_tensor_01.output"); + std::ofstream logfile("full_tensor_01/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/full_tensor_02.cc b/tests/base/full_tensor_02.cc index 580761408f..1babfe412d 100644 --- a/tests/base/full_tensor_02.cc +++ b/tests/base/full_tensor_02.cc @@ -21,7 +21,7 @@ int main () { - std::ofstream logfile("full_tensor_02.output"); + std::ofstream logfile("full_tensor_02/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/full_tensor_03.cc b/tests/base/full_tensor_03.cc index c49cde07f1..b42ac8683f 100644 --- a/tests/base/full_tensor_03.cc +++ b/tests/base/full_tensor_03.cc @@ -21,7 +21,7 @@ int main () { - std::ofstream logfile("full_tensor_03.output"); + std::ofstream logfile("full_tensor_03/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/full_tensor_04.cc b/tests/base/full_tensor_04.cc index ca5c51edce..c094111768 100644 --- a/tests/base/full_tensor_04.cc +++ b/tests/base/full_tensor_04.cc @@ -21,7 +21,7 @@ int main () { - std::ofstream logfile("full_tensor_04.output"); + std::ofstream logfile("full_tensor_04/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/full_tensor_05.cc b/tests/base/full_tensor_05.cc index 70a2483100..04e485657e 100644 --- a/tests/base/full_tensor_05.cc +++ b/tests/base/full_tensor_05.cc @@ -75,7 +75,7 @@ void test () int main () { - std::ofstream logfile("full_tensor_05.output"); + std::ofstream logfile("full_tensor_05/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/full_tensor_06.cc b/tests/base/full_tensor_06.cc index d4d592caeb..d62f98bafe 100644 --- a/tests/base/full_tensor_06.cc +++ b/tests/base/full_tensor_06.cc @@ -80,7 +80,7 @@ void test () int main () { - std::ofstream logfile("full_tensor_06.output"); + std::ofstream logfile("full_tensor_06/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/full_tensor_08.cc b/tests/base/full_tensor_08.cc index e28e4b8d18..bb49cabd2f 100644 --- a/tests/base/full_tensor_08.cc +++ b/tests/base/full_tensor_08.cc @@ -60,7 +60,7 @@ void test () int main () { - std::ofstream logfile("full_tensor_08.output"); + std::ofstream logfile("full_tensor_08/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/full_tensor_09.cc b/tests/base/full_tensor_09.cc index 256f5c0b0b..b92b939d98 100644 --- a/tests/base/full_tensor_09.cc +++ b/tests/base/full_tensor_09.cc @@ -43,7 +43,7 @@ void test () int main () { - std::ofstream logfile("full_tensor_09.output"); + std::ofstream logfile("full_tensor_09/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/function_parser.cc b/tests/base/function_parser.cc index 9ef8bfaf9e..cae2454f7f 100644 --- a/tests/base/function_parser.cc +++ b/tests/base/function_parser.cc @@ -27,7 +27,7 @@ int main () { - std::ofstream logfile("function_parser.output"); + std::ofstream logfile("function_parser/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/hierarchical.cc b/tests/base/hierarchical.cc index e69c3786a1..b2c3fa6e23 100644 --- a/tests/base/hierarchical.cc +++ b/tests/base/hierarchical.cc @@ -28,7 +28,7 @@ using namespace Polynomials; int main () { - std::ofstream logfile("hierarchical.output"); + std::ofstream logfile("hierarchical/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/logtest.cc b/tests/base/logtest.cc index 6f0c1b5b97..1a5258cf27 100644 --- a/tests/base/logtest.cc +++ b/tests/base/logtest.cc @@ -24,7 +24,7 @@ int main() { - std::ofstream logfile("logtest.output"); + std::ofstream logfile("logtest/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/path_search.cc b/tests/base/path_search.cc index ab1de37088..95fde6fc1d 100644 --- a/tests/base/path_search.cc +++ b/tests/base/path_search.cc @@ -17,7 +17,7 @@ int main() { - std::ofstream logfile("path_search.output"); + std::ofstream logfile("path_search/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/polynomial1d.cc b/tests/base/polynomial1d.cc index 9f59c97783..ebea85c634 100644 --- a/tests/base/polynomial1d.cc +++ b/tests/base/polynomial1d.cc @@ -92,7 +92,7 @@ void polynomial_arithmetic () int main () { - std::ofstream logfile("polynomial1d.output"); + std::ofstream logfile("polynomial1d/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/polynomial_lagrange.cc b/tests/base/polynomial_lagrange.cc index 4349e29bca..b73eb20dd8 100644 --- a/tests/base/polynomial_lagrange.cc +++ b/tests/base/polynomial_lagrange.cc @@ -76,7 +76,7 @@ check_lge (unsigned int n) int main() { - std::ofstream logfile("polynomial_lagrange.output"); + std::ofstream logfile("polynomial_lagrange/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/polynomial_test.cc b/tests/base/polynomial_test.cc index ecdd9c2460..c7461b4137 100644 --- a/tests/base/polynomial_test.cc +++ b/tests/base/polynomial_test.cc @@ -140,7 +140,7 @@ check_dimensions (const std::vector >& p) int main() { - std::ofstream logfile("polynomial_test.output"); + std::ofstream logfile("polynomial_test/output"); logfile.precision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/polynomials_rt.cc b/tests/base/polynomials_rt.cc index cbecc50c38..dacc5e661d 100644 --- a/tests/base/polynomials_rt.cc +++ b/tests/base/polynomials_rt.cc @@ -51,7 +51,7 @@ void plot(const PolynomialsRaviartThomas& poly) int main() { - std::ofstream logfile("polynomials_rt.output"); + std::ofstream logfile("polynomials_rt/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/polynomials_tensor.cc b/tests/base/polynomials_tensor.cc index ff96b936df..94df8c7db5 100644 --- a/tests/base/polynomials_tensor.cc +++ b/tests/base/polynomials_tensor.cc @@ -90,7 +90,7 @@ void check_rt () int main() { - std::ofstream logfile("polynomials_tensor.output"); + std::ofstream logfile("polynomials_tensor/output"); logfile.precision(0); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/qprojector.cc b/tests/base/qprojector.cc index 06217b6c93..9f250cc119 100644 --- a/tests/base/qprojector.cc +++ b/tests/base/qprojector.cc @@ -53,7 +53,7 @@ void check_line(Quadrature<1>& quadrature) int main() { - std::ofstream logfile("qprojector.output"); + std::ofstream logfile("qprojector/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/quadrature_selector.cc b/tests/base/quadrature_selector.cc index 1dd0c733d8..acf83bc1c0 100644 --- a/tests/base/quadrature_selector.cc +++ b/tests/base/quadrature_selector.cc @@ -40,7 +40,7 @@ void check (const std::string &name, int main() { - std::ofstream logfile("quadrature_selector.output"); + std::ofstream logfile("quadrature_selector/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/quadrature_test.cc b/tests/base/quadrature_test.cc index a7a0802556..0768d11d1b 100644 --- a/tests/base/quadrature_test.cc +++ b/tests/base/quadrature_test.cc @@ -182,7 +182,7 @@ check_faces (const std::vector*>& quadratures, const bool sub) int main() { - std::ofstream logfile("quadrature_test.output"); + std::ofstream logfile("quadrature_test/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/reference.cc b/tests/base/reference.cc index d97d8a676a..7479193b4d 100644 --- a/tests/base/reference.cc +++ b/tests/base/reference.cc @@ -38,7 +38,7 @@ class Test : public Subscriptor int main() { - std::ofstream logfile("reference.output"); + std::ofstream logfile("reference/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/slice_vector.cc b/tests/base/slice_vector.cc index b6ca9fc426..4ffebc26a5 100644 --- a/tests/base/slice_vector.cc +++ b/tests/base/slice_vector.cc @@ -33,7 +33,7 @@ void f(const std::vector& v) int main() { - std::ofstream logfile("slice_vector.output"); + std::ofstream logfile("slice_vector/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/symmetric_tensor_01.cc b/tests/base/symmetric_tensor_01.cc index f331a2555e..41ead622dd 100644 --- a/tests/base/symmetric_tensor_01.cc +++ b/tests/base/symmetric_tensor_01.cc @@ -21,7 +21,7 @@ int main () { - std::ofstream logfile("symmetric_tensor_01.output"); + std::ofstream logfile("symmetric_tensor_01/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_02.cc b/tests/base/symmetric_tensor_02.cc index d9da421426..77eb97c84f 100644 --- a/tests/base/symmetric_tensor_02.cc +++ b/tests/base/symmetric_tensor_02.cc @@ -21,7 +21,7 @@ int main () { - std::ofstream logfile("symmetric_tensor_02.output"); + std::ofstream logfile("symmetric_tensor_02/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_03.cc b/tests/base/symmetric_tensor_03.cc index 63aa8a18d2..cda9a35bc6 100644 --- a/tests/base/symmetric_tensor_03.cc +++ b/tests/base/symmetric_tensor_03.cc @@ -20,7 +20,7 @@ int main () { - std::ofstream logfile("symmetric_tensor_03.output"); + std::ofstream logfile("symmetric_tensor_03/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_04.cc b/tests/base/symmetric_tensor_04.cc index c614765998..6c60270dc9 100644 --- a/tests/base/symmetric_tensor_04.cc +++ b/tests/base/symmetric_tensor_04.cc @@ -20,7 +20,7 @@ int main () { - std::ofstream logfile("symmetric_tensor_04.output"); + std::ofstream logfile("symmetric_tensor_04/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_05.cc b/tests/base/symmetric_tensor_05.cc index 4a8dfca2c0..9f29b77e6d 100644 --- a/tests/base/symmetric_tensor_05.cc +++ b/tests/base/symmetric_tensor_05.cc @@ -75,7 +75,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_05.output"); + std::ofstream logfile("symmetric_tensor_05/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_06.cc b/tests/base/symmetric_tensor_06.cc index da9d2b85a3..0950284085 100644 --- a/tests/base/symmetric_tensor_06.cc +++ b/tests/base/symmetric_tensor_06.cc @@ -80,7 +80,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_06.output"); + std::ofstream logfile("symmetric_tensor_06/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_07.cc b/tests/base/symmetric_tensor_07.cc index 0c7fcf6773..c91328a82e 100644 --- a/tests/base/symmetric_tensor_07.cc +++ b/tests/base/symmetric_tensor_07.cc @@ -80,7 +80,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_07.output"); + std::ofstream logfile("symmetric_tensor_07/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_08.cc b/tests/base/symmetric_tensor_08.cc index 541c45943c..04bc39ecaf 100644 --- a/tests/base/symmetric_tensor_08.cc +++ b/tests/base/symmetric_tensor_08.cc @@ -77,7 +77,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_08.output"); + std::ofstream logfile("symmetric_tensor_08/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_09.cc b/tests/base/symmetric_tensor_09.cc index 84b4a46430..6c35584906 100644 --- a/tests/base/symmetric_tensor_09.cc +++ b/tests/base/symmetric_tensor_09.cc @@ -40,7 +40,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_09.output"); + std::ofstream logfile("symmetric_tensor_09/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_10.cc b/tests/base/symmetric_tensor_10.cc index b78187fb82..58e0994616 100644 --- a/tests/base/symmetric_tensor_10.cc +++ b/tests/base/symmetric_tensor_10.cc @@ -52,7 +52,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_10.output"); + std::ofstream logfile("symmetric_tensor_10/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_11.cc b/tests/base/symmetric_tensor_11.cc index c04f9432f0..fe164895a2 100644 --- a/tests/base/symmetric_tensor_11.cc +++ b/tests/base/symmetric_tensor_11.cc @@ -54,7 +54,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_11.output"); + std::ofstream logfile("symmetric_tensor_11/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_12.cc b/tests/base/symmetric_tensor_12.cc index 6b97539b4f..6435e26d8d 100644 --- a/tests/base/symmetric_tensor_12.cc +++ b/tests/base/symmetric_tensor_12.cc @@ -39,7 +39,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_12.output"); + std::ofstream logfile("symmetric_tensor_12/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_13.cc b/tests/base/symmetric_tensor_13.cc index b5c0b8ffc3..9cf79fd422 100644 --- a/tests/base/symmetric_tensor_13.cc +++ b/tests/base/symmetric_tensor_13.cc @@ -39,7 +39,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_13.output"); + std::ofstream logfile("symmetric_tensor_13/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_14.cc b/tests/base/symmetric_tensor_14.cc index ab755561b8..5f8e255442 100644 --- a/tests/base/symmetric_tensor_14.cc +++ b/tests/base/symmetric_tensor_14.cc @@ -44,7 +44,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_14.output"); + std::ofstream logfile("symmetric_tensor_14/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_15.cc b/tests/base/symmetric_tensor_15.cc index 80104c3c0c..8da97163e9 100644 --- a/tests/base/symmetric_tensor_15.cc +++ b/tests/base/symmetric_tensor_15.cc @@ -72,7 +72,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_15.output"); + std::ofstream logfile("symmetric_tensor_15/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_16.cc b/tests/base/symmetric_tensor_16.cc index 2191d96f44..18f313ef45 100644 --- a/tests/base/symmetric_tensor_16.cc +++ b/tests/base/symmetric_tensor_16.cc @@ -39,7 +39,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_16.output"); + std::ofstream logfile("symmetric_tensor_16/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_17.cc b/tests/base/symmetric_tensor_17.cc index f68704f59a..68d7da6065 100644 --- a/tests/base/symmetric_tensor_17.cc +++ b/tests/base/symmetric_tensor_17.cc @@ -67,7 +67,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_17.output"); + std::ofstream logfile("symmetric_tensor_17/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_18.cc b/tests/base/symmetric_tensor_18.cc index 6f405e5cb8..cd4ce888b0 100644 --- a/tests/base/symmetric_tensor_18.cc +++ b/tests/base/symmetric_tensor_18.cc @@ -66,7 +66,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_18.output"); + std::ofstream logfile("symmetric_tensor_18/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/symmetric_tensor_19.cc b/tests/base/symmetric_tensor_19.cc index 76c295407e..14275c27dd 100644 --- a/tests/base/symmetric_tensor_19.cc +++ b/tests/base/symmetric_tensor_19.cc @@ -120,7 +120,7 @@ void test () int main () { - std::ofstream logfile("symmetric_tensor_19.output"); + std::ofstream logfile("symmetric_tensor_19/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/table.cc b/tests/base/table.cc index 021aa5c396..19eedfd955 100644 --- a/tests/base/table.cc +++ b/tests/base/table.cc @@ -34,7 +34,7 @@ const int entries[] = { 11,12,13,21, int main () { - std::ofstream logfile("table.output"); + std::ofstream logfile("table/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/base/tensor.cc b/tests/base/tensor.cc index 102c935d53..e4b5eb3f1b 100644 --- a/tests/base/tensor.cc +++ b/tests/base/tensor.cc @@ -20,7 +20,7 @@ int main () { - std::ofstream logfile("tensor.output"); + std::ofstream logfile("tensor/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/base/timer.cc b/tests/base/timer.cc index 77735f4a35..b06aa84846 100644 --- a/tests/base/timer.cc +++ b/tests/base/timer.cc @@ -53,7 +53,7 @@ void burn (unsigned int n) int main () { - std::ofstream logfile("timer.output"); + std::ofstream logfile("timer/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/base/utilities_01.cc b/tests/base/utilities_01.cc index a51dd23346..cd6556527f 100644 --- a/tests/base/utilities_01.cc +++ b/tests/base/utilities_01.cc @@ -72,7 +72,7 @@ void test () int main() { - std::ofstream logfile("utilities_01.output"); + std::ofstream logfile("utilities_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/accessor_equality.cc b/tests/bits/accessor_equality.cc index c35662f6de..4803730262 100644 --- a/tests/bits/accessor_equality.cc +++ b/tests/bits/accessor_equality.cc @@ -96,7 +96,7 @@ void test () int main () { - std::ofstream logfile("accessor_equality.output"); + std::ofstream logfile("accessor_equality/output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/anna_1.cc b/tests/bits/anna_1.cc index b16552e76b..de185fbf9f 100644 --- a/tests/bits/anna_1.cc +++ b/tests/bits/anna_1.cc @@ -153,7 +153,7 @@ void SystemTest::run () int main () { - std::ofstream logfile("anna_1.output"); + std::ofstream logfile("anna_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/anna_2.cc b/tests/bits/anna_2.cc index 7d6b5e6884..d5a3e05680 100644 --- a/tests/bits/anna_2.cc +++ b/tests/bits/anna_2.cc @@ -157,7 +157,7 @@ void SystemTest::run () int main () { - std::ofstream logfile("anna_2.output"); + std::ofstream logfile("anna_2/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/anna_3.cc b/tests/bits/anna_3.cc index 5eb3b4f5cd..0691d316c3 100644 --- a/tests/bits/anna_3.cc +++ b/tests/bits/anna_3.cc @@ -125,7 +125,7 @@ void SystemTest::run () int main () { - std::ofstream logfile("anna_3.output"); + std::ofstream logfile("anna_3/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/anna_4.cc b/tests/bits/anna_4.cc index d3c7550982..939b4da6a3 100644 --- a/tests/bits/anna_4.cc +++ b/tests/bits/anna_4.cc @@ -242,7 +242,7 @@ void FindBug::run () int main () { - std::ofstream logfile("anna_4.output"); + std::ofstream logfile("anna_4/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/anna_5.cc b/tests/bits/anna_5.cc index 946bf62626..a5b9550ca7 100644 --- a/tests/bits/anna_5.cc +++ b/tests/bits/anna_5.cc @@ -20,6 +20,6 @@ int main () { - std::ofstream o("anna_5.output"); + std::ofstream o("anna_5/output"); BlockSparsityPattern sparsity_pattern; } diff --git a/tests/bits/anna_6.cc b/tests/bits/anna_6.cc index 74f5441d24..dab968e179 100644 --- a/tests/bits/anna_6.cc +++ b/tests/bits/anna_6.cc @@ -285,7 +285,7 @@ int main () { try { - std::ofstream logfile("anna_6.output"); + std::ofstream logfile("anna_6/output"); logfile.precision (2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/apply_boundary_values_01.cc b/tests/bits/apply_boundary_values_01.cc index 04af7f4cff..370ec2a788 100644 --- a/tests/bits/apply_boundary_values_01.cc +++ b/tests/bits/apply_boundary_values_01.cc @@ -141,7 +141,7 @@ void test () int main () { - std::ofstream logfile("apply_boundary_values_01.output"); + std::ofstream logfile("apply_boundary_values_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/apply_boundary_values_02.cc b/tests/bits/apply_boundary_values_02.cc index 49d997e797..d1d0b36680 100644 --- a/tests/bits/apply_boundary_values_02.cc +++ b/tests/bits/apply_boundary_values_02.cc @@ -141,7 +141,7 @@ void test () int main () { - std::ofstream logfile("apply_boundary_values_02.output"); + std::ofstream logfile("apply_boundary_values_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_matrix_array_01.cc b/tests/bits/block_matrix_array_01.cc index 9b5cf3802a..9b33fba867 100644 --- a/tests/bits/block_matrix_array_01.cc +++ b/tests/bits/block_matrix_array_01.cc @@ -24,7 +24,7 @@ int main () { - std::ofstream logfile("block_matrix_array_01.output"); + std::ofstream logfile("block_matrix_array_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_sparse_matrix_1.cc b/tests/bits/block_sparse_matrix_1.cc index df54a9a07e..17bc67f376 100644 --- a/tests/bits/block_sparse_matrix_1.cc +++ b/tests/bits/block_sparse_matrix_1.cc @@ -51,7 +51,7 @@ int main() { - std::ofstream logfile("block_sparse_matrix_1.output"); + std::ofstream logfile("block_sparse_matrix_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_sparse_matrix_2.cc b/tests/bits/block_sparse_matrix_2.cc index 73cc7745f6..bd754588e0 100644 --- a/tests/bits/block_sparse_matrix_2.cc +++ b/tests/bits/block_sparse_matrix_2.cc @@ -31,7 +31,7 @@ int main() { - std::ofstream logfile("block_sparse_matrix_2.output"); + std::ofstream logfile("block_sparse_matrix_2/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_sparse_matrix_iterator_01.cc b/tests/bits/block_sparse_matrix_iterator_01.cc index e38bf43c95..bee92a3004 100644 --- a/tests/bits/block_sparse_matrix_iterator_01.cc +++ b/tests/bits/block_sparse_matrix_iterator_01.cc @@ -93,7 +93,7 @@ void test () int main () { - std::ofstream logfile("block_sparse_matrix_iterator_01.output"); + std::ofstream logfile("block_sparse_matrix_iterator_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_sparse_matrix_iterator_02.cc b/tests/bits/block_sparse_matrix_iterator_02.cc index 876f43548c..770088c293 100644 --- a/tests/bits/block_sparse_matrix_iterator_02.cc +++ b/tests/bits/block_sparse_matrix_iterator_02.cc @@ -88,7 +88,7 @@ void test () int main () { - std::ofstream logfile("block_sparse_matrix_iterator_02.output"); + std::ofstream logfile("block_sparse_matrix_iterator_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_sparse_matrix_iterator_03.cc b/tests/bits/block_sparse_matrix_iterator_03.cc index 4ee70f246b..7ef6a930bb 100644 --- a/tests/bits/block_sparse_matrix_iterator_03.cc +++ b/tests/bits/block_sparse_matrix_iterator_03.cc @@ -87,7 +87,7 @@ void test () int main () { - std::ofstream logfile("block_sparse_matrix_iterator_03.output"); + std::ofstream logfile("block_sparse_matrix_iterator_03/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_sparse_matrix_iterator_04.cc b/tests/bits/block_sparse_matrix_iterator_04.cc index b08f2562b5..da9e8084a6 100644 --- a/tests/bits/block_sparse_matrix_iterator_04.cc +++ b/tests/bits/block_sparse_matrix_iterator_04.cc @@ -52,7 +52,7 @@ void test () int main () { - std::ofstream logfile("block_sparse_matrix_iterator_04.output"); + std::ofstream logfile("block_sparse_matrix_iterator_04/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_sparse_matrix_iterator_05.cc b/tests/bits/block_sparse_matrix_iterator_05.cc index 9b89889925..527f5924df 100644 --- a/tests/bits/block_sparse_matrix_iterator_05.cc +++ b/tests/bits/block_sparse_matrix_iterator_05.cc @@ -70,7 +70,7 @@ void test () int main () { - std::ofstream logfile("block_sparse_matrix_iterator_05.output"); + std::ofstream logfile("block_sparse_matrix_iterator_05/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_vector_iterator_01.cc b/tests/bits/block_vector_iterator_01.cc index 9856c3e343..b3d28190bc 100644 --- a/tests/bits/block_vector_iterator_01.cc +++ b/tests/bits/block_vector_iterator_01.cc @@ -77,7 +77,7 @@ void test () int main () { - std::ofstream logfile("block_vector_iterator_01.output"); + std::ofstream logfile("block_vector_iterator_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_vector_iterator_02.cc b/tests/bits/block_vector_iterator_02.cc index f87794d68c..d14f18b1f8 100644 --- a/tests/bits/block_vector_iterator_02.cc +++ b/tests/bits/block_vector_iterator_02.cc @@ -71,7 +71,7 @@ void test () int main () { - std::ofstream logfile("block_vector_iterator_02.output"); + std::ofstream logfile("block_vector_iterator_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/block_vector_vector_01.cc b/tests/bits/block_vector_vector_01.cc index bbab2370c2..ad489bc168 100644 --- a/tests/bits/block_vector_vector_01.cc +++ b/tests/bits/block_vector_vector_01.cc @@ -39,7 +39,7 @@ void test (Vector &v) int main () { - std::ofstream logfile("block_vector_vector_01.output"); + std::ofstream logfile("block_vector_vector_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/christian_1.cc b/tests/bits/christian_1.cc index 2b46ced9e2..d686d20663 100644 --- a/tests/bits/christian_1.cc +++ b/tests/bits/christian_1.cc @@ -95,7 +95,7 @@ class TestFunction : public Function<2> int main() { - std::ofstream logfile("christian_1.output"); + std::ofstream logfile("christian_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/christian_2.cc b/tests/bits/christian_2.cc index 7b0c292deb..821cfb144e 100644 --- a/tests/bits/christian_2.cc +++ b/tests/bits/christian_2.cc @@ -25,7 +25,7 @@ int main() { - std::ofstream logfile("christian_2.output"); + std::ofstream logfile("christian_2/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/coarsening_3d.cc b/tests/bits/coarsening_3d.cc index 843cfd13a7..eef0cb98a5 100644 --- a/tests/bits/coarsening_3d.cc +++ b/tests/bits/coarsening_3d.cc @@ -30,7 +30,7 @@ int main () { - std::ofstream logfile("coarsening_3d.output"); + std::ofstream logfile("coarsening_3d/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_01.cc b/tests/bits/compressed_sparsity_pattern_01.cc index 364411a832..7baff7214a 100644 --- a/tests/bits/compressed_sparsity_pattern_01.cc +++ b/tests/bits/compressed_sparsity_pattern_01.cc @@ -43,7 +43,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_01.output"); + std::ofstream logfile("compressed_sparsity_pattern_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_02.cc b/tests/bits/compressed_sparsity_pattern_02.cc index 2bd0f05a16..3ff5352aca 100644 --- a/tests/bits/compressed_sparsity_pattern_02.cc +++ b/tests/bits/compressed_sparsity_pattern_02.cc @@ -40,7 +40,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_02.output"); + std::ofstream logfile("compressed_sparsity_pattern_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_03.cc b/tests/bits/compressed_sparsity_pattern_03.cc index 31731bfccf..3ceb660979 100644 --- a/tests/bits/compressed_sparsity_pattern_03.cc +++ b/tests/bits/compressed_sparsity_pattern_03.cc @@ -52,7 +52,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_03.output"); + std::ofstream logfile("compressed_sparsity_pattern_03/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_04.cc b/tests/bits/compressed_sparsity_pattern_04.cc index 9b2378ecf1..223883a4a6 100644 --- a/tests/bits/compressed_sparsity_pattern_04.cc +++ b/tests/bits/compressed_sparsity_pattern_04.cc @@ -41,7 +41,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_04.output"); + std::ofstream logfile("compressed_sparsity_pattern_04/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_05.cc b/tests/bits/compressed_sparsity_pattern_05.cc index 43530a70a4..d913e00664 100644 --- a/tests/bits/compressed_sparsity_pattern_05.cc +++ b/tests/bits/compressed_sparsity_pattern_05.cc @@ -42,7 +42,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_05.output"); + std::ofstream logfile("compressed_sparsity_pattern_05/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_06.cc b/tests/bits/compressed_sparsity_pattern_06.cc index 7984ec9b01..0e4452d810 100644 --- a/tests/bits/compressed_sparsity_pattern_06.cc +++ b/tests/bits/compressed_sparsity_pattern_06.cc @@ -23,7 +23,7 @@ #include -std::ofstream logfile("compressed_sparsity_pattern_06.output"); +std::ofstream logfile("compressed_sparsity_pattern_06/output"); void test () { diff --git a/tests/bits/compressed_sparsity_pattern_07.cc b/tests/bits/compressed_sparsity_pattern_07.cc index c9ea09a677..8fc57628df 100644 --- a/tests/bits/compressed_sparsity_pattern_07.cc +++ b/tests/bits/compressed_sparsity_pattern_07.cc @@ -45,7 +45,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_07.output"); + std::ofstream logfile("compressed_sparsity_pattern_07/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_08.cc b/tests/bits/compressed_sparsity_pattern_08.cc index e353223a62..1e0e0cab90 100644 --- a/tests/bits/compressed_sparsity_pattern_08.cc +++ b/tests/bits/compressed_sparsity_pattern_08.cc @@ -40,7 +40,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_08.output"); + std::ofstream logfile("compressed_sparsity_pattern_08/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/compressed_sparsity_pattern_09.cc b/tests/bits/compressed_sparsity_pattern_09.cc index c182fcd5fc..1132bc2f27 100644 --- a/tests/bits/compressed_sparsity_pattern_09.cc +++ b/tests/bits/compressed_sparsity_pattern_09.cc @@ -37,7 +37,7 @@ void test () int main () { - std::ofstream logfile("compressed_sparsity_pattern_09.output"); + std::ofstream logfile("compressed_sparsity_pattern_09/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/cylinder.cc b/tests/bits/cylinder.cc index f7961247c7..94b8a95446 100644 --- a/tests/bits/cylinder.cc +++ b/tests/bits/cylinder.cc @@ -29,7 +29,7 @@ int main () { - std::ofstream logfile("cylinder.output"); + std::ofstream logfile("cylinder/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/cylinder_shell_01.cc b/tests/bits/cylinder_shell_01.cc index da724044ec..9d3ffa6d63 100644 --- a/tests/bits/cylinder_shell_01.cc +++ b/tests/bits/cylinder_shell_01.cc @@ -27,7 +27,7 @@ int main () { - std::ofstream logfile("cylinder_shell_01.output"); + std::ofstream logfile("cylinder_shell_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/cylinder_shell_02.cc b/tests/bits/cylinder_shell_02.cc index 8a7261602e..67c9fdabd4 100644 --- a/tests/bits/cylinder_shell_02.cc +++ b/tests/bits/cylinder_shell_02.cc @@ -33,7 +33,7 @@ int main () { - std::ofstream logfile("cylinder_shell_02.output"); + std::ofstream logfile("cylinder_shell_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/data_out_01.cc b/tests/bits/data_out_01.cc index 604fc36adb..178d011caf 100644 --- a/tests/bits/data_out_01.cc +++ b/tests/bits/data_out_01.cc @@ -17,7 +17,7 @@ #include -std::string output_file_name = "data_out_01.output"; +std::string output_file_name = "data_out_01/output"; template diff --git a/tests/bits/data_out_02.cc b/tests/bits/data_out_02.cc index 43245db206..e9d43590cb 100644 --- a/tests/bits/data_out_02.cc +++ b/tests/bits/data_out_02.cc @@ -20,7 +20,7 @@ #include -std::string output_file_name = "data_out_02.output"; +std::string output_file_name = "data_out_02/output"; template diff --git a/tests/bits/data_out_03.cc b/tests/bits/data_out_03.cc index d46c5c8103..3cd1d92f49 100644 --- a/tests/bits/data_out_03.cc +++ b/tests/bits/data_out_03.cc @@ -21,7 +21,7 @@ #include -std::string output_file_name = "data_out_03.output"; +std::string output_file_name = "data_out_03/output"; // have a class that makes sure we can get at the patches and data set diff --git a/tests/bits/data_out_faces_01.cc b/tests/bits/data_out_faces_01.cc index 450db680dd..fdb3b4b611 100644 --- a/tests/bits/data_out_faces_01.cc +++ b/tests/bits/data_out_faces_01.cc @@ -17,7 +17,7 @@ #include -std::string output_file_name = "data_out_faces_01.output"; +std::string output_file_name = "data_out_faces_01/output"; diff --git a/tests/bits/data_out_faces_02.cc b/tests/bits/data_out_faces_02.cc index 2668e8b6f0..22f5b3137f 100644 --- a/tests/bits/data_out_faces_02.cc +++ b/tests/bits/data_out_faces_02.cc @@ -19,7 +19,7 @@ #include -std::string output_file_name = "data_out_faces_02.output"; +std::string output_file_name = "data_out_faces_02/output"; diff --git a/tests/bits/data_out_faces_03.cc b/tests/bits/data_out_faces_03.cc index ab6480c47c..276e26ce53 100644 --- a/tests/bits/data_out_faces_03.cc +++ b/tests/bits/data_out_faces_03.cc @@ -21,7 +21,7 @@ #include -std::string output_file_name = "data_out_faces_03.output"; +std::string output_file_name = "data_out_faces_03/output"; // have a class that makes sure we can get at the patches and data set diff --git a/tests/bits/data_out_rotation_01.cc b/tests/bits/data_out_rotation_01.cc index fb4a813afb..f13f55bcf5 100644 --- a/tests/bits/data_out_rotation_01.cc +++ b/tests/bits/data_out_rotation_01.cc @@ -17,7 +17,7 @@ #include -std::string output_file_name = "data_out_rotation_01.output"; +std::string output_file_name = "data_out_rotation_01/output"; diff --git a/tests/bits/data_out_rotation_02.cc b/tests/bits/data_out_rotation_02.cc index 14a86f25b2..50a07c906f 100644 --- a/tests/bits/data_out_rotation_02.cc +++ b/tests/bits/data_out_rotation_02.cc @@ -20,7 +20,7 @@ #include -std::string output_file_name = "data_out_rotation_02.output"; +std::string output_file_name = "data_out_rotation_02/output"; diff --git a/tests/bits/data_out_rotation_03.cc b/tests/bits/data_out_rotation_03.cc index 5b97b3c2fe..75a7830c67 100644 --- a/tests/bits/data_out_rotation_03.cc +++ b/tests/bits/data_out_rotation_03.cc @@ -21,7 +21,7 @@ #include -std::string output_file_name = "data_out_rotation_03.output"; +std::string output_file_name = "data_out_rotation_03/output"; // have a class that makes sure we can get at the patches and data set diff --git a/tests/bits/data_out_stack_01.cc b/tests/bits/data_out_stack_01.cc index 09c24769da..5f3a0350f7 100644 --- a/tests/bits/data_out_stack_01.cc +++ b/tests/bits/data_out_stack_01.cc @@ -17,7 +17,7 @@ #include -std::string output_file_name = "data_out_stack_01.output"; +std::string output_file_name = "data_out_stack_01/output"; template diff --git a/tests/bits/data_out_stack_02.cc b/tests/bits/data_out_stack_02.cc index cfeebdb90d..fb7a1bec15 100644 --- a/tests/bits/data_out_stack_02.cc +++ b/tests/bits/data_out_stack_02.cc @@ -21,7 +21,7 @@ #include -std::string output_file_name = "data_out_stack_02.output"; +std::string output_file_name = "data_out_stack_02/output"; template diff --git a/tests/bits/deal_solver_04.cc b/tests/bits/deal_solver_04.cc index 40ef92c637..d736e58414 100644 --- a/tests/bits/deal_solver_04.cc +++ b/tests/bits/deal_solver_04.cc @@ -61,7 +61,7 @@ check_solve( SOLVER& solver, const MATRIX& A, int main() { - std::ofstream logfile("deal_solver_04.output"); + std::ofstream logfile("deal_solver_04/output"); logfile.precision(4); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/deal_solver_05.cc b/tests/bits/deal_solver_05.cc index 061733b5c9..b07413a3c1 100644 --- a/tests/bits/deal_solver_05.cc +++ b/tests/bits/deal_solver_05.cc @@ -60,7 +60,7 @@ check_solve( SOLVER& solver, const MATRIX& A, int main() { - std::ofstream logfile("deal_solver_05.output"); + std::ofstream logfile("deal_solver_05/output"); logfile.precision(4); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/denis_1.cc b/tests/bits/denis_1.cc index c0cebc113b..d299416e39 100644 --- a/tests/bits/denis_1.cc +++ b/tests/bits/denis_1.cc @@ -55,7 +55,7 @@ class F : public Function<2> int main() { - std::ofstream logfile("denis_1.output"); + std::ofstream logfile("denis_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_01.cc b/tests/bits/dof_constraints_01.cc index 3ba24d98c2..905a24b017 100644 --- a/tests/bits/dof_constraints_01.cc +++ b/tests/bits/dof_constraints_01.cc @@ -126,7 +126,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_01.output"); + std::ofstream logfile("dof_constraints_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_02.cc b/tests/bits/dof_constraints_02.cc index b70f9168ff..cba4ce8d99 100644 --- a/tests/bits/dof_constraints_02.cc +++ b/tests/bits/dof_constraints_02.cc @@ -117,7 +117,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_02.output"); + std::ofstream logfile("dof_constraints_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_03.cc b/tests/bits/dof_constraints_03.cc index 76cbdebf69..4d6acae6cb 100644 --- a/tests/bits/dof_constraints_03.cc +++ b/tests/bits/dof_constraints_03.cc @@ -104,7 +104,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_03.output"); + std::ofstream logfile("dof_constraints_03/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_04.cc b/tests/bits/dof_constraints_04.cc index 0e554c4f48..164787b78d 100644 --- a/tests/bits/dof_constraints_04.cc +++ b/tests/bits/dof_constraints_04.cc @@ -82,7 +82,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_04.output"); + std::ofstream logfile("dof_constraints_04/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_05.cc b/tests/bits/dof_constraints_05.cc index 1c6aaa0a62..1172492610 100644 --- a/tests/bits/dof_constraints_05.cc +++ b/tests/bits/dof_constraints_05.cc @@ -86,7 +86,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_05.output"); + std::ofstream logfile("dof_constraints_05/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_06.cc b/tests/bits/dof_constraints_06.cc index 17d9bb0c02..ec4743b658 100644 --- a/tests/bits/dof_constraints_06.cc +++ b/tests/bits/dof_constraints_06.cc @@ -76,7 +76,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_06.output"); + std::ofstream logfile("dof_constraints_06/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_07.cc b/tests/bits/dof_constraints_07.cc index 8fe81e51f9..9b71a3a11e 100644 --- a/tests/bits/dof_constraints_07.cc +++ b/tests/bits/dof_constraints_07.cc @@ -90,7 +90,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_07.output"); + std::ofstream logfile("dof_constraints_07/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_08.cc b/tests/bits/dof_constraints_08.cc index 59bfb50064..9a45f95bd5 100644 --- a/tests/bits/dof_constraints_08.cc +++ b/tests/bits/dof_constraints_08.cc @@ -86,7 +86,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_08.output"); + std::ofstream logfile("dof_constraints_08/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_09.cc b/tests/bits/dof_constraints_09.cc index d1b3a21a56..7b25cbd9da 100644 --- a/tests/bits/dof_constraints_09.cc +++ b/tests/bits/dof_constraints_09.cc @@ -113,7 +113,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_09.output"); + std::ofstream logfile("dof_constraints_09/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_10.cc b/tests/bits/dof_constraints_10.cc index 01fc0d7e57..56470c017b 100644 --- a/tests/bits/dof_constraints_10.cc +++ b/tests/bits/dof_constraints_10.cc @@ -79,7 +79,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_10.output"); + std::ofstream logfile("dof_constraints_10/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_constraints_11.cc b/tests/bits/dof_constraints_11.cc index e1bef944a9..9ea765db3e 100644 --- a/tests/bits/dof_constraints_11.cc +++ b/tests/bits/dof_constraints_11.cc @@ -91,7 +91,7 @@ void test () int main () { - std::ofstream logfile("dof_constraints_11.output"); + std::ofstream logfile("dof_constraints_11/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/dof_tools_00a.cc b/tests/bits/dof_tools_00a.cc index f661e89ebc..fd748c5909 100644 --- a/tests/bits/dof_tools_00a.cc +++ b/tests/bits/dof_tools_00a.cc @@ -19,7 +19,7 @@ // DoFTools:: // count_dofs_per_component (...); -std::string output_file_name = "dof_tools_00a.output"; +std::string output_file_name = "dof_tools_00a/output"; template diff --git a/tests/bits/dof_tools_01a.cc b/tests/bits/dof_tools_01a.cc index aefccf7172..3536a1bfbf 100644 --- a/tests/bits/dof_tools_01a.cc +++ b/tests/bits/dof_tools_01a.cc @@ -26,7 +26,7 @@ // const Coupling) -std::string output_file_name = "dof_tools_01a.output"; +std::string output_file_name = "dof_tools_01a/output"; template diff --git a/tests/bits/dof_tools_01b.cc b/tests/bits/dof_tools_01b.cc index 99208dfe17..7221ff2528 100644 --- a/tests/bits/dof_tools_01b.cc +++ b/tests/bits/dof_tools_01b.cc @@ -20,7 +20,7 @@ // make_sparsity_pattern (const DoFHandler &, // CompressedSparsityPattern &); -std::string output_file_name = "dof_tools_01b.output"; +std::string output_file_name = "dof_tools_01b/output"; template diff --git a/tests/bits/dof_tools_01c.cc b/tests/bits/dof_tools_01c.cc index 0de48f170c..7a402f7ccd 100644 --- a/tests/bits/dof_tools_01c.cc +++ b/tests/bits/dof_tools_01c.cc @@ -20,7 +20,7 @@ // make_sparsity_pattern (const DoFHandler &, // BlockSparsityPattern &); -std::string output_file_name = "dof_tools_01c.output"; +std::string output_file_name = "dof_tools_01c/output"; template diff --git a/tests/bits/dof_tools_01d.cc b/tests/bits/dof_tools_01d.cc index a3684e7538..e32133a4f4 100644 --- a/tests/bits/dof_tools_01d.cc +++ b/tests/bits/dof_tools_01d.cc @@ -20,7 +20,7 @@ // make_sparsity_pattern (const DoFHandler &, // CompressedBlockSparsityPattern &); -std::string output_file_name = "dof_tools_01d.output"; +std::string output_file_name = "dof_tools_01d/output"; template diff --git a/tests/bits/dof_tools_02a.cc b/tests/bits/dof_tools_02a.cc index 56e17c9d0b..91ccbd80e4 100644 --- a/tests/bits/dof_tools_02a.cc +++ b/tests/bits/dof_tools_02a.cc @@ -22,7 +22,7 @@ // SparsityPattern &); -std::string output_file_name = "dof_tools_02a.output"; +std::string output_file_name = "dof_tools_02a/output"; template diff --git a/tests/bits/dof_tools_02b.cc b/tests/bits/dof_tools_02b.cc index 273face343..1d2e6256e5 100644 --- a/tests/bits/dof_tools_02b.cc +++ b/tests/bits/dof_tools_02b.cc @@ -21,7 +21,7 @@ // std::vector > &, // CompressedSparsityPattern &); -std::string output_file_name = "dof_tools_02b.output"; +std::string output_file_name = "dof_tools_02b/output"; template diff --git a/tests/bits/dof_tools_02c.cc b/tests/bits/dof_tools_02c.cc index 0653899495..d1ade8aba7 100644 --- a/tests/bits/dof_tools_02c.cc +++ b/tests/bits/dof_tools_02c.cc @@ -21,7 +21,7 @@ // std::vector > &, // BlockSparsityPattern &); -std::string output_file_name = "dof_tools_02c.output"; +std::string output_file_name = "dof_tools_02c/output"; template diff --git a/tests/bits/dof_tools_02d.cc b/tests/bits/dof_tools_02d.cc index 80bc8fb089..461881f0f2 100644 --- a/tests/bits/dof_tools_02d.cc +++ b/tests/bits/dof_tools_02d.cc @@ -21,7 +21,7 @@ // std::vector > &, // CompressedBlockSparsityPattern &); -std::string output_file_name = "dof_tools_02d.output"; +std::string output_file_name = "dof_tools_02d/output"; template diff --git a/tests/bits/dof_tools_03.cc b/tests/bits/dof_tools_03.cc index aeb2359fa5..0a27f077e8 100644 --- a/tests/bits/dof_tools_03.cc +++ b/tests/bits/dof_tools_03.cc @@ -21,7 +21,7 @@ // ConstraintMatrix &); -std::string output_file_name = "dof_tools_03.output"; +std::string output_file_name = "dof_tools_03/output"; template diff --git a/tests/bits/dof_tools_04.cc b/tests/bits/dof_tools_04.cc index e58973328c..eb31ed83f0 100644 --- a/tests/bits/dof_tools_04.cc +++ b/tests/bits/dof_tools_04.cc @@ -18,7 +18,7 @@ // DoFTools::extract_hanging_node_constraints -std::string output_file_name = "dof_tools_04.output"; +std::string output_file_name = "dof_tools_04/output"; template diff --git a/tests/bits/dof_tools_05.cc b/tests/bits/dof_tools_05.cc index 007f55f4d8..fac861f068 100644 --- a/tests/bits/dof_tools_05.cc +++ b/tests/bits/dof_tools_05.cc @@ -18,7 +18,7 @@ // DoFTools::extract_boundary_dofs -std::string output_file_name = "dof_tools_05.output"; +std::string output_file_name = "dof_tools_05/output"; template diff --git a/tests/bits/dof_tools_06.cc b/tests/bits/dof_tools_06.cc index 4a431dc701..38d820304a 100644 --- a/tests/bits/dof_tools_06.cc +++ b/tests/bits/dof_tools_06.cc @@ -18,7 +18,7 @@ // DoFTools::extract_subdomain_dofs -std::string output_file_name = "dof_tools_06.output"; +std::string output_file_name = "dof_tools_06/output"; template diff --git a/tests/bits/dof_tools_07.cc b/tests/bits/dof_tools_07.cc index 50cb4b0db4..8fb3fe421d 100644 --- a/tests/bits/dof_tools_07.cc +++ b/tests/bits/dof_tools_07.cc @@ -18,7 +18,7 @@ // DoFTools::count_dofs_per_component -std::string output_file_name = "dof_tools_07.output"; +std::string output_file_name = "dof_tools_07/output"; template diff --git a/tests/bits/dof_tools_08.cc b/tests/bits/dof_tools_08.cc index 622d63571e..1259dd42a6 100644 --- a/tests/bits/dof_tools_08.cc +++ b/tests/bits/dof_tools_08.cc @@ -19,7 +19,7 @@ // std::vector &) -std::string output_file_name = "dof_tools_08.output"; +std::string output_file_name = "dof_tools_08/output"; template diff --git a/tests/bits/dof_tools_09.cc b/tests/bits/dof_tools_09.cc index 8c0cb4a6ca..53719f470f 100644 --- a/tests/bits/dof_tools_09.cc +++ b/tests/bits/dof_tools_09.cc @@ -20,7 +20,7 @@ // std::vector &) -std::string output_file_name = "dof_tools_09.output"; +std::string output_file_name = "dof_tools_09/output"; template diff --git a/tests/bits/dof_tools_10.cc b/tests/bits/dof_tools_10.cc index 38f35d8760..2180d659c9 100644 --- a/tests/bits/dof_tools_10.cc +++ b/tests/bits/dof_tools_10.cc @@ -21,7 +21,7 @@ // std::vector > &) -std::string output_file_name = "dof_tools_10.output"; +std::string output_file_name = "dof_tools_10/output"; template diff --git a/tests/bits/dof_tools_11.cc b/tests/bits/dof_tools_11.cc index ae2f21d364..7fbd37c770 100644 --- a/tests/bits/dof_tools_11.cc +++ b/tests/bits/dof_tools_11.cc @@ -21,7 +21,7 @@ // std::map, unsigned int, Comp> &) -std::string output_file_name = "dof_tools_11.output"; +std::string output_file_name = "dof_tools_11/output"; struct Comp { diff --git a/tests/bits/dof_tools_12.cc b/tests/bits/dof_tools_12.cc index cbf3c98052..90f5b7f9c6 100644 --- a/tests/bits/dof_tools_12.cc +++ b/tests/bits/dof_tools_12.cc @@ -18,7 +18,7 @@ // DoFTools::extract_dofs -std::string output_file_name = "dof_tools_12.output"; +std::string output_file_name = "dof_tools_12/output"; template diff --git a/tests/bits/dof_tools_13.cc b/tests/bits/dof_tools_13.cc index 621d6953fe..9a71a0a1e4 100644 --- a/tests/bits/dof_tools_13.cc +++ b/tests/bits/dof_tools_13.cc @@ -20,7 +20,7 @@ -std::string output_file_name = "dof_tools_13.output"; +std::string output_file_name = "dof_tools_13/output"; template diff --git a/tests/bits/dof_tools_14.cc b/tests/bits/dof_tools_14.cc index 1795b9b7d8..4a19f07b18 100644 --- a/tests/bits/dof_tools_14.cc +++ b/tests/bits/dof_tools_14.cc @@ -20,7 +20,7 @@ -std::string output_file_name = "dof_tools_14.output"; +std::string output_file_name = "dof_tools_14/output"; template diff --git a/tests/bits/dof_tools_15a.cc b/tests/bits/dof_tools_15a.cc index 573bb60873..be950096da 100644 --- a/tests/bits/dof_tools_15a.cc +++ b/tests/bits/dof_tools_15a.cc @@ -22,7 +22,7 @@ // SparsityPattern &); -std::string output_file_name = "dof_tools_15a.output"; +std::string output_file_name = "dof_tools_15a/output"; template diff --git a/tests/bits/dof_tools_15b.cc b/tests/bits/dof_tools_15b.cc index 79a6b34bb7..e21d0d3637 100644 --- a/tests/bits/dof_tools_15b.cc +++ b/tests/bits/dof_tools_15b.cc @@ -21,7 +21,7 @@ // const std::vector & // CompressedSparsityPattern &); -std::string output_file_name = "dof_tools_15b.output"; +std::string output_file_name = "dof_tools_15b/output"; template diff --git a/tests/bits/dof_tools_15c.cc b/tests/bits/dof_tools_15c.cc index 0bfdecf76e..083c0f0df4 100644 --- a/tests/bits/dof_tools_15c.cc +++ b/tests/bits/dof_tools_15c.cc @@ -21,7 +21,7 @@ // const std::vector & // BlockSparsityPattern &); -std::string output_file_name = "dof_tools_15c.output"; +std::string output_file_name = "dof_tools_15c/output"; template diff --git a/tests/bits/dof_tools_15d.cc b/tests/bits/dof_tools_15d.cc index 889499a842..5b50ce9962 100644 --- a/tests/bits/dof_tools_15d.cc +++ b/tests/bits/dof_tools_15d.cc @@ -21,7 +21,7 @@ // const std::vector & // CompressedBlockSparsityPattern &); -std::string output_file_name = "dof_tools_15d.output"; +std::string output_file_name = "dof_tools_15d/output"; template diff --git a/tests/bits/dof_tools_16a.cc b/tests/bits/dof_tools_16a.cc index 4ba14f9708..a5806df633 100644 --- a/tests/bits/dof_tools_16a.cc +++ b/tests/bits/dof_tools_16a.cc @@ -23,7 +23,7 @@ // SparsityPattern &); -std::string output_file_name = "dof_tools_16a.output"; +std::string output_file_name = "dof_tools_16a/output"; template diff --git a/tests/bits/dof_tools_16b.cc b/tests/bits/dof_tools_16b.cc index d92da08e4f..20565b23de 100644 --- a/tests/bits/dof_tools_16b.cc +++ b/tests/bits/dof_tools_16b.cc @@ -22,7 +22,7 @@ // const std::vector & // CompressedSparsityPattern &); -std::string output_file_name = "dof_tools_16b.output"; +std::string output_file_name = "dof_tools_16b/output"; template diff --git a/tests/bits/dof_tools_16c.cc b/tests/bits/dof_tools_16c.cc index a8edd9a00d..2f80a79e1e 100644 --- a/tests/bits/dof_tools_16c.cc +++ b/tests/bits/dof_tools_16c.cc @@ -22,7 +22,7 @@ // const std::vector & // BlockSparsityPattern &); -std::string output_file_name = "dof_tools_16c.output"; +std::string output_file_name = "dof_tools_16c/output"; template diff --git a/tests/bits/dof_tools_16d.cc b/tests/bits/dof_tools_16d.cc index 63086999d4..66cddda5fb 100644 --- a/tests/bits/dof_tools_16d.cc +++ b/tests/bits/dof_tools_16d.cc @@ -22,7 +22,7 @@ // const std::vector & // CompressedBlockSparsityPattern &); -std::string output_file_name = "dof_tools_16d.output"; +std::string output_file_name = "dof_tools_16d/output"; template diff --git a/tests/bits/dof_tools_17a.cc b/tests/bits/dof_tools_17a.cc index c29891aeb2..eb4751a91d 100644 --- a/tests/bits/dof_tools_17a.cc +++ b/tests/bits/dof_tools_17a.cc @@ -21,7 +21,7 @@ // SparsityPattern &); -std::string output_file_name = "dof_tools_17a.output"; +std::string output_file_name = "dof_tools_17a/output"; template diff --git a/tests/bits/dof_tools_17b.cc b/tests/bits/dof_tools_17b.cc index 757d1e4964..16f8079254 100644 --- a/tests/bits/dof_tools_17b.cc +++ b/tests/bits/dof_tools_17b.cc @@ -20,7 +20,7 @@ // make_flux_sparsity_pattern (const DoFHandler &, // CompressedSparsityPattern &); -std::string output_file_name = "dof_tools_17b.output"; +std::string output_file_name = "dof_tools_17b/output"; template diff --git a/tests/bits/dof_tools_17c.cc b/tests/bits/dof_tools_17c.cc index f4277200e9..ee04cf45c4 100644 --- a/tests/bits/dof_tools_17c.cc +++ b/tests/bits/dof_tools_17c.cc @@ -20,7 +20,7 @@ // make_flux_sparsity_pattern (const DoFHandler &, // BlockSparsityPattern &); -std::string output_file_name = "dof_tools_17c.output"; +std::string output_file_name = "dof_tools_17c/output"; template diff --git a/tests/bits/dof_tools_17d.cc b/tests/bits/dof_tools_17d.cc index 930a19804c..4413d31fd5 100644 --- a/tests/bits/dof_tools_17d.cc +++ b/tests/bits/dof_tools_17d.cc @@ -20,7 +20,7 @@ // make_flux_sparsity_pattern (const DoFHandler &, // CompressedBlockSparsityPattern &); -std::string output_file_name = "dof_tools_17d.output"; +std::string output_file_name = "dof_tools_17d/output"; template diff --git a/tests/bits/dof_tools_18a.cc b/tests/bits/dof_tools_18a.cc index d3cd963dc7..143c8de56f 100644 --- a/tests/bits/dof_tools_18a.cc +++ b/tests/bits/dof_tools_18a.cc @@ -21,7 +21,7 @@ // SparsityPattern &); -std::string output_file_name = "dof_tools_18a.output"; +std::string output_file_name = "dof_tools_18a/output"; // set up masks. choose X-shaped // masks with full first row and diff --git a/tests/bits/dof_tools_18b.cc b/tests/bits/dof_tools_18b.cc index 6c30eb26fa..327fee7334 100644 --- a/tests/bits/dof_tools_18b.cc +++ b/tests/bits/dof_tools_18b.cc @@ -20,7 +20,7 @@ // make_flux_sparsity_pattern (const DoFHandler &, // CompressedSparsityPattern &); -std::string output_file_name = "dof_tools_18b.output"; +std::string output_file_name = "dof_tools_18b/output"; // set up masks. choose X-shaped // masks with full first row and diff --git a/tests/bits/dof_tools_18c.cc b/tests/bits/dof_tools_18c.cc index 3686a17ea9..23d1958420 100644 --- a/tests/bits/dof_tools_18c.cc +++ b/tests/bits/dof_tools_18c.cc @@ -20,7 +20,7 @@ // make_flux_sparsity_pattern (const DoFHandler &, // BlockSparsityPattern &); -std::string output_file_name = "dof_tools_18c.output"; +std::string output_file_name = "dof_tools_18c/output"; // set up masks. choose X-shaped // masks with full first row and diff --git a/tests/bits/dof_tools_18d.cc b/tests/bits/dof_tools_18d.cc index 2592a66873..1dd177c428 100644 --- a/tests/bits/dof_tools_18d.cc +++ b/tests/bits/dof_tools_18d.cc @@ -20,7 +20,7 @@ // make_flux_sparsity_pattern (const DoFHandler &, // CompressedBlockSparsityPattern &); -std::string output_file_name = "dof_tools_18d.output"; +std::string output_file_name = "dof_tools_18d/output"; // set up masks. choose X-shaped // masks with full first row and diff --git a/tests/bits/error_estimator_01.cc b/tests/bits/error_estimator_01.cc index f15a1fb8b3..f72040e7eb 100644 --- a/tests/bits/error_estimator_01.cc +++ b/tests/bits/error_estimator_01.cc @@ -196,7 +196,7 @@ check () int main () { - std::ofstream logfile ("error_estimator_01.output"); + std::ofstream logfile ("error_estimator_01/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/bits/fe_collection_01.cc b/tests/bits/fe_collection_01.cc index 68ead86f73..4d1f4d8537 100644 --- a/tests/bits/fe_collection_01.cc +++ b/tests/bits/fe_collection_01.cc @@ -44,7 +44,7 @@ check () int main() { - std::ofstream logfile("fe_collection_01.output"); + std::ofstream logfile("fe_collection_01/output"); logfile.precision(4); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/fe_q_3d_01.cc b/tests/bits/fe_q_3d_01.cc index cf6610b62b..7cccaed48c 100644 --- a/tests/bits/fe_q_3d_01.cc +++ b/tests/bits/fe_q_3d_01.cc @@ -115,7 +115,7 @@ void check () int main () { - std::ofstream logfile("fe_q_3d_01.output"); + std::ofstream logfile("fe_q_3d_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/fe_q_constraints.cc b/tests/bits/fe_q_constraints.cc index df5dc9ae5d..881c9c5365 100644 --- a/tests/bits/fe_q_constraints.cc +++ b/tests/bits/fe_q_constraints.cc @@ -247,7 +247,7 @@ void TestFEQConstraints::run () int main () { - std::ofstream logfile("fe_q_constraints.output"); + std::ofstream logfile("fe_q_constraints/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/fe_tools_01a.cc b/tests/bits/fe_tools_01a.cc index 2ddbe05946..2cb96f4bca 100644 --- a/tests/bits/fe_tools_01a.cc +++ b/tests/bits/fe_tools_01a.cc @@ -70,7 +70,7 @@ main() { try { - std::ofstream logfile("fe_tools_01a.output"); + std::ofstream logfile("fe_tools_01a/output"); logfile.precision (2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/fe_tools_01b.cc b/tests/bits/fe_tools_01b.cc index 3f244e4920..3ea9782eb0 100644 --- a/tests/bits/fe_tools_01b.cc +++ b/tests/bits/fe_tools_01b.cc @@ -70,7 +70,7 @@ main() { try { - std::ofstream logfile("fe_tools_01b.output"); + std::ofstream logfile("fe_tools_01b/output"); logfile.precision (2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/fe_tools_01c.cc b/tests/bits/fe_tools_01c.cc index d0adf33c3e..7cac420880 100644 --- a/tests/bits/fe_tools_01c.cc +++ b/tests/bits/fe_tools_01c.cc @@ -87,7 +87,7 @@ main() { try { - std::ofstream logfile("fe_tools_01c.output"); + std::ofstream logfile("fe_tools_01c/output"); logfile.precision (2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/fe_tools_02.cc b/tests/bits/fe_tools_02.cc index a06357a8b5..5498ae3637 100644 --- a/tests/bits/fe_tools_02.cc +++ b/tests/bits/fe_tools_02.cc @@ -19,7 +19,7 @@ // FETools::get_interpolation_matrix -std::string output_file_name = "fe_tools_02.output"; +std::string output_file_name = "fe_tools_02/output"; template diff --git a/tests/bits/fe_tools_03.cc b/tests/bits/fe_tools_03.cc index bcd11e5794..625d2c1f2c 100644 --- a/tests/bits/fe_tools_03.cc +++ b/tests/bits/fe_tools_03.cc @@ -19,7 +19,7 @@ // FETools::get_back_interpolation_matrix -std::string output_file_name = "fe_tools_03.output"; +std::string output_file_name = "fe_tools_03/output"; template diff --git a/tests/bits/fe_tools_04.cc b/tests/bits/fe_tools_04.cc index 988bb8cec4..a39af2b25d 100644 --- a/tests/bits/fe_tools_04.cc +++ b/tests/bits/fe_tools_04.cc @@ -19,7 +19,7 @@ // FETools::get_interpolation_difference_matrix -std::string output_file_name = "fe_tools_04.output"; +std::string output_file_name = "fe_tools_04/output"; template diff --git a/tests/bits/fe_tools_05.cc b/tests/bits/fe_tools_05.cc index 9add962c12..2a2c7664de 100644 --- a/tests/bits/fe_tools_05.cc +++ b/tests/bits/fe_tools_05.cc @@ -19,7 +19,7 @@ // FETools::interpolate(5) -std::string output_file_name = "fe_tools_05.output"; +std::string output_file_name = "fe_tools_05/output"; template diff --git a/tests/bits/fe_tools_06.cc b/tests/bits/fe_tools_06.cc index 2eb3a35142..fd6a978c34 100644 --- a/tests/bits/fe_tools_06.cc +++ b/tests/bits/fe_tools_06.cc @@ -19,7 +19,7 @@ // FETools::back_interpolate(6) -std::string output_file_name = "fe_tools_06.output"; +std::string output_file_name = "fe_tools_06/output"; template diff --git a/tests/bits/fe_tools_07.cc b/tests/bits/fe_tools_07.cc index ce05c68891..11df65e009 100644 --- a/tests/bits/fe_tools_07.cc +++ b/tests/bits/fe_tools_07.cc @@ -19,7 +19,7 @@ // FETools::interpolation_difference(6) -std::string output_file_name = "fe_tools_07.output"; +std::string output_file_name = "fe_tools_07/output"; template diff --git a/tests/bits/fe_tools_08.cc b/tests/bits/fe_tools_08.cc index 302c142f88..be11e36c48 100644 --- a/tests/bits/fe_tools_08.cc +++ b/tests/bits/fe_tools_08.cc @@ -19,7 +19,7 @@ // FETools::extrapolate(5) -std::string output_file_name = "fe_tools_08.output"; +std::string output_file_name = "fe_tools_08/output"; template diff --git a/tests/bits/fe_tools_09.cc b/tests/bits/fe_tools_09.cc index 6beb4bac89..8ccb539279 100644 --- a/tests/bits/fe_tools_09.cc +++ b/tests/bits/fe_tools_09.cc @@ -19,7 +19,7 @@ // FETools::get_fe_from_name -std::string output_file_name = "fe_tools_09.output"; +std::string output_file_name = "fe_tools_09/output"; template diff --git a/tests/bits/fe_tools_10.cc b/tests/bits/fe_tools_10.cc index 367ced08b4..1a30242177 100644 --- a/tests/bits/fe_tools_10.cc +++ b/tests/bits/fe_tools_10.cc @@ -22,7 +22,7 @@ // the concrete dimension (see the documentation) -std::string output_file_name = "fe_tools_10.output"; +std::string output_file_name = "fe_tools_10/output"; template std::string modify_name (const std::string &name) diff --git a/tests/bits/fe_tools_11.cc b/tests/bits/fe_tools_11.cc index af0b2c91f5..c3e7f093b6 100644 --- a/tests/bits/fe_tools_11.cc +++ b/tests/bits/fe_tools_11.cc @@ -21,7 +21,7 @@ // marker at all (see the documentation) -std::string output_file_name = "fe_tools_11.output"; +std::string output_file_name = "fe_tools_11/output"; template std::string modify_name (const std::string &name) diff --git a/tests/bits/fe_tools_12.cc b/tests/bits/fe_tools_12.cc index c88c2dff7e..e586103d29 100644 --- a/tests/bits/fe_tools_12.cc +++ b/tests/bits/fe_tools_12.cc @@ -18,7 +18,7 @@ // FETools::get_projection_matrix -std::string output_file_name = "fe_tools_12.output"; +std::string output_file_name = "fe_tools_12/output"; diff --git a/tests/bits/fe_tools_cpfqpm_01.cc b/tests/bits/fe_tools_cpfqpm_01.cc index 920c6a0a2d..c667375a55 100644 --- a/tests/bits/fe_tools_cpfqpm_01.cc +++ b/tests/bits/fe_tools_cpfqpm_01.cc @@ -26,7 +26,7 @@ // characteristics -std::string output_file_name = "fe_tools_cpfqpm_01.output"; +std::string output_file_name = "fe_tools_cpfqpm_01/output"; template diff --git a/tests/bits/fe_tools_cpfqpm_02.cc b/tests/bits/fe_tools_cpfqpm_02.cc index 7d6b579dba..2581691dc4 100644 --- a/tests/bits/fe_tools_cpfqpm_02.cc +++ b/tests/bits/fe_tools_cpfqpm_02.cc @@ -27,7 +27,7 @@ // back to the quadrature points is an identity operation -std::string output_file_name = "fe_tools_cpfqpm_02.output"; +std::string output_file_name = "fe_tools_cpfqpm_02/output"; template diff --git a/tests/bits/fe_tools_cpfqpm_03.cc b/tests/bits/fe_tools_cpfqpm_03.cc index 4be6c19c24..7fcc40cd16 100644 --- a/tests/bits/fe_tools_cpfqpm_03.cc +++ b/tests/bits/fe_tools_cpfqpm_03.cc @@ -28,7 +28,7 @@ // needs to work -std::string output_file_name = "fe_tools_cpfqpm_03.output"; +std::string output_file_name = "fe_tools_cpfqpm_03/output"; template diff --git a/tests/bits/fe_tools_cpfqpm_04.cc b/tests/bits/fe_tools_cpfqpm_04.cc index 50f53dbf9b..8ed81b5cb9 100644 --- a/tests/bits/fe_tools_cpfqpm_04.cc +++ b/tests/bits/fe_tools_cpfqpm_04.cc @@ -27,7 +27,7 @@ // matrix is the unit matrix -std::string output_file_name = "fe_tools_cpfqpm_04.output"; +std::string output_file_name = "fe_tools_cpfqpm_04/output"; template diff --git a/tests/bits/find_cell_1.cc b/tests/bits/find_cell_1.cc index 12ea1f8c58..3bac0d0b6d 100644 --- a/tests/bits/find_cell_1.cc +++ b/tests/bits/find_cell_1.cc @@ -48,7 +48,7 @@ void check (Triangulation<2> &tria) int main () { - std::ofstream logfile("find_cell_1.output"); + std::ofstream logfile("find_cell_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/find_cell_2.cc b/tests/bits/find_cell_2.cc index b56aa56377..91a36bcce9 100644 --- a/tests/bits/find_cell_2.cc +++ b/tests/bits/find_cell_2.cc @@ -47,7 +47,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("find_cell_2.output"); + std::ofstream logfile("find_cell_2/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/find_cell_3.cc b/tests/bits/find_cell_3.cc index 07cec6599c..b21cfa44b4 100644 --- a/tests/bits/find_cell_3.cc +++ b/tests/bits/find_cell_3.cc @@ -47,7 +47,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("find_cell_3.output"); + std::ofstream logfile("find_cell_3/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/full_matrix_1.cc b/tests/bits/full_matrix_1.cc index 8dea856393..6382dd9ad0 100644 --- a/tests/bits/full_matrix_1.cc +++ b/tests/bits/full_matrix_1.cc @@ -24,7 +24,7 @@ int main () { - std::ofstream logfile("full_matrix_1.output"); + std::ofstream logfile("full_matrix_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/full_matrix_iterator_01.cc b/tests/bits/full_matrix_iterator_01.cc index 30d15e4cb8..ec1858accf 100644 --- a/tests/bits/full_matrix_iterator_01.cc +++ b/tests/bits/full_matrix_iterator_01.cc @@ -46,7 +46,7 @@ void test () int main () { - std::ofstream logfile("full_matrix_iterator_01.output"); + std::ofstream logfile("full_matrix_iterator_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/full_matrix_vector_01.cc b/tests/bits/full_matrix_vector_01.cc index 1c0b1c5985..a0278f51f0 100644 --- a/tests/bits/full_matrix_vector_01.cc +++ b/tests/bits/full_matrix_vector_01.cc @@ -57,7 +57,7 @@ void test (Vector &v, int main () { - std::ofstream logfile("full_matrix_vector_01.output"); + std::ofstream logfile("full_matrix_vector_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/full_matrix_vector_02.cc b/tests/bits/full_matrix_vector_02.cc index b1e973ecb0..3a493e427b 100644 --- a/tests/bits/full_matrix_vector_02.cc +++ b/tests/bits/full_matrix_vector_02.cc @@ -57,7 +57,7 @@ void test (Vector &v, int main () { - std::ofstream logfile("full_matrix_vector_02.output"); + std::ofstream logfile("full_matrix_vector_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/full_matrix_vector_05.cc b/tests/bits/full_matrix_vector_05.cc index dec6036c01..0619f826f4 100644 --- a/tests/bits/full_matrix_vector_05.cc +++ b/tests/bits/full_matrix_vector_05.cc @@ -63,7 +63,7 @@ void test (Vector &v, int main () { - std::ofstream logfile("full_matrix_vector_05.output"); + std::ofstream logfile("full_matrix_vector_05/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/full_matrix_vector_06.cc b/tests/bits/full_matrix_vector_06.cc index 0679e7234f..2544ee0020 100644 --- a/tests/bits/full_matrix_vector_06.cc +++ b/tests/bits/full_matrix_vector_06.cc @@ -55,7 +55,7 @@ void test (Vector &v) int main () { - std::ofstream logfile("full_matrix_vector_06.output"); + std::ofstream logfile("full_matrix_vector_06/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/full_matrix_vector_07.cc b/tests/bits/full_matrix_vector_07.cc index 7c89011c2d..8115c35491 100644 --- a/tests/bits/full_matrix_vector_07.cc +++ b/tests/bits/full_matrix_vector_07.cc @@ -65,7 +65,7 @@ void test (Vector &v, int main () { - std::ofstream logfile("full_matrix_vector_07.output"); + std::ofstream logfile("full_matrix_vector_07/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/geometry_info_1.cc b/tests/bits/geometry_info_1.cc index 70492b4b42..c0382fd54a 100644 --- a/tests/bits/geometry_info_1.cc +++ b/tests/bits/geometry_info_1.cc @@ -79,7 +79,7 @@ void test () int main () { - std::ofstream logfile("geometry_info_1.output"); + std::ofstream logfile("geometry_info_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/geometry_info_2.cc b/tests/bits/geometry_info_2.cc index 0d2dfd2993..21e9f4c1cb 100644 --- a/tests/bits/geometry_info_2.cc +++ b/tests/bits/geometry_info_2.cc @@ -41,7 +41,7 @@ void test () int main () { - std::ofstream logfile("geometry_info_2.output"); + std::ofstream logfile("geometry_info_2/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/gerold_1.cc b/tests/bits/gerold_1.cc index 98e36ef9dd..ef52a89d71 100644 --- a/tests/bits/gerold_1.cc +++ b/tests/bits/gerold_1.cc @@ -104,7 +104,7 @@ void LaplaceProblem::run () int main () { - std::ofstream logfile("gerold_1.output"); + std::ofstream logfile("gerold_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/get_fe_from_name.cc b/tests/bits/get_fe_from_name.cc index e06dc67cc9..3545f83c89 100644 --- a/tests/bits/get_fe_from_name.cc +++ b/tests/bits/get_fe_from_name.cc @@ -47,7 +47,7 @@ public: int main () { - std::ofstream logfile("get_fe_from_name.output"); + std::ofstream logfile("get_fe_from_name/output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/bits/grid_generator_01.cc b/tests/bits/grid_generator_01.cc index 1ee82979d4..cb1aca8f9f 100644 --- a/tests/bits/grid_generator_01.cc +++ b/tests/bits/grid_generator_01.cc @@ -153,7 +153,7 @@ void test(std::ostream& out) int main() { - std::ofstream logfile("grid_generator_01.output"); + std::ofstream logfile("grid_generator_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/grid_in_msh_01.cc b/tests/bits/grid_in_msh_01.cc index eacd22ea45..f10d3b6d73 100644 --- a/tests/bits/grid_in_msh_01.cc +++ b/tests/bits/grid_in_msh_01.cc @@ -49,7 +49,7 @@ void gmsh_grid (const char *name) int main () { - std::ofstream logfile("grid_in_msh_01.output"); + std::ofstream logfile("grid_in_msh_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/hsl_ma27_01.cc b/tests/bits/hsl_ma27_01.cc index a72372f76a..bd7507c0fc 100644 --- a/tests/bits/hsl_ma27_01.cc +++ b/tests/bits/hsl_ma27_01.cc @@ -104,7 +104,7 @@ void test () int main () { - std::ofstream logfile("hsl_ma27_01.output"); + std::ofstream logfile("hsl_ma27_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/hsl_ma27_02.cc b/tests/bits/hsl_ma27_02.cc index 79cb331044..7f3e83beea 100644 --- a/tests/bits/hsl_ma27_02.cc +++ b/tests/bits/hsl_ma27_02.cc @@ -110,7 +110,7 @@ void test () int main () { - std::ofstream logfile("hsl_ma27_02.output"); + std::ofstream logfile("hsl_ma27_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/hsl_ma47_01.cc b/tests/bits/hsl_ma47_01.cc index 42c321c0e0..de113ff3f7 100644 --- a/tests/bits/hsl_ma47_01.cc +++ b/tests/bits/hsl_ma47_01.cc @@ -104,7 +104,7 @@ void test () int main () { - std::ofstream logfile("hsl_ma47_01.output"); + std::ofstream logfile("hsl_ma47_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/hsl_ma47_02.cc b/tests/bits/hsl_ma47_02.cc index afb76e0206..5c3f67a8c1 100644 --- a/tests/bits/hsl_ma47_02.cc +++ b/tests/bits/hsl_ma47_02.cc @@ -110,7 +110,7 @@ void test () int main () { - std::ofstream logfile("hsl_ma47_02.output"); + std::ofstream logfile("hsl_ma47_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/hyper_ball_3d.cc b/tests/bits/hyper_ball_3d.cc index 4a063f1c0d..f0597565b2 100644 --- a/tests/bits/hyper_ball_3d.cc +++ b/tests/bits/hyper_ball_3d.cc @@ -32,7 +32,7 @@ int main () { - std::ofstream logfile("hyper_ball_3d.output"); + std::ofstream logfile("hyper_ball_3d/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mapping_cartesian_1.cc b/tests/bits/mapping_cartesian_1.cc index 0f48672cbb..5145b90a7b 100644 --- a/tests/bits/mapping_cartesian_1.cc +++ b/tests/bits/mapping_cartesian_1.cc @@ -53,7 +53,7 @@ void check (const Triangulation &tria) int main () { - std::ofstream logfile("mapping_cartesian_1.output"); + std::ofstream logfile("mapping_cartesian_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mapping_q4_3d.cc b/tests/bits/mapping_q4_3d.cc index b9abe246ac..17be587a40 100644 --- a/tests/bits/mapping_q4_3d.cc +++ b/tests/bits/mapping_q4_3d.cc @@ -33,7 +33,7 @@ int main () { - std::ofstream logfile("mapping_q4_3d.output"); + std::ofstream logfile("mapping_q4_3d/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_1.cc b/tests/bits/mesh_3d_1.cc index 5b66868d67..2d19e401f9 100644 --- a/tests/bits/mesh_3d_1.cc +++ b/tests/bits/mesh_3d_1.cc @@ -34,7 +34,7 @@ int main () { - std::ofstream logfile("mesh_3d_1.output"); + std::ofstream logfile("mesh_3d_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_10.cc b/tests/bits/mesh_3d_10.cc index a5515fa15d..fde7401c9b 100644 --- a/tests/bits/mesh_3d_10.cc +++ b/tests/bits/mesh_3d_10.cc @@ -78,7 +78,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_10.output"); + std::ofstream logfile("mesh_3d_10/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_11.cc b/tests/bits/mesh_3d_11.cc index 8b98604546..7503cff59e 100644 --- a/tests/bits/mesh_3d_11.cc +++ b/tests/bits/mesh_3d_11.cc @@ -90,7 +90,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_11.output"); + std::ofstream logfile("mesh_3d_11/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_12.cc b/tests/bits/mesh_3d_12.cc index d3fe3a2d32..fbf9a8aeeb 100644 --- a/tests/bits/mesh_3d_12.cc +++ b/tests/bits/mesh_3d_12.cc @@ -84,7 +84,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_12.output"); + std::ofstream logfile("mesh_3d_12/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_13.cc b/tests/bits/mesh_3d_13.cc index 5202661742..89dcba1438 100644 --- a/tests/bits/mesh_3d_13.cc +++ b/tests/bits/mesh_3d_13.cc @@ -105,7 +105,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_13.output"); + std::ofstream logfile("mesh_3d_13/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_14.cc b/tests/bits/mesh_3d_14.cc index 2f1f8dd04b..8f99b7945d 100644 --- a/tests/bits/mesh_3d_14.cc +++ b/tests/bits/mesh_3d_14.cc @@ -140,7 +140,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_14.output"); + std::ofstream logfile("mesh_3d_14/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_15.cc b/tests/bits/mesh_3d_15.cc index 69388e7d4e..bb77ce9bc3 100644 --- a/tests/bits/mesh_3d_15.cc +++ b/tests/bits/mesh_3d_15.cc @@ -120,7 +120,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_15.output"); + std::ofstream logfile("mesh_3d_15/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_16.cc b/tests/bits/mesh_3d_16.cc index 89fb35886a..6dfbbc02f4 100644 --- a/tests/bits/mesh_3d_16.cc +++ b/tests/bits/mesh_3d_16.cc @@ -90,7 +90,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_16.output"); + std::ofstream logfile("mesh_3d_16/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_17.cc b/tests/bits/mesh_3d_17.cc index cbe0b808b6..e06ec1ceba 100644 --- a/tests/bits/mesh_3d_17.cc +++ b/tests/bits/mesh_3d_17.cc @@ -127,7 +127,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_17.output"); + std::ofstream logfile("mesh_3d_17/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_2.cc b/tests/bits/mesh_3d_2.cc index 51b3f9ac1a..a24083835e 100644 --- a/tests/bits/mesh_3d_2.cc +++ b/tests/bits/mesh_3d_2.cc @@ -34,7 +34,7 @@ int main () { - std::ofstream logfile("mesh_3d_2.output"); + std::ofstream logfile("mesh_3d_2/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_3.cc b/tests/bits/mesh_3d_3.cc index 8d6ea27cf2..19ae11c92b 100644 --- a/tests/bits/mesh_3d_3.cc +++ b/tests/bits/mesh_3d_3.cc @@ -33,7 +33,7 @@ int main () { - std::ofstream logfile("mesh_3d_3.output"); + std::ofstream logfile("mesh_3d_3/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_4.cc b/tests/bits/mesh_3d_4.cc index 062afa84eb..6b3a97f18a 100644 --- a/tests/bits/mesh_3d_4.cc +++ b/tests/bits/mesh_3d_4.cc @@ -77,7 +77,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_4.output"); + std::ofstream logfile("mesh_3d_4/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_5.cc b/tests/bits/mesh_3d_5.cc index 848200fa46..9097babdf7 100644 --- a/tests/bits/mesh_3d_5.cc +++ b/tests/bits/mesh_3d_5.cc @@ -74,7 +74,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_5.output"); + std::ofstream logfile("mesh_3d_5/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_6.cc b/tests/bits/mesh_3d_6.cc index 55c3abd067..e8293c9b65 100644 --- a/tests/bits/mesh_3d_6.cc +++ b/tests/bits/mesh_3d_6.cc @@ -108,7 +108,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_6.output"); + std::ofstream logfile("mesh_3d_6/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_7.cc b/tests/bits/mesh_3d_7.cc index 1ad705ddc8..d4df19c924 100644 --- a/tests/bits/mesh_3d_7.cc +++ b/tests/bits/mesh_3d_7.cc @@ -117,7 +117,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_7.output"); + std::ofstream logfile("mesh_3d_7/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_8.cc b/tests/bits/mesh_3d_8.cc index 2ed6596f42..4ef1dcf209 100644 --- a/tests/bits/mesh_3d_8.cc +++ b/tests/bits/mesh_3d_8.cc @@ -75,7 +75,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_8.output"); + std::ofstream logfile("mesh_3d_8/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/mesh_3d_9.cc b/tests/bits/mesh_3d_9.cc index 0a6533bac4..e8ef070112 100644 --- a/tests/bits/mesh_3d_9.cc +++ b/tests/bits/mesh_3d_9.cc @@ -76,7 +76,7 @@ void check (Triangulation<3> &tria) int main () { - std::ofstream logfile("mesh_3d_9.output"); + std::ofstream logfile("mesh_3d_9/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/metis_01.cc b/tests/bits/metis_01.cc index 44c96a3fe9..16e45f56c4 100644 --- a/tests/bits/metis_01.cc +++ b/tests/bits/metis_01.cc @@ -55,7 +55,7 @@ void test () int main () { - std::ofstream logfile("metis_01.output"); + std::ofstream logfile("metis_01/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/metis_02.cc b/tests/bits/metis_02.cc index e6d85a9d9b..b994edf78c 100644 --- a/tests/bits/metis_02.cc +++ b/tests/bits/metis_02.cc @@ -85,7 +85,7 @@ void test () int main () { - std::ofstream logfile("metis_02.output"); + std::ofstream logfile("metis_02/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/nedelec_1.cc b/tests/bits/nedelec_1.cc index fac157ea9a..3df6c1f55a 100644 --- a/tests/bits/nedelec_1.cc +++ b/tests/bits/nedelec_1.cc @@ -52,7 +52,7 @@ void test () int main () { - std::ofstream logfile("nedelec_1.output"); + std::ofstream logfile("nedelec_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/bits/normals_1.cc b/tests/bits/normals_1.cc index 0d6ff247f1..d13215a006 100644 --- a/tests/bits/normals_1.cc +++ b/tests/bits/normals_1.cc @@ -88,7 +88,7 @@ void check (const Triangulation &tria) int main () { - std::ofstream logfile("normals_1.output"); + std::ofstream logfile("normals_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/deal.II/block_matrices.cc b/tests/deal.II/block_matrices.cc index 4732cf48eb..edf7b20f1b 100644 --- a/tests/deal.II/block_matrices.cc +++ b/tests/deal.II/block_matrices.cc @@ -352,7 +352,7 @@ void LaplaceProblem::run () int main () { - std::ofstream logfile("block_matrices.output"); + std::ofstream logfile("block_matrices/output"); logfile.precision(2); deallog.attach(logfile); diff --git a/tests/deal.II/boundaries.cc b/tests/deal.II/boundaries.cc index 6a2a32158f..d7f963a7fd 100644 --- a/tests/deal.II/boundaries.cc +++ b/tests/deal.II/boundaries.cc @@ -167,7 +167,7 @@ check () int main () { - std::ofstream logfile ("boundaries.output"); + std::ofstream logfile ("boundaries/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/constraints.cc b/tests/deal.II/constraints.cc index a856d721a3..a02978a0ce 100644 --- a/tests/deal.II/constraints.cc +++ b/tests/deal.II/constraints.cc @@ -33,7 +33,7 @@ #include -std::ofstream logfile("constraints.output"); +std::ofstream logfile("constraints/output"); void make_tria (Triangulation<3> &tria, int step) diff --git a/tests/deal.II/data_out.cc b/tests/deal.II/data_out.cc index 241c7e08c3..0ad914acad 100644 --- a/tests/deal.II/data_out.cc +++ b/tests/deal.II/data_out.cc @@ -46,7 +46,7 @@ #include -std::ofstream logfile("data_out.output"); +std::ofstream logfile("data_out/output"); template diff --git a/tests/deal.II/derivative_approximation.cc b/tests/deal.II/derivative_approximation.cc index 5f498af1f9..13513e3704 100644 --- a/tests/deal.II/derivative_approximation.cc +++ b/tests/deal.II/derivative_approximation.cc @@ -76,7 +76,7 @@ check () int main () { - std::ofstream logfile ("derivative_approximation.output"); + std::ofstream logfile ("derivative_approximation/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/derivatives.cc b/tests/deal.II/derivatives.cc index 7577f42095..40221a2adf 100644 --- a/tests/deal.II/derivatives.cc +++ b/tests/deal.II/derivatives.cc @@ -211,7 +211,7 @@ void loop () int main () { - std::ofstream logfile ("derivatives.output"); + std::ofstream logfile ("derivatives/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/dof_renumbering.cc b/tests/deal.II/dof_renumbering.cc index 4c7151cf3c..22616dba3a 100644 --- a/tests/deal.II/dof_renumbering.cc +++ b/tests/deal.II/dof_renumbering.cc @@ -168,7 +168,7 @@ check () int main () { - std::ofstream logfile ("dof_renumbering.output"); + std::ofstream logfile ("dof_renumbering/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/dof_test.cc b/tests/deal.II/dof_test.cc index 46bd59cc17..fe3ce4a717 100644 --- a/tests/deal.II/dof_test.cc +++ b/tests/deal.II/dof_test.cc @@ -36,7 +36,7 @@ // 2: refinement of the circle at the boundary // 2: refinement of a wiggled area at the boundary -std::ofstream logfile("dof_test.output"); +std::ofstream logfile("dof_test/output"); template diff --git a/tests/deal.II/error_estimator.cc b/tests/deal.II/error_estimator.cc index 7037e4ae42..d77b02d36f 100644 --- a/tests/deal.II/error_estimator.cc +++ b/tests/deal.II/error_estimator.cc @@ -114,7 +114,7 @@ check () int main () { - std::ofstream logfile ("error_estimator.output"); + std::ofstream logfile ("error_estimator/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/face_orientations_3d.cc b/tests/deal.II/face_orientations_3d.cc index ce94613d1d..8d71253609 100644 --- a/tests/deal.II/face_orientations_3d.cc +++ b/tests/deal.II/face_orientations_3d.cc @@ -30,7 +30,7 @@ #include -std::ofstream logfile("face_orientations_3d.output"); +std::ofstream logfile("face_orientations_3d/output"); void test (const char *filename) diff --git a/tests/deal.II/fe_tables.cc b/tests/deal.II/fe_tables.cc index 3ed2bc4ab4..dade1d71d6 100644 --- a/tests/deal.II/fe_tables.cc +++ b/tests/deal.II/fe_tables.cc @@ -30,7 +30,7 @@ #include -std::ofstream logfile("fe_tables.output"); +std::ofstream logfile("fe_tables/output"); #define TEST_ELEMENT(e) { deallog.push(#e); e el;\ print_fe_statistics(el); deallog.pop(); deallog << std::endl; } diff --git a/tests/deal.II/filtered_iterator.cc b/tests/deal.II/filtered_iterator.cc index f64f89f551..b2be8095c3 100644 --- a/tests/deal.II/filtered_iterator.cc +++ b/tests/deal.II/filtered_iterator.cc @@ -28,7 +28,7 @@ #include -std::ofstream logfile("filtered_iterator.output"); +std::ofstream logfile("filtered_iterator/output"); DeclException2 (ExcNumberMismatch, diff --git a/tests/deal.II/filtered_matrix.cc b/tests/deal.II/filtered_matrix.cc index 51feee1f73..68f2c57331 100644 --- a/tests/deal.II/filtered_matrix.cc +++ b/tests/deal.II/filtered_matrix.cc @@ -197,7 +197,7 @@ check () int main () { - std::ofstream logfile ("filtered_matrix.output"); + std::ofstream logfile ("filtered_matrix/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/gradients.cc b/tests/deal.II/gradients.cc index 27455c75c4..ef633e70ad 100644 --- a/tests/deal.II/gradients.cc +++ b/tests/deal.II/gradients.cc @@ -31,7 +31,7 @@ int main () { - std::ofstream logfile("gradients.output"); + std::ofstream logfile("gradients/output"); // limit output a bit logfile.precision (3); deallog.attach(logfile); diff --git a/tests/deal.II/grid_in.cc b/tests/deal.II/grid_in.cc index d01dc2e24c..cb88cc6213 100644 --- a/tests/deal.II/grid_in.cc +++ b/tests/deal.II/grid_in.cc @@ -27,7 +27,7 @@ #include #include -std::ofstream logfile("grid_in.output"); +std::ofstream logfile("grid_in/output"); template diff --git a/tests/deal.II/grid_in_3d.cc b/tests/deal.II/grid_in_3d.cc index 942fef0a56..e7e1660be7 100644 --- a/tests/deal.II/grid_in_3d.cc +++ b/tests/deal.II/grid_in_3d.cc @@ -31,7 +31,7 @@ #include -std::ofstream logfile("grid_in_3d.output"); +std::ofstream logfile("grid_in_3d/output"); void test (const char *filename) diff --git a/tests/deal.II/grid_out.cc b/tests/deal.II/grid_out.cc index 297c691455..fb2c30e504 100644 --- a/tests/deal.II/grid_out.cc +++ b/tests/deal.II/grid_out.cc @@ -24,7 +24,7 @@ #include -std::ofstream logfile("grid_out.output"); +std::ofstream logfile("grid_out/output"); template diff --git a/tests/deal.II/grid_test.cc b/tests/deal.II/grid_test.cc index 4c11c9122f..9cc75ad5eb 100644 --- a/tests/deal.II/grid_test.cc +++ b/tests/deal.II/grid_test.cc @@ -26,7 +26,7 @@ #include #include -std::ofstream logfile("grid_test.output"); +std::ofstream logfile("grid_test/output"); // 1: continuous refinement of the unit square always in the middle // 2: refinement of the circle at the boundary diff --git a/tests/deal.II/grid_tools.cc b/tests/deal.II/grid_tools.cc index ae97b98950..502fc4663c 100644 --- a/tests/deal.II/grid_tools.cc +++ b/tests/deal.II/grid_tools.cc @@ -22,7 +22,7 @@ #include -std::ofstream logfile("grid_tools.output"); +std::ofstream logfile("grid_tools/output"); diff --git a/tests/deal.II/grid_transform.cc b/tests/deal.II/grid_transform.cc index d669b2e549..f495c1048a 100644 --- a/tests/deal.II/grid_transform.cc +++ b/tests/deal.II/grid_transform.cc @@ -42,7 +42,7 @@ int main () GridOut grid_out; if (false) { - std::ofstream eps_stream1("grid_untransformed.output"); + std::ofstream eps_stream1("grid_untransformed/output"); grid_out.write_eps(tria, eps_stream1, &mapping); } @@ -111,7 +111,7 @@ int main () GridGenerator::laplace_transformation (tria, new_points); HyperBallBoundary inner_ball(n_center, n_radius); tria.set_boundary(1, inner_ball); - std::ofstream eps_stream2("grid_transform.output"); + std::ofstream eps_stream2("grid_transform/output"); grid_out.write_eps(tria, eps_stream2, &mapping); tria.clear(); diff --git a/tests/deal.II/intergrid_constraints.cc b/tests/deal.II/intergrid_constraints.cc index 6d49098a45..f048dc2cd1 100644 --- a/tests/deal.II/intergrid_constraints.cc +++ b/tests/deal.II/intergrid_constraints.cc @@ -26,7 +26,7 @@ -std::ofstream logfile("intergrid_constraints.output"); +std::ofstream logfile("intergrid_constraints/output"); template diff --git a/tests/deal.II/intergrid_map.cc b/tests/deal.II/intergrid_map.cc index bb9d6f669e..42c3fa3056 100644 --- a/tests/deal.II/intergrid_map.cc +++ b/tests/deal.II/intergrid_map.cc @@ -102,7 +102,7 @@ void check () int main () { - std::ofstream logfile("intergrid_map.output"); + std::ofstream logfile("intergrid_map/output"); logfile.precision(2); deallog.attach(logfile); diff --git a/tests/deal.II/matrices.cc b/tests/deal.II/matrices.cc index 53b1849fa9..dcb17c0b9b 100644 --- a/tests/deal.II/matrices.cc +++ b/tests/deal.II/matrices.cc @@ -202,7 +202,7 @@ check () int main () { - std::ofstream logfile ("matrices.output"); + std::ofstream logfile ("matrices/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/measure_et_al.cc b/tests/deal.II/measure_et_al.cc index 362210c57d..e1bae432f0 100644 --- a/tests/deal.II/measure_et_al.cc +++ b/tests/deal.II/measure_et_al.cc @@ -102,7 +102,7 @@ void test() int main() { - std::ofstream logfile ("measure_et_al.output"); + std::ofstream logfile ("measure_et_al/output"); logfile.precision (PRECISION); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/mg_dof_handler.cc b/tests/deal.II/mg_dof_handler.cc index d99f722590..4f4fb0d0f5 100644 --- a/tests/deal.II/mg_dof_handler.cc +++ b/tests/deal.II/mg_dof_handler.cc @@ -29,7 +29,7 @@ int main () { - std::ofstream logfile("mg_dof_handler.output"); + std::ofstream logfile("mg_dof_handler/output"); logfile.precision(2); deallog.attach(logfile); diff --git a/tests/deal.II/normals_at_vertices.cc b/tests/deal.II/normals_at_vertices.cc index 07ddb761f9..08c67485fc 100644 --- a/tests/deal.II/normals_at_vertices.cc +++ b/tests/deal.II/normals_at_vertices.cc @@ -55,7 +55,7 @@ void create_triangulation(const unsigned int case_no, int main () { - std::ofstream logfile ("normals_at_vertices.output"); + std::ofstream logfile ("normals_at_vertices/output"); logfile.precision (3); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/second_derivatives.cc b/tests/deal.II/second_derivatives.cc index 4735a766eb..a225c9e33f 100644 --- a/tests/deal.II/second_derivatives.cc +++ b/tests/deal.II/second_derivatives.cc @@ -31,7 +31,7 @@ int main () { - std::ofstream logfile("second_derivatives.output"); + std::ofstream logfile("second_derivatives/output"); logfile.precision(2); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/sparsity_pattern.cc b/tests/deal.II/sparsity_pattern.cc index f67ef62f3c..8ac51a0979 100644 --- a/tests/deal.II/sparsity_pattern.cc +++ b/tests/deal.II/sparsity_pattern.cc @@ -225,7 +225,7 @@ check () int main () { - std::ofstream logfile ("sparsity_pattern.output"); + std::ofstream logfile ("sparsity_pattern/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/subcelldata.cc b/tests/deal.II/subcelldata.cc index f34557f622..79a843f5c7 100644 --- a/tests/deal.II/subcelldata.cc +++ b/tests/deal.II/subcelldata.cc @@ -106,7 +106,7 @@ void test() int main () { - std::ofstream logfile("subcelldata.output"); + std::ofstream logfile("subcelldata/output"); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/deal.II/subdomain_ids.cc b/tests/deal.II/subdomain_ids.cc index 1633f9fa76..3b710e3cb4 100644 --- a/tests/deal.II/subdomain_ids.cc +++ b/tests/deal.II/subdomain_ids.cc @@ -30,7 +30,7 @@ #include -std::ofstream logfile("subdomain_ids.output"); +std::ofstream logfile("subdomain_ids/output"); DeclException2 (ExcNumberMismatch, diff --git a/tests/deal.II/support_point_map.cc b/tests/deal.II/support_point_map.cc index 025e1ec9ad..24209c5664 100644 --- a/tests/deal.II/support_point_map.cc +++ b/tests/deal.II/support_point_map.cc @@ -123,7 +123,7 @@ check () int main () { - std::ofstream logfile ("support_point_map.output"); + std::ofstream logfile ("support_point_map/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/deal.II/wave-test-3.cc b/tests/deal.II/wave-test-3.cc index 80a5622bbb..0b085c0155 100644 --- a/tests/deal.II/wave-test-3.cc +++ b/tests/deal.II/wave-test-3.cc @@ -39,7 +39,7 @@ using namespace std; -std::ofstream logfile("wave-test-3.output"); +std::ofstream logfile("wave-test-3/output"); class UserMatrix; class SweepInfo; diff --git a/tests/fe/check_derivatives.cc b/tests/fe/check_derivatives.cc index c362c6e3cd..f99d25ebaf 100644 --- a/tests/fe/check_derivatives.cc +++ b/tests/fe/check_derivatives.cc @@ -124,7 +124,7 @@ void check (const unsigned int min_degree, int main() { - std::ofstream logfile ("check_derivatives.output"); + std::ofstream logfile ("check_derivatives/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/derivatives.cc b/tests/fe/derivatives.cc index 7a0b06060a..f079945435 100644 --- a/tests/fe/derivatives.cc +++ b/tests/fe/derivatives.cc @@ -132,7 +132,7 @@ void plot_FE_DGQ_shape_functions() int main() { - std::ofstream logfile ("derivatives.output"); + std::ofstream logfile ("derivatives/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/dgp_monomial_1.cc b/tests/fe/dgp_monomial_1.cc index 073c1cf7d0..3e19b73569 100644 --- a/tests/fe/dgp_monomial_1.cc +++ b/tests/fe/dgp_monomial_1.cc @@ -58,7 +58,7 @@ test(const unsigned int degree) int main() { - std::ofstream logfile ("dgp_monomial_1.output"); + std::ofstream logfile ("dgp_monomial_1/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/dgp_monomial_2.cc b/tests/fe/dgp_monomial_2.cc index 65eb7884ce..459c399d48 100644 --- a/tests/fe/dgp_monomial_2.cc +++ b/tests/fe/dgp_monomial_2.cc @@ -60,7 +60,7 @@ test(const unsigned int degree1, int main() { - std::ofstream logfile ("dgp_monomial_2.output"); + std::ofstream logfile ("dgp_monomial_2/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/dgq_1.cc b/tests/fe/dgq_1.cc index 61f608a0f2..256b1ea15c 100644 --- a/tests/fe/dgq_1.cc +++ b/tests/fe/dgq_1.cc @@ -60,7 +60,7 @@ test(const unsigned int degree1, int main() { - std::ofstream logfile ("dgq_1.output"); + std::ofstream logfile ("dgq_1/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/fe_data_test.cc b/tests/fe/fe_data_test.cc index a972d4299c..68111d9ae8 100644 --- a/tests/fe/fe_data_test.cc +++ b/tests/fe/fe_data_test.cc @@ -171,7 +171,7 @@ void test_fe_datas() int main(int,char) { - std::ofstream logfile("fe_data_test.output"); + std::ofstream logfile("fe_data_test/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/fe_tools.cc b/tests/fe/fe_tools.cc index 3737a3db5e..d448f87429 100644 --- a/tests/fe/fe_tools.cc +++ b/tests/fe/fe_tools.cc @@ -180,7 +180,7 @@ void test_renumbering() int main() { - std::ofstream logfile("fe_tools.output"); + std::ofstream logfile("fe_tools/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/fe_tools_test.cc b/tests/fe/fe_tools_test.cc index 1e919d40c6..1c07e1c35e 100644 --- a/tests/fe/fe_tools_test.cc +++ b/tests/fe/fe_tools_test.cc @@ -185,7 +185,7 @@ void test(const Triangulation &tria, int main () { - std::ofstream logfile("fe_tools_test.output"); + std::ofstream logfile("fe_tools_test/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/function.cc b/tests/fe/function.cc index 1d4249fb59..96db890feb 100644 --- a/tests/fe/function.cc +++ b/tests/fe/function.cc @@ -84,7 +84,7 @@ void test_vectors() int main() { - std::ofstream logfile("function.output"); + std::ofstream logfile("function/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/internals.cc b/tests/fe/internals.cc index e0a6109365..497ba6ac4c 100644 --- a/tests/fe/internals.cc +++ b/tests/fe/internals.cc @@ -118,7 +118,7 @@ check_matrices (FiniteElement& fe, const char* name) int main() { - std::ofstream logfile("internals.output"); + std::ofstream logfile("internals/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/interpolate_q1.cc b/tests/fe/interpolate_q1.cc index cbba21dfa0..fdb3cafe72 100644 --- a/tests/fe/interpolate_q1.cc +++ b/tests/fe/interpolate_q1.cc @@ -98,7 +98,7 @@ void check_dg_lobatto(const Function& f, int main() { - std::ofstream logfile ("interpolate_q1.output"); + std::ofstream logfile ("interpolate_q1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(2.e-15); diff --git a/tests/fe/interpolate_rt.cc b/tests/fe/interpolate_rt.cc index 4d61217071..4cc669c7ea 100644 --- a/tests/fe/interpolate_rt.cc +++ b/tests/fe/interpolate_rt.cc @@ -51,7 +51,7 @@ void check1(const Function& f, int main() { - std::ofstream logfile ("interpolate_rt.output"); + std::ofstream logfile ("interpolate_rt/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-15); diff --git a/tests/fe/interpolate_rtn.cc b/tests/fe/interpolate_rtn.cc index f18bf86caa..051aeb8abd 100644 --- a/tests/fe/interpolate_rtn.cc +++ b/tests/fe/interpolate_rtn.cc @@ -51,7 +51,7 @@ void check1(const Function& f, int main() { - std::ofstream logfile ("interpolate_rtn.output"); + std::ofstream logfile ("interpolate_rtn/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-13); diff --git a/tests/fe/interpolate_system.cc b/tests/fe/interpolate_system.cc index 79d48499a6..e1c896ab9f 100644 --- a/tests/fe/interpolate_system.cc +++ b/tests/fe/interpolate_system.cc @@ -85,7 +85,7 @@ void check3(const Function& f, int main() { - std::ofstream logfile ("interpolate_system.output"); + std::ofstream logfile ("interpolate_system/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-15); diff --git a/tests/fe/mapping.cc b/tests/fe/mapping.cc index 043b38bc33..d6b4e5cccb 100644 --- a/tests/fe/mapping.cc +++ b/tests/fe/mapping.cc @@ -559,7 +559,7 @@ void mapping_test() int main() { - std::ofstream logfile ("mapping.output"); + std::ofstream logfile ("mapping/output"); logfile.precision (PRECISION); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/fe/mapping_c1.cc b/tests/fe/mapping_c1.cc index 12541c313e..a5a4146913 100644 --- a/tests/fe/mapping_c1.cc +++ b/tests/fe/mapping_c1.cc @@ -22,7 +22,7 @@ int main () { - std::ofstream logfile ("mapping_c1.output"); + std::ofstream logfile ("mapping_c1/output"); logfile.setf(std::ios::fixed); logfile.precision (PRECISION); deallog.attach(logfile); diff --git a/tests/fe/mapping_q1_eulerian.cc b/tests/fe/mapping_q1_eulerian.cc index 4c49dd1dc5..f36fff8dfb 100644 --- a/tests/fe/mapping_q1_eulerian.cc +++ b/tests/fe/mapping_q1_eulerian.cc @@ -89,7 +89,7 @@ void show_values() int main() { - std::ofstream logfile ("mapping_q1_eulerian.output"); + std::ofstream logfile ("mapping_q1_eulerian/output"); logfile.precision (2); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/nedelec.cc b/tests/fe/nedelec.cc index 815ffda09b..2287108432 100644 --- a/tests/fe/nedelec.cc +++ b/tests/fe/nedelec.cc @@ -145,7 +145,7 @@ plot_shape_functions() int main() { - std::ofstream logfile ("nedelec.output"); + std::ofstream logfile ("nedelec/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/nedelec_2.cc b/tests/fe/nedelec_2.cc index 170952bccb..9bc1c8d64a 100644 --- a/tests/fe/nedelec_2.cc +++ b/tests/fe/nedelec_2.cc @@ -108,7 +108,7 @@ check () int main() { - std::ofstream logfile ("nedelec_2.output"); + std::ofstream logfile ("nedelec_2/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/nedelec_3.cc b/tests/fe/nedelec_3.cc index cb0166d02b..854f8f9928 100644 --- a/tests/fe/nedelec_3.cc +++ b/tests/fe/nedelec_3.cc @@ -102,7 +102,7 @@ check () int main() { - std::ofstream logfile ("nedelec_3.output"); + std::ofstream logfile ("nedelec_3/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/non_primitive_1.cc b/tests/fe/non_primitive_1.cc index 44d5245b5e..daeba60f48 100644 --- a/tests/fe/non_primitive_1.cc +++ b/tests/fe/non_primitive_1.cc @@ -327,7 +327,7 @@ test () int main () { - std::ofstream logfile("non_primitive_1.output"); + std::ofstream logfile("non_primitive_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/non_primitive_2.cc b/tests/fe/non_primitive_2.cc index 45142c24a3..5b5bcc7033 100644 --- a/tests/fe/non_primitive_2.cc +++ b/tests/fe/non_primitive_2.cc @@ -252,7 +252,7 @@ test () int main () { - std::ofstream logfile("non_primitive_2.output"); + std::ofstream logfile("non_primitive_2/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/numbering.cc b/tests/fe/numbering.cc index 69023fa3d3..3c25262788 100644 --- a/tests/fe/numbering.cc +++ b/tests/fe/numbering.cc @@ -13,7 +13,7 @@ #include -std::ofstream logfile ("numbering.output"); +std::ofstream logfile ("numbering/output"); template diff --git a/tests/fe/q_1.cc b/tests/fe/q_1.cc index 8f1af6659a..0adedac37b 100644 --- a/tests/fe/q_1.cc +++ b/tests/fe/q_1.cc @@ -52,7 +52,7 @@ test(const unsigned int degree) int main() { - std::ofstream logfile ("q_1.output"); + std::ofstream logfile ("q_1/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/q_2.cc b/tests/fe/q_2.cc index bab2b77969..8e2646861a 100644 --- a/tests/fe/q_2.cc +++ b/tests/fe/q_2.cc @@ -58,7 +58,7 @@ test(const unsigned int degree) int main() { - std::ofstream logfile ("q_2.output"); + std::ofstream logfile ("q_2/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/q_3.cc b/tests/fe/q_3.cc index 4d36676b3d..3bb90e7f9c 100644 --- a/tests/fe/q_3.cc +++ b/tests/fe/q_3.cc @@ -56,7 +56,7 @@ test(const unsigned int degree) int main() { - std::ofstream logfile ("q_3.output"); + std::ofstream logfile ("q_3/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/q_4.cc b/tests/fe/q_4.cc index 76117877b8..dd09756a6b 100644 --- a/tests/fe/q_4.cc +++ b/tests/fe/q_4.cc @@ -60,7 +60,7 @@ test(const unsigned int degree1, int main() { - std::ofstream logfile ("q_4.output"); + std::ofstream logfile ("q_4/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_1.cc b/tests/fe/rt_1.cc index 025f2edd27..3e5adbf9be 100644 --- a/tests/fe/rt_1.cc +++ b/tests/fe/rt_1.cc @@ -74,7 +74,7 @@ plot_shape_functions(const unsigned int degree) int main() { - std::ofstream logfile ("rt_1.output"); + std::ofstream logfile ("rt_1/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_2.cc b/tests/fe/rt_2.cc index c0dcae7ad7..2999620cef 100644 --- a/tests/fe/rt_2.cc +++ b/tests/fe/rt_2.cc @@ -156,7 +156,7 @@ plot_shape_functions(const unsigned int degree) int main() { - std::ofstream logfile ("rt_2.output"); + std::ofstream logfile ("rt_2/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_3.cc b/tests/fe/rt_3.cc index d48f4726e3..2ee3da16af 100644 --- a/tests/fe/rt_3.cc +++ b/tests/fe/rt_3.cc @@ -49,7 +49,7 @@ test(const unsigned int degree) int main() { - std::ofstream logfile ("rt_3.output"); + std::ofstream logfile ("rt_3/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_4.cc b/tests/fe/rt_4.cc index 3adb459696..9e340f4718 100644 --- a/tests/fe/rt_4.cc +++ b/tests/fe/rt_4.cc @@ -53,7 +53,7 @@ test(const unsigned int degree) int main() { - std::ofstream logfile ("rt_4.output"); + std::ofstream logfile ("rt_4/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_5.cc b/tests/fe/rt_5.cc index 84beeeec7e..e6a29c92d9 100644 --- a/tests/fe/rt_5.cc +++ b/tests/fe/rt_5.cc @@ -53,7 +53,7 @@ test(const unsigned int degree) int main() { - std::ofstream logfile ("rt_5.output"); + std::ofstream logfile ("rt_5/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_6.cc b/tests/fe/rt_6.cc index c035fbc27f..2bdb633adc 100644 --- a/tests/fe/rt_6.cc +++ b/tests/fe/rt_6.cc @@ -160,7 +160,7 @@ void test () int main() { - std::ofstream logfile ("rt_6.output"); + std::ofstream logfile ("rt_6/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_7.cc b/tests/fe/rt_7.cc index a9efae9cd7..294bbaf3f4 100644 --- a/tests/fe/rt_7.cc +++ b/tests/fe/rt_7.cc @@ -72,7 +72,7 @@ plot_shape_functions(const unsigned int degree) int main() { - std::ofstream logfile ("rt_7.output"); + std::ofstream logfile ("rt_7/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rt_8.cc b/tests/fe/rt_8.cc index b55047c614..e7670b7d6a 100644 --- a/tests/fe/rt_8.cc +++ b/tests/fe/rt_8.cc @@ -36,7 +36,7 @@ #define PRECISION 2 -std::ofstream logfile ("rt_8.output"); +std::ofstream logfile ("rt_8/output"); template void diff --git a/tests/fe/rt_9.cc b/tests/fe/rt_9.cc index 01c896cbdd..3a49ec0fd4 100644 --- a/tests/fe/rt_9.cc +++ b/tests/fe/rt_9.cc @@ -38,7 +38,7 @@ #define PRECISION 2 -std::ofstream logfile ("rt_9.output"); +std::ofstream logfile ("rt_9/output"); template void diff --git a/tests/fe/rtdiff.cc b/tests/fe/rtdiff.cc index 85f7315548..6fe1632567 100644 --- a/tests/fe/rtdiff.cc +++ b/tests/fe/rtdiff.cc @@ -139,7 +139,7 @@ test (unsigned int degree) int main() { - std::ofstream logfile ("rtdiff.output"); + std::ofstream logfile ("rtdiff/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/rtn_1.cc b/tests/fe/rtn_1.cc index d6e42e6fb0..19f198bd0d 100644 --- a/tests/fe/rtn_1.cc +++ b/tests/fe/rtn_1.cc @@ -134,7 +134,7 @@ check_face_support_points (const FiniteElement& fe) int main() { - std::ofstream logfile ("rtn_1.output"); + std::ofstream logfile ("rtn_1/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/rtn_2.cc b/tests/fe/rtn_2.cc index c9b7a18152..56b4fb6fe1 100644 --- a/tests/fe/rtn_2.cc +++ b/tests/fe/rtn_2.cc @@ -73,7 +73,7 @@ plot_shape_functions(const unsigned int degree) int main() { - std::ofstream logfile ("rtn_2.output"); + std::ofstream logfile ("rtn_2/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/rtn_3.cc b/tests/fe/rtn_3.cc index 86979fa2e3..74a1bd2f3c 100644 --- a/tests/fe/rtn_3.cc +++ b/tests/fe/rtn_3.cc @@ -46,7 +46,7 @@ void test () int main() { - std::ofstream logfile ("rtn_3.output"); + std::ofstream logfile ("rtn_3/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/shapes.cc b/tests/fe/shapes.cc index 0d19477758..065ec49162 100644 --- a/tests/fe/shapes.cc +++ b/tests/fe/shapes.cc @@ -663,7 +663,7 @@ void plot_FE_System_shape_functions() int main() { - std::ofstream logfile ("shapes.output"); + std::ofstream logfile ("shapes/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/system_1.cc b/tests/fe/system_1.cc index f08196275d..3e706f2d4c 100644 --- a/tests/fe/system_1.cc +++ b/tests/fe/system_1.cc @@ -74,7 +74,7 @@ check(const FiniteElement &fe1, int main() { - std::ofstream logfile ("system_1.output"); + std::ofstream logfile ("system_1/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/fe/traits.cc b/tests/fe/traits.cc index 02c2c50ec0..9a7747b694 100644 --- a/tests/fe/traits.cc +++ b/tests/fe/traits.cc @@ -118,7 +118,7 @@ void check () int main () { - std::ofstream logfile("traits.output"); + std::ofstream logfile("traits/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/fe/transfer.cc b/tests/fe/transfer.cc index bbc07cb7d8..1bc86358be 100644 --- a/tests/fe/transfer.cc +++ b/tests/fe/transfer.cc @@ -76,7 +76,7 @@ print_matrix(Triangulation& tr, int main() { - std::ofstream logfile("transfer.output"); + std::ofstream logfile("transfer/output"); deallog.attach(logfile); logfile.precision(3); deallog.depth_console(0); diff --git a/tests/fe/up_and_down.cc b/tests/fe/up_and_down.cc index 19fe781233..52d72662a3 100644 --- a/tests/fe/up_and_down.cc +++ b/tests/fe/up_and_down.cc @@ -237,7 +237,7 @@ void test () int main() { - std::ofstream logfile ("up_and_down.output"); + std::ofstream logfile ("up_and_down/output"); logfile.precision (PRECISION); logfile.setf(std::ios::fixed); deallog.attach(logfile); diff --git a/tests/lac/block_matrices.cc b/tests/lac/block_matrices.cc index efab88fbc6..2922650c8f 100644 --- a/tests/lac/block_matrices.cc +++ b/tests/lac/block_matrices.cc @@ -26,7 +26,7 @@ void test () { - std::ofstream logfile("block_matrices.output"); + std::ofstream logfile("block_matrices/output"); logfile.setf(std::ios::fixed); logfile.precision(2); deallog.attach(logfile); diff --git a/tests/lac/block_vector.cc b/tests/lac/block_vector.cc index 6078f8666b..a5228ee5fa 100644 --- a/tests/lac/block_vector.cc +++ b/tests/lac/block_vector.cc @@ -141,7 +141,7 @@ void test () int main () { - std::ofstream logfile("block_vector.output"); + std::ofstream logfile("block_vector/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/lac/block_vector_iterator.cc b/tests/lac/block_vector_iterator.cc index 96bca2adb1..89d021e6d4 100644 --- a/tests/lac/block_vector_iterator.cc +++ b/tests/lac/block_vector_iterator.cc @@ -318,7 +318,7 @@ void test () int main () { - std::ofstream logfile("block_vector_iterator.output"); + std::ofstream logfile("block_vector_iterator/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/lac/eigen.cc b/tests/lac/eigen.cc index 6cdcc36e1c..a1217cae11 100644 --- a/tests/lac/eigen.cc +++ b/tests/lac/eigen.cc @@ -28,7 +28,7 @@ int main() { - std::ofstream logfile("eigen.output"); + std::ofstream logfile("eigen/output"); // logfile.setf(std::ios::fixed); logfile.precision(4); deallog.attach(logfile); diff --git a/tests/lac/full_matrix.cc b/tests/lac/full_matrix.cc index 77465ac922..6c22d2faa0 100644 --- a/tests/lac/full_matrix.cc +++ b/tests/lac/full_matrix.cc @@ -42,7 +42,7 @@ void random_matrix(FullMatrix& A) int main () { - std::ofstream logfile("full_matrix.output"); + std::ofstream logfile("full_matrix/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/lac/householder.cc b/tests/lac/householder.cc index d8597e9738..3a1f353f54 100644 --- a/tests/lac/householder.cc +++ b/tests/lac/householder.cc @@ -32,7 +32,7 @@ const double rect[] = int main() { - std::ofstream logfile("householder.output"); + std::ofstream logfile("householder/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/lac/lapack.cc b/tests/lac/lapack.cc index 4634cce241..ea442450a2 100644 --- a/tests/lac/lapack.cc +++ b/tests/lac/lapack.cc @@ -47,7 +47,7 @@ const double rect[] = int main() { - std::ofstream logfile("lapack.output"); + std::ofstream logfile("lapack/output"); logfile.precision(3); deallog.attach(logfile); deallog.depth_console(0); diff --git a/tests/lac/matrices.cc b/tests/lac/matrices.cc index d0b719ab23..ca7bd310a3 100644 --- a/tests/lac/matrices.cc +++ b/tests/lac/matrices.cc @@ -26,7 +26,7 @@ int main() { - std::ofstream logfile("matrices.output"); + std::ofstream logfile("matrices/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/lac/matrix_lib.cc b/tests/lac/matrix_lib.cc index 90d3202787..0e801cf047 100644 --- a/tests/lac/matrix_lib.cc +++ b/tests/lac/matrix_lib.cc @@ -65,7 +65,7 @@ void check_sparse_product(const SparseMatrix& m1, SparseMatrix& int main() { - std::ofstream logfile("matrix_lib.output"); + std::ofstream logfile("matrix_lib/output"); logfile.setf(std::ios::fixed); logfile.precision(0); deallog.attach(logfile); diff --git a/tests/lac/matrix_out.cc b/tests/lac/matrix_out.cc index 8aa9c4fb13..15b994c237 100644 --- a/tests/lac/matrix_out.cc +++ b/tests/lac/matrix_out.cc @@ -21,7 +21,7 @@ int main () { - std::ofstream logfile("matrix_out.output"); + std::ofstream logfile("matrix_out/output"); logfile.setf(std::ios::fixed); logfile.precision(2); deallog.attach(logfile); diff --git a/tests/lac/mg.cc b/tests/lac/mg.cc index 834ffddb2f..2ac05b264d 100644 --- a/tests/lac/mg.cc +++ b/tests/lac/mg.cc @@ -99,7 +99,7 @@ typedef MGCoarseGridLACIteration, int main() { - std::ofstream logfile("mg.output"); + std::ofstream logfile("mg/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/lac/mgbase.cc b/tests/lac/mgbase.cc index ca391ba2cb..af8370f87f 100644 --- a/tests/lac/mgbase.cc +++ b/tests/lac/mgbase.cc @@ -91,7 +91,7 @@ class MGTest int main() { - std::ofstream logfile("mgbase.output"); + std::ofstream logfile("mgbase/output"); deallog.attach(logfile); deallog.depth_console(0); deallog.threshold_double(1.e-10); diff --git a/tests/lac/solver.cc b/tests/lac/solver.cc index 1c1349cc7a..830315978a 100644 --- a/tests/lac/solver.cc +++ b/tests/lac/solver.cc @@ -68,7 +68,7 @@ check_Tsolve(SOLVER& solver, const MATRIX& A, int main() { - std::ofstream logfile("solver.output"); + std::ofstream logfile("solver/output"); // logfile.setf(std::ios::fixed); logfile.precision(4); deallog.attach(logfile); diff --git a/tests/lac/sparse_ilu.cc b/tests/lac/sparse_ilu.cc index 8a0b23744e..30ec91e6df 100644 --- a/tests/lac/sparse_ilu.cc +++ b/tests/lac/sparse_ilu.cc @@ -31,7 +31,7 @@ int main() { - std::ofstream logfile("sparse_ilu.output"); + std::ofstream logfile("sparse_ilu/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/lac/sparse_ilu_t.cc b/tests/lac/sparse_ilu_t.cc index 61ece335b5..07ee57697a 100644 --- a/tests/lac/sparse_ilu_t.cc +++ b/tests/lac/sparse_ilu_t.cc @@ -31,7 +31,7 @@ int main() { - std::ofstream logfile("sparse_ilu_t.output"); + std::ofstream logfile("sparse_ilu_t/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/lac/sparse_matrices.cc b/tests/lac/sparse_matrices.cc index 28c0cd7788..d8464ae82c 100644 --- a/tests/lac/sparse_matrices.cc +++ b/tests/lac/sparse_matrices.cc @@ -252,7 +252,7 @@ void check_conjugate(std::ostream& out) int main() { - std::ofstream logfile("sparse_matrices.output"); + std::ofstream logfile("sparse_matrices/output"); // logfile.setf(std::ios::fixed); logfile.precision(2); deallog.attach(logfile); diff --git a/tests/lac/sparsity_pattern.cc b/tests/lac/sparsity_pattern.cc index 56c5f53d8f..0e491d8011 100644 --- a/tests/lac/sparsity_pattern.cc +++ b/tests/lac/sparsity_pattern.cc @@ -26,7 +26,7 @@ int main () { - std::ofstream logfile("sparsity_pattern.output"); + std::ofstream logfile("sparsity_pattern/output"); logfile.setf(std::ios::fixed); logfile.precision(3); deallog.attach(logfile); diff --git a/tests/lac/tridiagonal_matrix.cc b/tests/lac/tridiagonal_matrix.cc index e0f1861f13..ce168957c9 100644 --- a/tests/lac/tridiagonal_matrix.cc +++ b/tests/lac/tridiagonal_matrix.cc @@ -62,7 +62,7 @@ check_vmult() int main() { - std::ofstream logfile("tridiagonal_matrix.output"); + std::ofstream logfile("tridiagonal_matrix/output"); logfile.setf(std::ios::fixed); logfile.precision(0); deallog.attach(logfile); diff --git a/tests/lac/vector-vector.cc b/tests/lac/vector-vector.cc index 235186d0a2..34fc260e78 100644 --- a/tests/lac/vector-vector.cc +++ b/tests/lac/vector-vector.cc @@ -152,7 +152,7 @@ void check_vectors (Vector &d1, Vector &d2) int main() { - std::ofstream logfile("vector-vector.output"); + std::ofstream logfile("vector-vector/output"); logfile.setf(std::ios::fixed); logfile.precision(2); deallog.attach(logfile);