From: bangerth Date: Wed, 6 Jul 2011 09:43:50 +0000 (+0000) Subject: Temporarily increase timeout after using the libstdc++ debug mode. I don't X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ef6cf34832df6298c09409d6dea74baca311faa;p=dealii-svn.git Temporarily increase timeout after using the libstdc++ debug mode. I don't want to keep this bigger timeout long term but I'd like to see in the testsuite runs which tests are genuine failures and which are just caused by longer runtimes. git-svn-id: https://svn.dealii.org/trunk@23922 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index e03d9fdc26..76e50a9632 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -84,7 +84,7 @@ ifndef OVERRIDE_OUTPUT_RULE %/output : %/exe @echo =====Running======= $< @echo Running > $(dir $@)/status - @$(ULIMIT) -t $(if $(ULIMIT_LIMIT),$(ULIMIT_LIMIT),600) ; \ + @$(ULIMIT) -t $(if $(ULIMIT_LIMIT),$(ULIMIT_LIMIT),900) ; \ export WALLTIME=3600 ; \ ./$< ; \ if test ! $$? = 0 ; then rm $@ ; false ; fi