From: Wolfgang Bangerth Date: Wed, 11 Apr 2001 13:26:29 +0000 (+0000) Subject: Execute in alphabetical order. X-Git-Tag: v8.0.0~19352 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1145d57ddc4f193f0a4eaf0afdc239cc9faaaf7;p=dealii.git Execute in alphabetical order. git-svn-id: https://svn.dealii.org/trunk@4432 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index c6f3ca2980..738d396bc4 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -87,9 +87,10 @@ flags = $(CXXFLAGS.g) $(CXXFLAGS) -Wno-missing-noreturn ############################################################ # After all these general rules, here is the target to be # executed by make: for each entry in the list $(tests) -# perform a check. +# perform a check. Do it in alphabetical order for better +# overview ############################################################ -run-tests: $(tests:%=%.check) +run-tests: $sort($(tests:%=%.check))