Skip to content

Commit

Permalink
Makefile: Sort list of tests
Browse files Browse the repository at this point in the history
Make 4.2 (still present in Ubuntu focal) does not sort the list of tests.
  • Loading branch information
df7cb committed Nov 10, 2024
1 parent cd75507 commit b4ad8c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit b4ad8c1

Please sign in to comment.