From: kanschat Date: Wed, 2 Aug 2006 19:46:20 +0000 (+0000) Subject: remove algorithm for producing old comarison directories X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ef57bcb98fad44932b6835e21c270b1f5d338e1;p=dealii-svn.git remove algorithm for producing old comarison directories git-svn-id: https://svn.dealii.org/trunk@13579 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index f47058af38..63c7a9f2f9 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -184,18 +184,6 @@ build: $(tests:%=%/exe) refs: $(tests:%=%/ref) -############################################################ -# Link and copy files in ./results/* to generate checked -# checked files for new hardware/compiler platform. -# -# It is expected that the tests are run with ./compare being -# sym-linked to a suitable existing result directory. -# -# The current subdirectory must exist there. -############################################################ -new-platform: output run-tests - csh ../newplatform.csh $(WORKDIR) $(TARGET)+$(GXX-VERSION) - ############################################################ # Cleanup targets ############################################################ diff --git a/tests/newplatform.csh b/tests/newplatform.csh deleted file mode 100644 index 9b5ec809b4..0000000000 --- a/tests/newplatform.csh +++ /dev/null @@ -1,15 +0,0 @@ -touch ../results/$2/$1/.cvsignore -foreach f (*.output) - if (-e $f:r.OK) then - set old=`ls -l ../compare | perl -p -e 's/.*results\///;'` - pushd ../results/$2/$1 - ln -s ../../$old/$1/$f $f - echo $f >> .cvsignore - popd - else - pushd ../results/$2/$1 - cp =1/$f . - cvs add $f - popd - endif -end