From 56708d288f375d5cc5d19f882843d72f0f626124 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 11 Apr 2001 13:26:29 +0000 Subject: [PATCH] Execute in alphabetical order. git-svn-id: https://svn.dealii.org/trunk@4432 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)) -- 2.39.5