From 24c29c08471559c0d071f6aa90bf0d02679fce05 Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Wed, 4 Oct 2017 17:17:13 +0200 Subject: [PATCH] Make test order execution deterministic --- client/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index 3930d5d..895f39f 100644 --- a/client/Makefile +++ b/client/Makefile @@ -21,7 +21,7 @@ DATA = $(NEW_EXTENSION_ARTIFACT) \ SOURCES_DATA_DIR = sql/ -REGRESS = $(notdir $(basename $(wildcard test/sql/*test.sql))) +REGRESS = $(notdir $(basename $(sort $(wildcard test/sql/*test.sql)))) TEST_DIR = test/ REGRESS_OPTS = --inputdir='$(TEST_DIR)' --outputdir='$(TEST_DIR)' --user='postgres'