Skip to content

Commit 14ecebe

Browse files
authored
Fix problems with make check (#7433)
This fixes two problems: 1. Allow `make check -j20` to work, by disabling parallelism. This was reported by a user in #7432 2. Actually run all the tests by forwarding to `make check` instead of `check-full`, because confusingly `check-full` does not run all the tests.
1 parent 1886145 commit 14ecebe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ check-style:
6161

6262
# depend on install-all so that downgrade scripts are installed as well
6363
check: all install-all
64-
$(MAKE) -C src/test/regress check-full
64+
# explicetely does not use $(MAKE) to avoid parallelism
65+
make -C src/test/regress check
6566

6667
.PHONY: all check clean install install-downgrades install-all

0 commit comments

Comments
 (0)