Skip to content

Commit

Permalink
Fix problems with make check (#7433)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JelteF authored Jan 19, 2024
1 parent 1886145 commit 14ecebe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ check-style:

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

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

0 comments on commit 14ecebe

Please sign in to comment.