Skip to content

Commit c633b08

Browse files
committed
Add makefile target for main tests
1 parent b0751ae commit c633b08

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Makefile.in

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,13 @@ all: $(POSTGRES_LIB)
5454
###############################################################################
5555
# Utility
5656
###############################################################################
57+
check-test: $(POSTGRES_TEST)
58+
$(POSTGRES_TEST)
59+
5760
check-doc: $(POSTGRES_LIB)
5861
$(RUSTDOC) $(LINK_ARGS) -L $(BUILDDIR) --test $(POSTGRES_LIB_FILE)
5962

60-
check: $(POSTGRES_TEST) check-doc
61-
$(POSTGRES_TEST)
63+
check: check-test check-doc
6264

6365
clean:
6466
rm -rf $(BUILDDIR)
@@ -75,4 +77,4 @@ install: $(POSTGRES_LIB)
7577
$(MAKE) -C $(PHF_DIR) install INSTALL_DIR=$(abspath $(INSTALL_DIR))
7678
install $(POSTGRES_LIB) $(INSTALL_DIR)
7779

78-
.PHONY: check-doc check clean clean-deps doc install
80+
.PHONY: check-test check-doc check clean clean-deps doc install

0 commit comments

Comments
 (0)