From b4ad8c12125a834093c826a776423c1896891061 Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Sun, 10 Nov 2024 14:53:18 +0100 Subject: [PATCH] Makefile: Sort list of tests Make 4.2 (still present in Ubuntu focal) does not sort the list of tests. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bf330a7..ef24ddc 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ EXTENSION = powa EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/") -TESTS = $(wildcard sql/*.sql) +TESTS = $(sort $(wildcard sql/*.sql)) REGRESS = $(patsubst sql/%.sql,%,$(TESTS)) REGRESS_OPTS = --inputdir=test