From: Wolfgang Bangerth Date: Thu, 27 Sep 2012 16:54:06 +0000 (+0000) Subject: Move the 'normalize' and 'status_to_report' scripts to the tests directory. X-Git-Tag: v8.0.0~2015 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64a78dcf9d95056f4b69226e2d685073c78b966b;p=dealii.git Move the 'normalize' and 'status_to_report' scripts to the tests directory. git-svn-id: https://svn.dealii.org/trunk@26794 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 9c48628b70..2fe8bc3c20 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -8,7 +8,9 @@ ###################################################################### -normalize = $D/common/scripts/normalize.pl +# reference the normalization script in the tests directory, which is +# one up from where the variable will be expanded +normalize = ../normalize.pl verbose = off @@ -182,7 +184,7 @@ report: ;; \ esac ; \ echo `date -u +"%Y-%m-%d %H:%M"` \ - "`perl $D/common/scripts/status_to_report.pl $$file`" \ + "`perl ../status_to_report.pl $$file`" \ "`echo $(WORKDIR)/$$test | sed s#/ncpu#---ncpu#g`" ; \ done diff --git a/deal.II/common/scripts/normalize.pl b/tests/normalize.pl similarity index 100% rename from deal.II/common/scripts/normalize.pl rename to tests/normalize.pl diff --git a/deal.II/common/scripts/status_to_report.pl b/tests/status_to_report.pl similarity index 100% rename from deal.II/common/scripts/status_to_report.pl rename to tests/status_to_report.pl